From 595d669b84c1ccc19eb1f20282c57bfe0846fc22 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Fri, 21 Aug 2020 10:40:28 +0800 Subject: [PATCH 1/9] add test cases for artifacts --- .../tests/ArtifactsClientTestBase.cs | 24 + .../tests/LinkedServiceClientLiveTests.cs | 60 + .../tests/NotebookClientLiveTests.cs | 31 + .../tests/PipelineClientLiveTests.cs | 22 + .../TestCreateLinkedService.json | 662 ++++ .../TestCreateLinkedServiceAsync.json | 292 ++ .../TestDeleteLinkedService.json | 366 ++ .../TestDeleteLinkedServiceAsync.json | 884 +++++ .../TestGetLinkedService.json | 280 ++ .../TestGetLinkedServiceAsync.json | 280 ++ .../TestCreateNotebook.json | 670 ++++ .../TestCreateNotebookAsync.json | 485 +++ .../TestDeleteNotebook.json | 662 ++++ .../TestDeleteNotebookAsync.json | 3030 +++++++++++++++++ .../TestGetNotebook.json | 641 +++- .../TestGetNotebookAsync.json | 707 +++- .../TestCreatePipeline.json | 247 ++ .../TestCreatePipelineAsync.json | 691 ++++ .../TestDeletePipeline.json | 329 ++ .../TestDeletePipelineAsync.json | 255 ++ .../TestGetPipeline.json | 544 ++- .../TestGetPipelineAsync.json | 544 ++- .../TestCreateTrigger.json | 694 ++++ .../TestCreateTriggerAsync.json | 472 +++ .../TestDeleteTrigger.json | 329 ++ .../TestDeleteTriggerAsync.json | 477 +++ .../TestGetTrigger.json | 316 ++ .../TestGetTriggerAsync.json | 316 ++ .../tests/TriggerClientLiveTests.cs | 60 + 29 files changed, 14286 insertions(+), 84 deletions(-) create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/LinkedServiceClientLiveTests.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/TriggerClientLiveTests.cs diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs index b0cca067a22c0..efca5a7ef4803 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs @@ -16,6 +16,10 @@ public abstract class ArtifactsClientTestBase : RecordedTestBase + /// The suite of tests for the class. + /// + /// + /// These tests have a dependency on live Azure services and may incur costs for the associated + /// Azure subscription. + /// + public class LinkedServiceClientLiveTests : ArtifactsClientTestBase + { + /// + /// Initializes a new instance of the class. + /// + /// A flag used by the Azure Core Test Framework to differentiate between tests for asynchronous and synchronous methods. + public LinkedServiceClientLiveTests(bool isAsync) : base(isAsync) + { + } + + [Test] + public async Task TestGetLinkedService() + { + await foreach (var expectedLinkedService in LinkedServiceClient.GetLinkedServicesByWorkspaceAsync()) + { + LinkedServiceResource actualLinkedService = await LinkedServiceClient.GetLinkedServiceAsync(expectedLinkedService.Name); + Assert.AreEqual(expectedLinkedService.Name, actualLinkedService.Name); + Assert.AreEqual(expectedLinkedService.Id, actualLinkedService.Id); + } + } + + [Test] + public async Task TestCreateLinkedService() + { + var operation = await LinkedServiceClient.StartCreateOrUpdateLinkedServiceAsync("MyLinkedService", new LinkedServiceResource(new AzureDataLakeStoreLinkedService("adl://test.azuredatalakestore.net/"))); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual("MyLinkedService", operation.Value.Name); + } + + [Test] + public async Task TestDeleteLinkedService() + { + var operation = await LinkedServiceClient.StartDeleteLinkedServiceAsync("MyLinkedService"); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual(200, operation.Value.Status); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/NotebookClientLiveTests.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/NotebookClientLiveTests.cs index b83fbdde09acf..76e6a49992148 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/NotebookClientLiveTests.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/NotebookClientLiveTests.cs @@ -37,5 +37,36 @@ public async Task TestGetNotebook() Assert.AreEqual(expectedNotebook.Properties.BigDataPool?.ReferenceName, actualNotebook.Properties.BigDataPool?.ReferenceName); } } + + [Test] + public async Task TestCreateNotebook() + { + Notebook notebook = new Notebook( + new NotebookMetadata + { + LanguageInfo = new NotebookLanguageInfo(name: "Python") + }, + nbformat: 4, + nbformatMinor: 2, + new List() + ); + var operation = await NotebookClient.StartCreateOrUpdateNotebookAsync("MyNotebook", new NotebookResource(notebook)); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual("MyNotebook", operation.Value.Name); + } + + [Test] + public async Task TestDeleteNotebook() + { + var operation = await NotebookClient.StartDeleteNotebookAsync("MyNotebook"); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual(200, operation.Value.Status); + } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/PipelineClientLiveTests.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/PipelineClientLiveTests.cs index 29585d7b83d27..d65a5346f7196 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/PipelineClientLiveTests.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/PipelineClientLiveTests.cs @@ -34,5 +34,27 @@ public async Task TestGetPipeline() Assert.AreEqual(expectedPipeline.Id, actualPipeline.Id); } } + + [Test] + public async Task TestCreatePipeline() + { + var operation = await PipelineClient.StartCreateOrUpdatePipelineAsync("MyPipeline", new PipelineResource()); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual("MyPipeline", operation.Value.Name); + } + + [Test] + public async Task TestDeletePipeline() + { + var operation = await PipelineClient.StartDeletePipelineAsync("MyPipeline"); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual(200, operation.Value.Status); + } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json new file mode 100644 index 0000000000000..7b8367cc885c3 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json @@ -0,0 +1,662 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "119", + "Content-Type": "application/json", + "traceparent": "00-2e0ad691cfde8a459fa13b90f57d3092-5a1b1d44a27b9c4a-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c26d24e313c2cbe3c7c442461e8e9b17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "393", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c26d24e313c2cbe3c7c442461e8e9b17", + "x-ms-request-id": "043a41ee-7d9b-4ee0-8f75-31041f5f3c8e" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", + "recordId": 202201, + "state": "Updating", + "created": "2020-08-21T02:16:45.33Z", + "changed": "2020-08-21T02:18:28.6066667Z", + "type": "LinkedService", + "name": "MyLinkedService", + "operationId": "b07a0587-4b48-4a86-9d6d-a29d9fe8c73e" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f34059ecb14977491b7cd10d8da02a07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f34059ecb14977491b7cd10d8da02a07", + "x-ms-request-id": "c5a9774a-ff91-427c-8c75-6bbe18012312" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "caadb6eae0e0a638228f2ec2b9cee40b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "caadb6eae0e0a638228f2ec2b9cee40b", + "x-ms-request-id": "0535bec4-2a0d-4583-893b-c7c6d27d1a1d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c55a52e3a84e3ace1d511d766cf54ff2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c55a52e3a84e3ace1d511d766cf54ff2", + "x-ms-request-id": "3d639656-cc5b-4264-984a-ea0c40e37623" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "302a53d5160e0c0e209ad0b98287be4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "302a53d5160e0c0e209ad0b98287be4c", + "x-ms-request-id": "7a0b5966-f5d5-487d-b68b-0fb7171a1654" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3b29c697654641b8e773ac8fc2c1392c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3b29c697654641b8e773ac8fc2c1392c", + "x-ms-request-id": "f5658ea1-d974-4e70-826b-110c172b3f04" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "65ec3c40b4a3cdfd434ea4b4d715b796", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "65ec3c40b4a3cdfd434ea4b4d715b796", + "x-ms-request-id": "0eb27cd0-27ed-4055-af59-fdfce769990e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a6dfd19214cb6fac9ae9489a697f495f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a6dfd19214cb6fac9ae9489a697f495f", + "x-ms-request-id": "3fb78104-2775-44d5-958f-0a1666dafb7d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4679a460589ae3a9c95bf7f7c10469d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4679a460589ae3a9c95bf7f7c10469d2", + "x-ms-request-id": "9a5885da-339a-444d-928e-16f665dbfbef" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f1fc15bb93e22b618f7dcbb96b6263c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f1fc15bb93e22b618f7dcbb96b6263c4", + "x-ms-request-id": "6e1451d4-5321-4c95-a151-121c7c466ba7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "33534405719c39fc27fbdc701db4ad96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "33534405719c39fc27fbdc701db4ad96", + "x-ms-request-id": "8f1ec923-2170-4196-b75b-efd92e791af5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "53df75805782cc7c424db61c8def7866", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "53df75805782cc7c424db61c8def7866", + "x-ms-request-id": "d59f00d0-bf5c-48e5-9e66-e399bb2ce842" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7cf233f735b04a3619c2c9e6b6f00eda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7cf233f735b04a3619c2c9e6b6f00eda", + "x-ms-request-id": "76948d33-2a02-4683-b177-e772f7941d2d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", + "x-ms-request-id": "f3b58459-51d9-465b-8e59-0f1907a9b282" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ea78768331c24ae53f943ac08d961552", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ea78768331c24ae53f943ac08d961552", + "x-ms-request-id": "7c90495d-5386-44a2-9d9c-b3d5da4e2caf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "584ddb3f82b6e8e3f145b42944e88f39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "584ddb3f82b6e8e3f145b42944e88f39", + "x-ms-request-id": "5fa288ca-ded4-42b8-9c5a-b4fb7faf4ae5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4063911624789e184feeb6eed5811f31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "420", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:19:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4063911624789e184feeb6eed5811f31", + "x-ms-correlation-request-id": "dda3835b-9526-4904-9c88-4b084aeb5b38", + "x-ms-request-id": "c77509f8-adc7-4307-9491-453bc5e254e4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", + "name": "MyLinkedService", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + }, + "etag": "0900d20a-0000-0100-0000-5f3f2f480000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "431974343" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json new file mode 100644 index 0000000000000..64f8f5059ef3e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json @@ -0,0 +1,292 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "119", + "Content-Type": "application/json", + "traceparent": "00-9fb728d5a684894da65bb30a41847522-165a3842300a854c-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "49efb50fe48eaecfbfdfddeeff0b94da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "388", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "49efb50fe48eaecfbfdfddeeff0b94da", + "x-ms-request-id": "6a6c27ad-411d-4c04-a6ca-266e0aa4e563" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", + "recordId": 202207, + "state": "Creating", + "created": "2020-08-21T02:20:33.29Z", + "changed": "2020-08-21T02:20:33.29Z", + "type": "LinkedService", + "name": "MyLinkedService", + "operationId": "cd59f92e-b2aa-4707-9218-6bdb066586ac" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1768d9107ee1c1f5c5c65fb6e0f7a89d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1768d9107ee1c1f5c5c65fb6e0f7a89d", + "x-ms-request-id": "fa2deb1f-b344-4d99-9ba5-1c8d75347f6f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "320493ada358a7a902d799a6ffc3729d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "320493ada358a7a902d799a6ffc3729d", + "x-ms-request-id": "a4258f0d-8414-40cc-baad-aa4517cd69fd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "26de679c7da36cf88df32f0e08fd37b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "26de679c7da36cf88df32f0e08fd37b8", + "x-ms-request-id": "cad21cc8-1210-470e-8f65-0e9d183de19a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a85e473f0f1d6d1c2fc1150ae44ec101", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a85e473f0f1d6d1c2fc1150ae44ec101", + "x-ms-request-id": "d2d10f1e-406a-42d9-89d3-7e0ab688de0a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7819c154811930f99b97a564749b9f05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7819c154811930f99b97a564749b9f05", + "x-ms-request-id": "ce8242d3-bc2c-4b90-81fe-b48ffff61642" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b866e1a0ca648d804a71f7e268ee873e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "420", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "b866e1a0ca648d804a71f7e268ee873e", + "x-ms-correlation-request-id": "3a98e559-3e42-4cfb-b870-fb39ae442c63", + "x-ms-request-id": "fd5a6ba4-8bfb-4e59-90a1-23ce815bfb25", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", + "name": "MyLinkedService", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + }, + "etag": "0900e90a-0000-0100-0000-5f3f2f720000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "942458813" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json new file mode 100644 index 0000000000000..8ed8fa58bb639 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json @@ -0,0 +1,366 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e32ebc805863f947a50d8a18fde0cc5e-254a47c61c631c41-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b29a26d5114ab6a7c035149b4a1dad89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "375", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b29a26d5114ab6a7c035149b4a1dad89", + "x-ms-request-id": "ea0741fa-2780-4f5e-8c01-233d073c5c1d" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "LinkedService", + "name": "MyLinkedService", + "operationId": "281fe581-3689-4ea3-8b59-24f02299ee61" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ecd5272aae8fc00eca190888f47c3df1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ecd5272aae8fc00eca190888f47c3df1", + "x-ms-request-id": "baa6b142-0a13-40e1-b36a-9b0d3efc0c87" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6554ea43b687de6ec28fd5010e4a1a50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6554ea43b687de6ec28fd5010e4a1a50", + "x-ms-request-id": "c378b452-d7bd-495b-9df8-7e83453b1366" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2271470ac04808f9e7d82390eedb1660", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2271470ac04808f9e7d82390eedb1660", + "x-ms-request-id": "416c98db-107b-4680-858a-c2762b54f89e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b119110bc51b7345b9f62900d90db180", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b119110bc51b7345b9f62900d90db180", + "x-ms-request-id": "d2710304-53b0-42a2-997e-5b26d52cae46" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ac7db7ff1a0a82a9f04c7daf93deefe7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ac7db7ff1a0a82a9f04c7daf93deefe7", + "x-ms-request-id": "5768e375-2ca3-4d96-9537-7235559b47c9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fdf674796930453502fe695197f92fda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fdf674796930453502fe695197f92fda", + "x-ms-request-id": "f79d5e42-2d00-4e98-a799-19e9f296f837" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3691a226695ef0556797c0cf4896dfdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3691a226695ef0556797c0cf4896dfdb", + "x-ms-request-id": "c89db770-ca8b-411c-9e70-5d7d0304bf6d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "65864206b416964f8237aa0cb158ebf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "65864206b416964f8237aa0cb158ebf7", + "x-ms-request-id": "cbe0edfa-45fd-499d-bfe4-5790c67edcbf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 02:20:23 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", + "x-ms-request-id": "be7f259a-a869-4f41-af2f-1a4ed83b5232" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1988979361" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json new file mode 100644 index 0000000000000..c12404f3a33e0 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json @@ -0,0 +1,884 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4c423938030c154c900e979a218c7378-0ec82da4e965ab43-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e3ef9fb39e592ce2f53e789b7d8e07cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "375", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e3ef9fb39e592ce2f53e789b7d8e07cf", + "x-ms-request-id": "9b1f5eb0-726d-43f1-8450-26713dd19b0e" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "LinkedService", + "name": "MyLinkedService", + "operationId": "d4209962-6afb-4238-b8f9-67da8fbfdb8d" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "788013e52eb87bac786784b7a8dc7455", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "788013e52eb87bac786784b7a8dc7455", + "x-ms-request-id": "be30be6d-ccdd-4e41-bb36-f75d878cd021" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "685384454affd31878eb0675dbf4fb4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "685384454affd31878eb0675dbf4fb4e", + "x-ms-request-id": "7d1c80c0-2212-4c9c-ad5b-efefc87c7931" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6ab639628f0de61751b60dde5a6f5c00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6ab639628f0de61751b60dde5a6f5c00", + "x-ms-request-id": "d2ed5f8c-b0ab-4816-808a-9b956e6593da" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "aba96c6f73539a3ffaac00cc27379f83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "aba96c6f73539a3ffaac00cc27379f83", + "x-ms-request-id": "63e35564-15c4-43fb-be4c-a1d8be654844" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6e55366c0a26b6476d6c17483c3a7808", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6e55366c0a26b6476d6c17483c3a7808", + "x-ms-request-id": "df421f3c-9b62-48fd-9c14-33c07e9abb94" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6e05068f504beffaf91b70618f4bbf19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6e05068f504beffaf91b70618f4bbf19", + "x-ms-request-id": "910276b2-a9cc-4436-98c6-be7b574b6416" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "24728916ed1964d925f23ee75bf75ebf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "24728916ed1964d925f23ee75bf75ebf", + "x-ms-request-id": "28971f55-5d48-467f-8538-33bc57777e0a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "213df73330311b383b66750b99e52722", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "213df73330311b383b66750b99e52722", + "x-ms-request-id": "d5793884-cb60-487e-aa1f-e5cd9f28687c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b331fdad54c7a1ef2ca1495811139301", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b331fdad54c7a1ef2ca1495811139301", + "x-ms-request-id": "b7f8e029-c849-40b7-b7ad-b4298136ed04" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "972eb0bd9e0de6e75056e8b277cecb3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "972eb0bd9e0de6e75056e8b277cecb3f", + "x-ms-request-id": "3c5dc993-fd51-4183-acc2-81430b0786da" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5e391ccbaac5dff8079bf490e7e00928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5e391ccbaac5dff8079bf490e7e00928", + "x-ms-request-id": "b3c8b2b9-ad7f-4fb9-814e-def09f4b9f71" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e94e73d38fb70f14154b62706b3c2a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e94e73d38fb70f14154b62706b3c2a5d", + "x-ms-request-id": "1577f1cf-e1fb-4f9e-8462-28500fe01ea4" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f58c09d534d9123cb84f9071a957fe70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f58c09d534d9123cb84f9071a957fe70", + "x-ms-request-id": "e55af114-8a90-48ad-987b-1711eb9e3c00" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "03dfbf4ce1803c87072a4879488773ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "03dfbf4ce1803c87072a4879488773ca", + "x-ms-request-id": "2426a4c1-c92d-4d24-9c73-710318a4ed5b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ddba977114549e4f373b3168ffa365be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ddba977114549e4f373b3168ffa365be", + "x-ms-request-id": "cc397e37-7694-4b76-b1cc-330990fe2255" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ab23f24c275df4dd814fedaeecc2ca30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ab23f24c275df4dd814fedaeecc2ca30", + "x-ms-request-id": "d3080009-b7c2-4b6f-b233-79f6d80eac94" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1200c5db219c381b6f40cb44b01f3d64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1200c5db219c381b6f40cb44b01f3d64", + "x-ms-request-id": "989c2ca6-7602-42e5-9010-a955cd938752" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "552d89c5c8634a6db9c65b0427a1b174", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "552d89c5c8634a6db9c65b0427a1b174", + "x-ms-request-id": "37a6edef-fcb5-4cac-9fc2-273ede935d53" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "398d007153a22b22d6eb3b1d5b984362", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "398d007153a22b22d6eb3b1d5b984362", + "x-ms-request-id": "ccf7e12e-e754-4876-9b08-1b484dfb6983" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "63e98812749513cc58b658d5c61711ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "63e98812749513cc58b658d5c61711ce", + "x-ms-request-id": "a401918a-cdda-4071-b40c-511dfd51002e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b0d3578e039271c266027e788c4fef21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b0d3578e039271c266027e788c4fef21", + "x-ms-request-id": "722fca7a-c56b-458e-a800-2b3cad6761fd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9ef1f8834eb8fcdf337ae1ecfb4c64bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:21:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9ef1f8834eb8fcdf337ae1ecfb4c64bf", + "x-ms-request-id": "f3152024-9f87-4f3d-b1f7-17290d47cbcb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "038f6dd992c40ed0c677fc93f6538608", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 02:21:04 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "038f6dd992c40ed0c677fc93f6538608", + "x-ms-request-id": "d80eef60-3ef0-49f9-a30a-945908b300ab" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1809874018" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json new file mode 100644 index 0000000000000..1aacbc3f942e7 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json @@ -0,0 +1,280 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4ca5e4e26d4da61b2ae657a3a1808a3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "2037", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4ca5e4e26d4da61b2ae657a3a1808a3c", + "x-ms-request-id": "87c0eb44-7a70-4297-9787-b46baa624b16" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500110d-0000-0100-0000-5df21ebd0000", + "properties": { + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500400d-0000-0100-0000-5df21ec50000", + "properties": { + "type": "AzureSqlDW", + "typeProperties": { + "connectionString": "Data Source=tcp:testsynapseworkspace.database.windows.net,1433;Initial Catalog=@{linkedService().DBName}" + }, + "parameters": { + "DBName": { + "type": "String" + } + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", + "name": "MyLinkedService1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "41001c1c-0000-0100-0000-5f1fe64d0000", + "properties": { + "type": "CosmosDbMongoDbApi", + "typeProperties": { + "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", + "database": "yuwwang-mongo-db1" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", + "name": "MyLinkedService", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0900d20a-0000-0100-0000-5f3f2f480000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d9f6b2a7dd7a8e4abee98bf919537661-c2342280cda6534b-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cc9a74f165c22a2e2ca0bca1b7aac1a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "467", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "cc9a74f165c22a2e2ca0bca1b7aac1a7", + "x-ms-correlation-request-id": "5ce4e0fc-172c-4222-b9db-cb43ad2d993d", + "x-ms-request-id": "dc763a9e-99ea-46bb-9bc7-3499744a8a16", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net" + } + }, + "etag": "4500110d-0000-0100-0000-5df21ebd0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-ac4023d4b176574e81c51435ae247868-57f4533cbb0bb04e-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "bb1c8e63396c81404e8e0f6fe74fd80f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "586", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "bb1c8e63396c81404e8e0f6fe74fd80f", + "x-ms-correlation-request-id": "c4be2651-2887-4240-b7a9-292b816bbc6d", + "x-ms-request-id": "955c07ef-3fc9-487a-a77d-ad2610a8d8b5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureSqlDW", + "typeProperties": { + "connectionString": "Data Source=tcp:testsynapseworkspace.database.windows.net,1433;Initial Catalog=@{linkedService().DBName}" + }, + "parameters": { + "DBName": { + "type": "String" + } + } + }, + "etag": "4500400d-0000-0100-0000-5df21ec50000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8236bb0ee70c6d4b893caa6acba4193e-6d059b56a952f74e-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "549", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", + "x-ms-correlation-request-id": "595420d1-2c4b-4407-a0b4-7f43277cb6cd", + "x-ms-request-id": "4384c7b2-66ff-4ae3-8045-f17c90718b63", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", + "name": "MyLinkedService1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "CosmosDbMongoDbApi", + "typeProperties": { + "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", + "database": "yuwwang-mongo-db1" + } + }, + "etag": "41001c1c-0000-0100-0000-5f1fe64d0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6ad30b2e15d4aa458915f9092f73d6eb-3f68fd3b0359974d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "123faf24cf63b7d033197d3456be43dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "420", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "123faf24cf63b7d033197d3456be43dc", + "x-ms-correlation-request-id": "025f96ed-e025-4bc1-8499-bfa83bb24b2d", + "x-ms-request-id": "b4ea7db9-08fe-426e-adb3-c7fc6e22c786", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", + "name": "MyLinkedService", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + }, + "etag": "0900d20a-0000-0100-0000-5f3f2f480000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "709390330" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json new file mode 100644 index 0000000000000..a6a94b4d49b55 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json @@ -0,0 +1,280 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4f2ace59b3b83ebc6d97535970e1f994", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "2037", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:49 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4f2ace59b3b83ebc6d97535970e1f994", + "x-ms-request-id": "0446ce74-3827-4f1a-87e4-3738cddf3cd8" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500110d-0000-0100-0000-5df21ebd0000", + "properties": { + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500400d-0000-0100-0000-5df21ec50000", + "properties": { + "type": "AzureSqlDW", + "typeProperties": { + "connectionString": "Data Source=tcp:testsynapseworkspace.database.windows.net,1433;Initial Catalog=@{linkedService().DBName}" + }, + "parameters": { + "DBName": { + "type": "String" + } + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", + "name": "MyLinkedService1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "41001c1c-0000-0100-0000-5f1fe64d0000", + "properties": { + "type": "CosmosDbMongoDbApi", + "typeProperties": { + "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", + "database": "yuwwang-mongo-db1" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", + "name": "MyLinkedService", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0900e90a-0000-0100-0000-5f3f2f720000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-cd6d3d880714bc40809d770342a86c48-39ec309d85039645-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "684e9f5e21cfb0cbe7d96251e503007e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "467", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "684e9f5e21cfb0cbe7d96251e503007e", + "x-ms-correlation-request-id": "0a2e7f18-6350-4aa2-b17b-30228dc6e7c5", + "x-ms-request-id": "5991f48a-ba57-4698-acc1-90b9912a2f94", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net" + } + }, + "etag": "4500110d-0000-0100-0000-5df21ebd0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5f9bac324862494c8914dae76455425c-3d7c17ac1b14dd4d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "453617658095eadc0682c623600058a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "586", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "453617658095eadc0682c623600058a9", + "x-ms-correlation-request-id": "0fd72aee-cc7d-4c04-83b0-b63f0bd7dd26", + "x-ms-request-id": "993811df-ec26-41c7-9424-a40a8cd3442c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureSqlDW", + "typeProperties": { + "connectionString": "Data Source=tcp:testsynapseworkspace.database.windows.net,1433;Initial Catalog=@{linkedService().DBName}" + }, + "parameters": { + "DBName": { + "type": "String" + } + } + }, + "etag": "4500400d-0000-0100-0000-5df21ec50000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-bb36c1afd67d6641b45cb23061a90eee-db63ad72e8e6ce4b-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "549", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", + "x-ms-correlation-request-id": "6c3053d3-9114-42f2-96ea-6f31b7e1fb6b", + "x-ms-request-id": "10a80508-2f1b-4cc4-ad0d-6b62647a2e90", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", + "name": "MyLinkedService1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "CosmosDbMongoDbApi", + "typeProperties": { + "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", + "database": "yuwwang-mongo-db1" + } + }, + "etag": "41001c1c-0000-0100-0000-5f1fe64d0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-26338e9927c56e4c92d9546bb7d755c6-4f5c623afdfe5e40-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "59f4d597b4abddfec264624c5ba750e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "420", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:20:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "59f4d597b4abddfec264624c5ba750e7", + "x-ms-correlation-request-id": "3c30c26c-14fb-4154-943f-27911bd734c8", + "x-ms-request-id": "ea171266-093c-4d34-a214-a194e3aa75a4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", + "name": "MyLinkedService", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + }, + "etag": "0900e90a-0000-0100-0000-5f3f2f720000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1278627404" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json new file mode 100644 index 0000000000000..3feff417617c0 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json @@ -0,0 +1,670 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "106", + "Content-Type": "application/json", + "traceparent": "00-2d5305689e599d4e9071a15005a5a410-cfc3175939318249-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2c2c75c82902031b846bfaaf38527c77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "378", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2c2c75c82902031b846bfaaf38527c77", + "x-ms-request-id": "0e4309e4-b64b-4930-9c25-989a6b5e1433" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "recordId": 202077, + "state": "Creating", + "created": "2020-08-21T01:45:59.1966667Z", + "changed": "2020-08-21T01:45:59.1966667Z", + "type": "Notebook", + "name": "MyNotebook", + "operationId": "83abbe69-2d38-4e96-9c8b-b03d61ef606e" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "35b2b3f75d713635ca0d6c16507a164c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "35b2b3f75d713635ca0d6c16507a164c", + "x-ms-request-id": "9c9a8f7c-fa92-4e22-97c9-0107ca504204" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f56d48f8ceba4bb7714bda5428855083", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f56d48f8ceba4bb7714bda5428855083", + "x-ms-request-id": "5296994a-32bd-4fa0-9677-c1fa9e5c4fbd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "85b77a2146a0ea0641fbe3a111ee8fd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "85b77a2146a0ea0641fbe3a111ee8fd7", + "x-ms-request-id": "c89983ae-7fee-4f74-96c6-5d9e74250b4d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6a9cb498549229c5fb66c42583e00e44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6a9cb498549229c5fb66c42583e00e44", + "x-ms-request-id": "e98a2e18-dfb9-45ec-a243-52f05b33fb6e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d6f5e8bd91c2b1ac4183b4bfea153983", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d6f5e8bd91c2b1ac4183b4bfea153983", + "x-ms-request-id": "927bd7bc-8f7d-4515-9632-8ea6596c927f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "73bc02bce5e8ccf1b48e893981e16660", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "73bc02bce5e8ccf1b48e893981e16660", + "x-ms-request-id": "8e394f46-d0da-43a0-aaa5-a4d411ecbc88" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "29e49fedb9f8061408eb290fa0063ee5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:45:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "29e49fedb9f8061408eb290fa0063ee5", + "x-ms-request-id": "97d7176c-30b6-4f68-9d45-253cc15239cd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8069412d9a24d75cf729213407732f60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8069412d9a24d75cf729213407732f60", + "x-ms-request-id": "5549dab1-62b0-439b-8523-13012dd973c9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4bd2531c1031038aedb56bfdbce12bae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4bd2531c1031038aedb56bfdbce12bae", + "x-ms-request-id": "d8db7a4d-496a-4a75-99d8-e634f18d24b0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "400ba350e678523c420d32cf97e0ff95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "400ba350e678523c420d32cf97e0ff95", + "x-ms-request-id": "b0db063e-527d-4555-9476-b4668b0e4d8d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4df3c8bbf2341db4b765936f2f5e1a15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4df3c8bbf2341db4b765936f2f5e1a15", + "x-ms-request-id": "e391fc17-69c2-433f-9d50-34477fd2d340" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "63e472fdef6736e7177f0824deba6b0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "63e472fdef6736e7177f0824deba6b0d", + "x-ms-request-id": "b45f107b-8922-4895-8e68-849d8ebd2c75" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f342d6b6deee5e7aefee891252cc23e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f342d6b6deee5e7aefee891252cc23e4", + "x-ms-request-id": "ea3b0fde-981e-4a9b-811d-78bdb8c42b1c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "24d21cf29bfbcc2de0bc35b4e9903efc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "24d21cf29bfbcc2de0bc35b4e9903efc", + "x-ms-request-id": "b13b87e6-964c-4e6f-a8fb-3e8e7136eee8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "58b986fa261c1e27f786747865d5e34a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "58b986fa261c1e27f786747865d5e34a", + "x-ms-request-id": "d11420f3-8ab6-4d8f-b3cd-f4bb2f67ee1d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "387", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", + "x-ms-correlation-request-id": "97ab0549-6e22-420f-b54e-7dec3b4928d5", + "x-ms-request-id": "f2ac8948-f083-411d-830d-0da2a1229a21", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "name": "MyNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + }, + "etag": "0900af04-0000-0100-0000-5f3f275a0000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "825585454" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json new file mode 100644 index 0000000000000..b3582e326fbd9 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json @@ -0,0 +1,485 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "106", + "Content-Type": "application/json", + "traceparent": "00-963ea412ce5a284d825e44a71dd2b45c-f02d420f58294141-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d397c27d0e008c59ac54b85213fc9d18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "368", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d397c27d0e008c59ac54b85213fc9d18", + "x-ms-request-id": "8b40aa30-52e3-4b52-a717-39ec02f2bb19" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "recordId": 202079, + "state": "Creating", + "created": "2020-08-21T01:46:39.99Z", + "changed": "2020-08-21T01:46:39.99Z", + "type": "Notebook", + "name": "MyNotebook", + "operationId": "27fe76b0-2c4d-414a-9b33-564e35c7bc28" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "96d9b91820b763c36e26acff578054e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "96d9b91820b763c36e26acff578054e5", + "x-ms-request-id": "3b19a927-f593-481e-bdd1-bce56807b880" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6870cea03a67392e3499352011f9b798", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6870cea03a67392e3499352011f9b798", + "x-ms-request-id": "89494c7d-72e2-42fa-8ab3-8f95d53aecfb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5a39898e0722446052d0a701988ea51d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5a39898e0722446052d0a701988ea51d", + "x-ms-request-id": "a8749830-003d-4039-9052-b76814e0afeb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "06bf178b5da4ddc78aa0611deba25275", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "06bf178b5da4ddc78aa0611deba25275", + "x-ms-request-id": "c33306bd-e871-48a6-b213-5842b0f905d2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cd71136ffa4799c36d2b1597922da1a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cd71136ffa4799c36d2b1597922da1a6", + "x-ms-request-id": "007514cc-96fb-416e-84e3-0b63cdea2810" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fa9517f4b03931f4c25bcf82a54259b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fa9517f4b03931f4c25bcf82a54259b0", + "x-ms-request-id": "05a9b82b-6268-4200-b785-479c089348bf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8492327ed71d90d65325997947304a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8492327ed71d90d65325997947304a5d", + "x-ms-request-id": "12cb50e2-9f59-46e7-89ae-13caa9bf780b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", + "x-ms-request-id": "e13eb57a-86cc-45ba-a504-39da54246c33" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "601864d11c9b1c894105a614177bea91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "601864d11c9b1c894105a614177bea91", + "x-ms-request-id": "f92c85fe-06db-4ba7-b6c4-0376b5d36f01" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ea837110851826a3f6d364ddccea6512", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ea837110851826a3f6d364ddccea6512", + "x-ms-request-id": "343e8580-e38a-4da4-a3e2-87d3149bdf6b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e2a76d31ea17e2c2320c9207b127a6a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "387", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "e2a76d31ea17e2c2320c9207b127a6a4", + "x-ms-correlation-request-id": "71408c19-a039-470b-bd90-b1db5e705941", + "x-ms-request-id": "64668c81-fe37-447d-865c-bf32d24de298", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "name": "MyNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + }, + "etag": "0900da04-0000-0100-0000-5f3f27820000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1648047094" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json new file mode 100644 index 0000000000000..bbfced73aba9b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json @@ -0,0 +1,662 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-af6ab9fd33ac4847b7bd5473b33f7185-6a82559a3c2f8b4a-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "da3057907c3235de46135faf9f4b7713", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "da3057907c3235de46135faf9f4b7713", + "x-ms-request-id": "4d58cdd2-a98b-419a-a478-9439773c61f6" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Notebook", + "name": "MyNotebook", + "operationId": "27b2330c-774a-416e-871b-d73c4be2b676" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5394a0bac0c5b6b18288a94b04598030", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5394a0bac0c5b6b18288a94b04598030", + "x-ms-request-id": "8d021799-26b5-44d9-82c0-a3759eb7a7b6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "84a1f57cdb37372be3ff5437e9c4e556", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "84a1f57cdb37372be3ff5437e9c4e556", + "x-ms-request-id": "cac0d4e4-ab61-490f-a5c5-054fc1405c60" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fef4fb4c24b6ed4db49bdbd1af292c2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fef4fb4c24b6ed4db49bdbd1af292c2c", + "x-ms-request-id": "f09059fe-2bab-4300-bd2f-a903743c9c93" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5a9c617a434edf2d755c70c66b7accbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5a9c617a434edf2d755c70c66b7accbd", + "x-ms-request-id": "7a920ae1-fecb-4a4e-ab29-0c0d0b4759a0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "08fe52a381655879a7b3cf9b005a88b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "08fe52a381655879a7b3cf9b005a88b9", + "x-ms-request-id": "fda3b1be-beb1-4854-8ef2-77e19f18a80e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "88bc28d28b280808cd15895ab387823a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "88bc28d28b280808cd15895ab387823a", + "x-ms-request-id": "119e5127-0d4f-4c51-a224-80945d4351be" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5d2e1dcf232af9c6e743b29a7492df1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5d2e1dcf232af9c6e743b29a7492df1a", + "x-ms-request-id": "4c0cdf68-5c5e-4d7a-8e64-2cc2540d93a6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "42f3b6d444bd179549f63a50f71fa520", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "42f3b6d444bd179549f63a50f71fa520", + "x-ms-request-id": "9ef1da0a-9347-4e82-aeb8-804cf74fc602" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e2cb94312a2cae8f61c3a0e4d96d943b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e2cb94312a2cae8f61c3a0e4d96d943b", + "x-ms-request-id": "eb5ff2c0-b8ab-47a5-879a-dc19e7ad93c7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fc856e353f938b7d88161334e87601c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fc856e353f938b7d88161334e87601c8", + "x-ms-request-id": "9d82a5fb-98c3-4f96-bb88-9841b9dfb934" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "df68919efdc6a9ee2744e0faa4b13edc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "df68919efdc6a9ee2744e0faa4b13edc", + "x-ms-request-id": "3b241d57-6faf-404a-aa48-2dcd50027235" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "881afe61a899f28c16405916165ac5eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "881afe61a899f28c16405916165ac5eb", + "x-ms-request-id": "1c7ee091-4171-4d9f-ab11-87ab3329b5d0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4745d7c1b405387580dcd54f5e83e7d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4745d7c1b405387580dcd54f5e83e7d6", + "x-ms-request-id": "a90057d5-87c1-4c84-a223-6ee2c144d542" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e9d337d7795cf62e0475c886a3d893cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e9d337d7795cf62e0475c886a3d893cd", + "x-ms-request-id": "2c8529de-ecdd-4f2f-9eec-d95d1f3af306" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cc38f57ef66bacd689e108bdd33d9493", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cc38f57ef66bacd689e108bdd33d9493", + "x-ms-request-id": "23b429f3-02de-48bf-bb26-d54e476c118e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "de3e8358dc87488ea94f428febef95a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "de3e8358dc87488ea94f428febef95a7", + "x-ms-request-id": "cf43f333-9f79-463c-9081-3f7e03e2f1c1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 01:46:15 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", + "x-ms-request-id": "9346cbd4-4ad1-4c5e-a48a-989d7452c33f" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "57464465" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json new file mode 100644 index 0000000000000..bbcc7509ba8a7 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json @@ -0,0 +1,3030 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-92aeb6731cf64b4094ec3e0cf41033d3-196995955d111a4b-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "405f55d1db7830638248974ea08dc998", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "405f55d1db7830638248974ea08dc998", + "x-ms-request-id": "ba6efab6-08fa-4895-a2c1-559e5b944813" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Notebook", + "name": "MyNotebook", + "operationId": "e3981896-c6b4-4bc9-9dd4-76ef047b1113" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0f4a7c5793c6eafd5a7f7433d49eff70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0f4a7c5793c6eafd5a7f7433d49eff70", + "x-ms-request-id": "694703b7-d804-457d-820e-c236b6d84082" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0940fe5ee806ab42136645f5b5bb782c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0940fe5ee806ab42136645f5b5bb782c", + "x-ms-request-id": "d7b3b757-c13f-4076-ae9f-0d854c7b8717" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "24f7b130ba4221d10b8af031b10e235c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "24f7b130ba4221d10b8af031b10e235c", + "x-ms-request-id": "dcb29e46-7eb1-46a3-8541-821a2c8c8b9d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", + "x-ms-request-id": "60b8c71b-54c3-4465-a83d-8b345551b72d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "23024707daa7a42d2c1ffe7cf810fa04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "23024707daa7a42d2c1ffe7cf810fa04", + "x-ms-request-id": "1831f136-bf81-4648-80e9-4ceb8d2bb95a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ff72e942be712217d188eaa4be71d303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ff72e942be712217d188eaa4be71d303", + "x-ms-request-id": "b953fa14-7efc-4b84-b6d8-c3060680f559" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6a2a5155000ba8b488a58df50f637629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6a2a5155000ba8b488a58df50f637629", + "x-ms-request-id": "71170375-fb1c-43e4-8f33-673bd55b138f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "641df7a43595482d2fe0511ff089e5ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "641df7a43595482d2fe0511ff089e5ba", + "x-ms-request-id": "efb9d3db-3c96-4a3e-8f88-4f8dabeecb23" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a626fa4c90e542f934c977cc3022126e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a626fa4c90e542f934c977cc3022126e", + "x-ms-request-id": "e16caf1d-4f29-49b3-8805-3667b1cd36b0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c7ffc0116e54206e23e23a2baf95b8ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c7ffc0116e54206e23e23a2baf95b8ff", + "x-ms-request-id": "3dbb4ff3-5591-4d93-9b78-846f81b6f496" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "14a9d3bfd03d1343feda30cbbe61170c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "14a9d3bfd03d1343feda30cbbe61170c", + "x-ms-request-id": "c2497ef6-3809-441c-9d74-3e3df501ee95" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "300de2cd1d89dd658c06830355cd929f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "300de2cd1d89dd658c06830355cd929f", + "x-ms-request-id": "fd56d702-2842-40f4-84e7-b9f8af5c9ed8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5d0c7811fd7941317cebc9793ea262c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5d0c7811fd7941317cebc9793ea262c2", + "x-ms-request-id": "ed3f6d95-dada-45c5-a8a9-dc7c4cb7b4ce" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cc5d2dca8887a2756dcb88374d3fbe30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cc5d2dca8887a2756dcb88374d3fbe30", + "x-ms-request-id": "d0b6ea2d-c8aa-4a88-8e59-36df744c421c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "46ba9048ba54cf93b1ccb39d54eb9fea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "46ba9048ba54cf93b1ccb39d54eb9fea", + "x-ms-request-id": "03f8e844-dc3a-40e6-a1f6-262be5c152e7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2839c0a3c66f8917026aefad75faf43d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2839c0a3c66f8917026aefad75faf43d", + "x-ms-request-id": "afad7e99-86b9-4d26-9526-7145a587b8a9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ad31992d1ce80f6e998e1bbbd4d74d82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ad31992d1ce80f6e998e1bbbd4d74d82", + "x-ms-request-id": "924effdb-4123-4100-b7d6-be6dfa6f69ce" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8c939d2b950582c0793043eacbe659b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8c939d2b950582c0793043eacbe659b6", + "x-ms-request-id": "05471f16-95aa-4f55-aaac-c08f4d0ee019" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "bb6f75d8f2b98702522a8ee1aa5cb42a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "bb6f75d8f2b98702522a8ee1aa5cb42a", + "x-ms-request-id": "824593a5-f905-41da-8e3a-a7e960f828b7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d8826d1c67679737d8af33b7d88344b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d8826d1c67679737d8af33b7d88344b3", + "x-ms-request-id": "c2380ecb-076a-463b-bff8-4edc5d95e6c4" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5fe36434926738c89b0c3adb07ded71d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5fe36434926738c89b0c3adb07ded71d", + "x-ms-request-id": "c327cc61-46d0-4923-b615-1c20283df351" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5dcd187b8163704f3dd7e209bf4aaece", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5dcd187b8163704f3dd7e209bf4aaece", + "x-ms-request-id": "edf33eea-9c06-4424-af8f-7ce49d3298da" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "46addae6557989c3a4493c5b2d5c90f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "46addae6557989c3a4493c5b2d5c90f9", + "x-ms-request-id": "542276d0-581b-42fd-ad93-72f86a3c3964" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c03b16d8e6b6b2501472218fb0be7950", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c03b16d8e6b6b2501472218fb0be7950", + "x-ms-request-id": "7bc85a02-d741-4a05-8c06-33e7baad704b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2cf56c5d913126a35544b91945f443e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2cf56c5d913126a35544b91945f443e1", + "x-ms-request-id": "c62d5e9f-5bbc-4f19-92a4-ae95a65338e8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a831e847ee0eff188afa31063433d9e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a831e847ee0eff188afa31063433d9e5", + "x-ms-request-id": "6bd1069c-1fbb-4570-867b-8f133a2bf7f6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c0fdebd0636746c772156a722d366d20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c0fdebd0636746c772156a722d366d20", + "x-ms-request-id": "44df14fe-8c4d-44ec-b333-6941ddc4e650" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c7483f2fd08d6f4154f5a237609df222", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c7483f2fd08d6f4154f5a237609df222", + "x-ms-request-id": "4e4ba76c-4aab-478f-9aa3-a91ffcd55ca3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5949d36a82f7e37a20ea35f983a6d253", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5949d36a82f7e37a20ea35f983a6d253", + "x-ms-request-id": "e6901cc5-3bc0-4b15-ad94-b26e7e82f91b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f4d7108c12eaff58aa8d6c71c090e6d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f4d7108c12eaff58aa8d6c71c090e6d5", + "x-ms-request-id": "6b18b692-f318-472e-941e-2e191a8509eb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5907482214edac29c564a6a29a48ebae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5907482214edac29c564a6a29a48ebae", + "x-ms-request-id": "9a776304-5ead-4dc2-8983-9ee3d8016240" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4faa4e23fec658377a49af6915082390", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4faa4e23fec658377a49af6915082390", + "x-ms-request-id": "fea061f7-e82d-4d20-8146-78233510496e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3bd66003789e7866e72a2e866bb66561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3bd66003789e7866e72a2e866bb66561", + "x-ms-request-id": "862a5488-6ec6-4586-ba52-18d621719b9d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "724ebea297e5240f10afdfa465bf97bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "724ebea297e5240f10afdfa465bf97bc", + "x-ms-request-id": "2cd05581-06af-44ef-8e1b-fa00aa06bdce" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3a9e1641b071aa0fe832689ccfb1ecc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3a9e1641b071aa0fe832689ccfb1ecc4", + "x-ms-request-id": "cccc9cff-928b-4d48-a3c7-b58f2ee1ed8a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "56c74de4b0ba6caa50b22bef99c11327", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "56c74de4b0ba6caa50b22bef99c11327", + "x-ms-request-id": "8e7a6de2-a0d5-41f2-96db-668d82fd571d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "554472922a17f1f0afa389b22e73555e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "554472922a17f1f0afa389b22e73555e", + "x-ms-request-id": "873d1e64-ca52-419d-a8e1-53a448dedf9b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "17c01bc240f890026b31e9bf85201126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "17c01bc240f890026b31e9bf85201126", + "x-ms-request-id": "4eaafe80-acfe-45bf-84a4-0718a07a9022" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5d09401f976db9ac5cd5a71627f83ddd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5d09401f976db9ac5cd5a71627f83ddd", + "x-ms-request-id": "0ece2502-76ba-4777-9e0a-fc7eb7576824" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7e2dcd5cfb01522e6fb4eae640316c8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7e2dcd5cfb01522e6fb4eae640316c8e", + "x-ms-request-id": "eaf512d3-3c39-48ec-9c8a-0fcb6e6385cb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ee936392f8692af06e06bb2399ec6973", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ee936392f8692af06e06bb2399ec6973", + "x-ms-request-id": "974b19e3-b436-49c7-855a-9f33fed8d142" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b7620cf392f3242411b7edb9adc6792b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b7620cf392f3242411b7edb9adc6792b", + "x-ms-request-id": "f5c1cfb0-31ed-41fb-9cd6-ecf43c65ec5c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c38318684f646474dc020ffa400bb983", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c38318684f646474dc020ffa400bb983", + "x-ms-request-id": "3f590cdc-dc84-4192-a02c-afa1984c65b1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "34f2774ab4ce009b3e6fddb20a377ca8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "34f2774ab4ce009b3e6fddb20a377ca8", + "x-ms-request-id": "66f22efd-49ff-48ce-95fa-be25a76d0f60" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "80ba8f8da568a40e98fedbf08229e305", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "80ba8f8da568a40e98fedbf08229e305", + "x-ms-request-id": "4fabfa7a-346f-44e8-b84e-ea109dec00d8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "366e6afe45d3b45d7c8384f572c15aa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "366e6afe45d3b45d7c8384f572c15aa4", + "x-ms-request-id": "4100fc0b-8733-48e1-bcce-9f38d7c75727" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b06d67853851a51a684e9bcfd8ab7d14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b06d67853851a51a684e9bcfd8ab7d14", + "x-ms-request-id": "868cfef4-d6f3-43e8-907e-0f5d4b865905" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9fb3d78b46c947d4320503e5211931d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9fb3d78b46c947d4320503e5211931d6", + "x-ms-request-id": "83064f0e-7114-4bdc-bbaf-63bbdd7fe3e9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1b6a37a433bcc5b450c9ce85a98ddbd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1b6a37a433bcc5b450c9ce85a98ddbd1", + "x-ms-request-id": "af87070c-c0c7-47a5-94dd-e91faf05786f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9b696f06ba0d3fda92267d4b3534834e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9b696f06ba0d3fda92267d4b3534834e", + "x-ms-request-id": "0aa7e220-0fcd-434d-9bed-552b0f5f68a2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a12bc51c6140585823ee4e00784e9da5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a12bc51c6140585823ee4e00784e9da5", + "x-ms-request-id": "a8316165-16d8-4424-a3b8-fcdc5394db74" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b1df322a96b0e9c85c2b8896b568901c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b1df322a96b0e9c85c2b8896b568901c", + "x-ms-request-id": "e3a9ea26-cb6d-44c6-8a8b-ac3fccdf106e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e4687f453961a4901711781f6bdac743", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e4687f453961a4901711781f6bdac743", + "x-ms-request-id": "47f9f9d5-adb8-4437-b2e2-fb81d3ec9609" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0320d888d254869efd414515d8c2a2ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0320d888d254869efd414515d8c2a2ba", + "x-ms-request-id": "4adba54d-15b1-4942-8a9a-a15b8a7777af" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f8bb325db9e6f144a13b9a9e1ea97e81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f8bb325db9e6f144a13b9a9e1ea97e81", + "x-ms-request-id": "56ced4b1-25e2-4d10-8275-ac2063cf9665" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "dd0d44638d4772c7e0e2e71ff37bcb54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "dd0d44638d4772c7e0e2e71ff37bcb54", + "x-ms-request-id": "1c0a60b3-0592-4ae6-ac22-a335311063c9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "39c1bd6ece1fce5d942f611938ff6754", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "39c1bd6ece1fce5d942f611938ff6754", + "x-ms-request-id": "ad8b897f-67b9-458a-b132-9cf75b755c2a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "94b1c4c3c5b4d0726a481703d224fd25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "94b1c4c3c5b4d0726a481703d224fd25", + "x-ms-request-id": "b25f2b0b-b679-4e3c-8c90-90e0461aa45b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "602f456f44e79562e63f48172bae3ae0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "602f456f44e79562e63f48172bae3ae0", + "x-ms-request-id": "168e994b-449a-416a-9147-c60d8d323af7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2f5c927b37caa99f4bf1cfd7b65afb70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2f5c927b37caa99f4bf1cfd7b65afb70", + "x-ms-request-id": "de0d76f1-0a79-452f-9d4c-90cea4431129" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f2a93c3207d07e6c621cad757c5aa4bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f2a93c3207d07e6c621cad757c5aa4bb", + "x-ms-request-id": "2ccffb84-cd85-4e7d-b9d4-409c3c2f1c53" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3f88370dcdc7385ba68615f5758ade8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3f88370dcdc7385ba68615f5758ade8c", + "x-ms-request-id": "b0c59709-d65a-48f7-a350-e819a7624124" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "efe5d8444704731026ddcdae8a2a2df0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "efe5d8444704731026ddcdae8a2a2df0", + "x-ms-request-id": "a87fe88c-d01c-4c0b-8478-4a2db24f7188" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7fc9134cbbd265a8e1714c4af17609d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7fc9134cbbd265a8e1714c4af17609d7", + "x-ms-request-id": "3b794925-c9b5-4fb8-abf1-6d4aa1d886a3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a331203db575c5b7261419e9ffacae7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a331203db575c5b7261419e9ffacae7b", + "x-ms-request-id": "7cba78bb-0632-479c-bb98-724df4468e43" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "62a924585fc188ba2f7f0d93fbc682af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "62a924585fc188ba2f7f0d93fbc682af", + "x-ms-request-id": "ed1ee204-9b95-4e1c-b447-ec49e4b7ff8e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6970f6d489f9977b5b0358bea1be6634", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6970f6d489f9977b5b0358bea1be6634", + "x-ms-request-id": "873c3edc-4855-4393-92a7-6bccab3ab42c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cdf1d0c3a6cdde1566a873f5a824ca60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cdf1d0c3a6cdde1566a873f5a824ca60", + "x-ms-request-id": "f16a9744-a217-4eca-9c78-c7da6eed37f7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "08146a92443cce82a81206bd06fce771", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "08146a92443cce82a81206bd06fce771", + "x-ms-request-id": "84b004e2-bd77-46d0-8374-b7787fdede96" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2bcfd919b4d52ee1e09202511685ef37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2bcfd919b4d52ee1e09202511685ef37", + "x-ms-request-id": "9785ca04-df22-409c-848a-24ed11c52115" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "372bf8385daa7ef84d2224bb9f57d76a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "372bf8385daa7ef84d2224bb9f57d76a", + "x-ms-request-id": "0084c05c-54b9-4c66-9f2f-226eb32324b2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cfdc02c09f54dd8b88e627a94231b823", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cfdc02c09f54dd8b88e627a94231b823", + "x-ms-request-id": "8f2a5aa3-c2ae-45d6-b105-15d34d81bb0c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0e85cf22b0d0bbc6e051ddb290258e88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0e85cf22b0d0bbc6e051ddb290258e88", + "x-ms-request-id": "7b95d444-ad95-442f-b959-6d43db82ede2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "139098ba20a999e36d4eaec3364e3c1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "139098ba20a999e36d4eaec3364e3c1c", + "x-ms-request-id": "8f7bcddf-34df-4bb7-9fde-8b24c5755a9d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d0980169c9d2109a3b21ee02c2d84c62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d0980169c9d2109a3b21ee02c2d84c62", + "x-ms-request-id": "7c9ed8da-2b4c-4cd9-9db7-a9338592ef72" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "aaef9e57a5a00279ebeba08102038591", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "aaef9e57a5a00279ebeba08102038591", + "x-ms-request-id": "40c5b1cf-88ac-4251-a522-0a8c3f7feff2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8f49c015be8df1b6fd7fd78731e0d794", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8f49c015be8df1b6fd7fd78731e0d794", + "x-ms-request-id": "14ac8651-714c-4a27-9b7b-d1466e1abb2f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "976b4b02925fc47b8795e5e728190e38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "976b4b02925fc47b8795e5e728190e38", + "x-ms-request-id": "4dbdd3b8-007c-40c5-b05c-281015e0a1cd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "01ed5c9cbc8f99d5e8feac20cdf1d10a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "01ed5c9cbc8f99d5e8feac20cdf1d10a", + "x-ms-request-id": "1dbfaeff-8105-415b-9479-0de83cd73514" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b67e0b13ed978232458408f7d8cec8e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:47:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b67e0b13ed978232458408f7d8cec8e4", + "x-ms-request-id": "57aa95a6-c8d0-486a-91fa-bae08dddc8bc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d4eb9f71d6f3450575d1ae61e55af795", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 01:47:19 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d4eb9f71d6f3450575d1ae61e55af795", + "x-ms-request-id": "005aed81-6b0d-4155-8b53-a73f7705bc35" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "145218629" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json index cb25759ba6eb1..34612c81327fe 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a353c8c84d48d750254927b42874ee69", "x-ms-return-client-request-id": "true" @@ -15,25 +15,281 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2425", + "Content-Length": "5903", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:10 GMT", + "Date": "Fri, 21 Aug 2020 01:31:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a353c8c84d48d750254927b42874ee69", - "x-ms-request-id": "5d51fffd-d258-4714-96f3-a5d6e9c90700" + "x-ms-request-id": "31bc8d56-7bf4-450e-92fe-8dfcef464fdd" }, - "ResponseBody": "{\u0022value\u0022:[{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1\u0022,\u0022name\u0022:\u0022Notebook 1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002210003327-0000-0100-0000-5e031adb0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:41,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\\\u0022hello from portal\\\u0022)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook\u0022,\u0022name\u0022:\u0022dongwwaTestNotebook\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220100d5a0-0000-0100-0000-5ecba4720000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2\u0022,\u0022name\u0022:\u0022dongwwaNb2\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220100f6a0-0000-0100-0000-5ecba61e0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[]}}]}" + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1", + "name": "Notebook 1", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "10003327-0000-0100-0000-5e031adb0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 41, + "cores": 8, + "memory": 56, + "extraHeader": {} + } + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0022hello from portal\u0022)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook", + "name": "dongwwaTestNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "0100d5a0-0000-0100-0000-5ecba4720000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2", + "name": "dongwwaNb2", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "1100d8f9-0000-0100-0000-5f1560de0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 3 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 15 + }, + "cells": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23", + "name": "dongwwanb23", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "5f0005d3-0000-0100-0000-5f06bc3e0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446", + "name": "dongwwatestnb1446", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "5f0029d3-0000-0100-0000-5f06bd6a0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell", + "name": "dongwwaCreateNbwithCell", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "00009f60-0000-0100-0000-5f116cc60000", + "properties": { + "description": "test", + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + } + } + ] + } }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0a556081a73bce4598649b5834545de7-c5fa653f5194b74b-00", + "traceparent": "00-8040ac6799ccec4facc3a7fd25c3d1f3-764ff4d627b1fd4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4a0bc19ed1af8774eec1dd87ae8fc195", "x-ms-return-client-request-id": "true" @@ -44,7 +300,7 @@ "Cache-Control": "no-cache", "Content-Length": "1212", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:10 GMT", + "Date": "Fri, 21 Aug 2020 01:31:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -54,21 +310,73 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4a0bc19ed1af8774eec1dd87ae8fc195", - "x-ms-correlation-request-id": "cdead47f-271e-4488-afd5-74334d9207ce", - "x-ms-request-id": "195a5e02-89ef-4287-89bc-8e3354a924d2", + "x-ms-correlation-request-id": "5669e3bf-1228-4c17-806b-0820fbc1aa0e", + "x-ms-request-id": "371354c7-1d10-4d5d-a1e0-cc5aa3f0398d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1\u0022,\u0022name\u0022:\u0022Notebook 1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:41,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\\\u0022hello from portal\\\u0022)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]},\u0022etag\u0022:\u002210003327-0000-0100-0000-5e031adb0000\u0022}" + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1", + "name": "Notebook 1", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 41, + "cores": 8, + "memory": 56, + "extraHeader": {} + } + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0022hello from portal\u0022)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + }, + "etag": "10003327-0000-0100-0000-5e031adb0000" + } }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaTestNotebook?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b01ee48f79851747b82b830ea3db6046-7697169d77771b4b-00", + "traceparent": "00-118043b0ec557c44ae930277455274a4-dc13731adf4ecc4a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a5ce45d6e1c2bab2e43cbea51f9fa1ea", "x-ms-return-client-request-id": "true" @@ -79,7 +387,7 @@ "Cache-Control": "no-cache", "Content-Length": "666", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:10 GMT", + "Date": "Fri, 21 Aug 2020 01:31:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -89,21 +397,55 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a5ce45d6e1c2bab2e43cbea51f9fa1ea", - "x-ms-correlation-request-id": "6f411dae-44b2-45a4-aaec-561cdec7a1eb", - "x-ms-request-id": "c411570f-c651-46d1-9b26-982ef54dc8d8", + "x-ms-correlation-request-id": "dd2d2eae-1f04-47e9-8e21-8fca7559461e", + "x-ms-request-id": "7d19ba28-5b96-428d-98fb-b1a49904ca9b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook\u0022,\u0022name\u0022:\u0022dongwwaTestNotebook\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]},\u0022etag\u0022:\u00220100d5a0-0000-0100-0000-5ecba4720000\u0022}" + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook", + "name": "dongwwaTestNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + }, + "etag": "0100d5a0-0000-0100-0000-5ecba4720000" + } }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaNb2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-032d70851dcb9a4f901cdbefd815e5d8-570ddd3dede9fc4f-00", + "traceparent": "00-5b71db9ccc2ffb479f00ab572a1822c2-edd7bb6d2a854149-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9afc5697cb4df7be53cbb58670c82995", "x-ms-return-client-request-id": "true" @@ -112,9 +454,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "533", + "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:10 GMT", + "Date": "Fri, 21 Aug 2020 01:31:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -124,14 +466,168 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9afc5697cb4df7be53cbb58670c82995", - "x-ms-correlation-request-id": "70468554-77b6-4863-a4e4-3775d53ace39", - "x-ms-request-id": "89159e06-fde9-4b72-b483-9479fb4c5b15", + "x-ms-correlation-request-id": "0e3af99f-c44c-48d7-85fc-fdbcd19d26b3", + "x-ms-request-id": "8774ca7b-e29d-42f1-8011-abd8daabec0b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2", "name": "dongwwaNb2", "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 3 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 15 + }, + "cells": [] + }, + "etag": "1100d8f9-0000-0100-0000-5f1560de0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb23?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-0ed53de254f16c4c968630ca59c57a1b-2ca6ebeea9fd3144-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e3dd918848a6bca70e50667313ce674e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "e3dd918848a6bca70e50667313ce674e", + "x-ms-correlation-request-id": "e9c23d21-5417-4551-aba4-52c1c07ae8f8", + "x-ms-request-id": "5c28277d-0636-44ea-bc46-079fd56d9124", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23", + "name": "dongwwanb23", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [] + }, + "etag": "5f0005d3-0000-0100-0000-5f06bc3e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwatestnb1446?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4c97ff8c92b68f4981b67db66cb06d8e-2eb2d1142751594e-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "57eff22026920b4787d652f62c2b491b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "547", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "57eff22026920b4787d652f62c2b491b", + "x-ms-correlation-request-id": "89ae3480-ced2-433e-b531-d71d190d0013", + "x-ms-request-id": "f723f299-89d2-441c-a9cc-efc1339fe448", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446", + "name": "dongwwatestnb1446", + "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, @@ -150,7 +646,96 @@ }, "cells": [] }, - "etag": "0100f6a0-0000-0100-0000-5ecba61e0000" + "etag": "5f0029d3-0000-0100-0000-5f06bd6a0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaCreateNbwithCell?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ea6680fe8c48a4fb5c4693c5411ee62-ef717a736d14bf45-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8e1d2812bec14e44af408bfd654ae484", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1261", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "8e1d2812bec14e44af408bfd654ae484", + "x-ms-correlation-request-id": "fdd0118f-ff1b-40e7-940e-f415c1115711", + "x-ms-request-id": "938e551f-8f53-49ee-a1a2-ccc5cafd5cd4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell", + "name": "dongwwaCreateNbwithCell", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "description": "test", + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + }, + "etag": "00009f60-0000-0100-0000-5f116cc60000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json index bcfc9b6ff1285..0e76190517c3f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "765dcd98fbeb2794bc56547da66ebf7d", "x-ms-return-client-request-id": "true" @@ -15,25 +15,297 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2425", + "Content-Length": "6291", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:11 GMT", + "Date": "Fri, 21 Aug 2020 01:46:50 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "765dcd98fbeb2794bc56547da66ebf7d", - "x-ms-request-id": "252645df-52f1-4258-9a4f-efe51e81d444" + "x-ms-request-id": "9be61a9e-40db-4f9e-9db3-0223ce028b1f" }, - "ResponseBody": "{\u0022value\u0022:[{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1\u0022,\u0022name\u0022:\u0022Notebook 1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002210003327-0000-0100-0000-5e031adb0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:41,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\\\u0022hello from portal\\\u0022)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook\u0022,\u0022name\u0022:\u0022dongwwaTestNotebook\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220100d5a0-0000-0100-0000-5ecba4720000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2\u0022,\u0022name\u0022:\u0022dongwwaNb2\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220100f6a0-0000-0100-0000-5ecba61e0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[]}}]}" + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1", + "name": "Notebook 1", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "10003327-0000-0100-0000-5e031adb0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 41, + "cores": 8, + "memory": 56, + "extraHeader": {} + } + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0022hello from portal\u0022)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook", + "name": "dongwwaTestNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "0100d5a0-0000-0100-0000-5ecba4720000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2", + "name": "dongwwaNb2", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "1100d8f9-0000-0100-0000-5f1560de0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 3 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 15 + }, + "cells": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23", + "name": "dongwwanb23", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "5f0005d3-0000-0100-0000-5f06bc3e0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446", + "name": "dongwwatestnb1446", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "5f0029d3-0000-0100-0000-5f06bd6a0000", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell", + "name": "dongwwaCreateNbwithCell", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "00009f60-0000-0100-0000-5f116cc60000", + "properties": { + "description": "test", + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "name": "MyNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "0900da04-0000-0100-0000-5f3f27820000", + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + } + } + ] + } }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-94c04f9ff271a2489a13db47e7333e9f-cb8fecc87ad37e49-00", + "traceparent": "00-c72890cb0e5f73429c5d3b312d102384-6d30e9944629604d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8fac1d1f3467c3a7c68b0cee7d692513", "x-ms-return-client-request-id": "true" @@ -44,7 +316,7 @@ "Cache-Control": "no-cache", "Content-Length": "1212", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:11 GMT", + "Date": "Fri, 21 Aug 2020 01:46:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -54,21 +326,73 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8fac1d1f3467c3a7c68b0cee7d692513", - "x-ms-correlation-request-id": "98ef2347-39c9-46dc-8601-a59b0cc20940", - "x-ms-request-id": "649b1210-7ece-416f-a596-976d919b427a", + "x-ms-correlation-request-id": "ecc2373c-13b3-4803-a2bb-d289b740697b", + "x-ms-request-id": "c8fd7cc4-efa0-4259-916b-a791720cff23", "X-Powered-By": "ASP.NET" }, - "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1\u0022,\u0022name\u0022:\u0022Notebook 1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:41,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\\\u0022hello from portal\\\u0022)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]},\u0022etag\u0022:\u002210003327-0000-0100-0000-5e031adb0000\u0022}" + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1", + "name": "Notebook 1", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 41, + "cores": 8, + "memory": 56, + "extraHeader": {} + } + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0022hello from portal\u0022)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + }, + "etag": "10003327-0000-0100-0000-5e031adb0000" + } }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaTestNotebook?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-349203ec89f56842bb8fc3efe5791085-72125645c4782040-00", + "traceparent": "00-b3f252c43ca7674eab39c73cb37004e1-0088c65fe842104c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0a2d2b55c619c1c6a5e590fbfec3543a", "x-ms-return-client-request-id": "true" @@ -79,7 +403,7 @@ "Cache-Control": "no-cache", "Content-Length": "666", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:11 GMT", + "Date": "Fri, 21 Aug 2020 01:46:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -89,21 +413,55 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0a2d2b55c619c1c6a5e590fbfec3543a", - "x-ms-correlation-request-id": "09659443-44b5-45b6-9443-60b3ce5ed763", - "x-ms-request-id": "bfdfc370-77f1-4eea-880c-43cdcadd2353", + "x-ms-correlation-request-id": "1d208da7-90a3-4ee0-90ca-59e260a8f241", + "x-ms-request-id": "3e0487bf-e3cd-422d-8662-3e025b528216", "X-Powered-By": "ASP.NET" }, - "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook\u0022,\u0022name\u0022:\u0022dongwwaTestNotebook\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}]},\u0022etag\u0022:\u00220100d5a0-0000-0100-0000-5ecba4720000\u0022}" + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook", + "name": "dongwwaTestNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + }, + "etag": "0100d5a0-0000-0100-0000-5ecba4720000" + } }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaNb2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d74dd0d5fc0dcc43836687ca8551d9f4-1f0ea5b2cfa54e44-00", + "traceparent": "00-43abb4143e00904082719e4308f653da-c17ecc3198291547-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "271e15196f6b6498269aaf5feea6a952", "x-ms-return-client-request-id": "true" @@ -112,9 +470,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "533", + "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:45:11 GMT", + "Date": "Fri, 21 Aug 2020 01:46:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -124,8 +482,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "271e15196f6b6498269aaf5feea6a952", - "x-ms-correlation-request-id": "73d36d3c-4eb0-455b-9a28-a12e8b43424d", - "x-ms-request-id": "91ddedf3-65d1-4bc6-896b-d91a1e37ea1e", + "x-ms-correlation-request-id": "9ecbaf03-bda2-40bd-9463-e3b321e3c878", + "x-ms-request-id": "031d0499-8804-4994-8559-0f89edb551fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -135,6 +493,87 @@ "properties": { "nbformat": 4, "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 3 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 15 + }, + "cells": [] + }, + "etag": "1100d8f9-0000-0100-0000-5f1560de0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb23?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60aeeef3b9a06c4d9d99194504eea4f9-c972391398e60645-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7a284130b540596357ebea81a3abc502", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "7a284130b540596357ebea81a3abc502", + "x-ms-correlation-request-id": "e53f21e4-31e1-4538-883c-bc5658a2eeaa", + "x-ms-request-id": "ae4762fb-388a-4f31-ac78-cedf50364cbb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23", + "name": "dongwwanb23", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, "sessionProperties": { "driverMemory": "28g", "driverCores": 4, @@ -146,11 +585,223 @@ "language_info": { "name": "python" }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, "sessionKeepAliveTimeout": 30 }, "cells": [] }, - "etag": "0100f6a0-0000-0100-0000-5ecba61e0000" + "etag": "5f0005d3-0000-0100-0000-5f06bc3e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwatestnb1446?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-abdad6fa5719ef409f7937ec19e8bdc2-d40f3b9b2dce874b-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "68d4d137fe4be5a893c9e47f1667d3fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "547", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "68d4d137fe4be5a893c9e47f1667d3fe", + "x-ms-correlation-request-id": "697a3e96-e4fc-470b-8dba-7fbb5bad7551", + "x-ms-request-id": "14537b40-643b-4d10-8446-0ec457175fba", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446", + "name": "dongwwatestnb1446", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [] + }, + "etag": "5f0029d3-0000-0100-0000-5f06bd6a0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaCreateNbwithCell?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-dfa3695297662f4bbbe1acc8f464abe1-40411f74d2011740-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "bdcb3d3cd99b64fab1c4d07f8516c07a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1261", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "bdcb3d3cd99b64fab1c4d07f8516c07a", + "x-ms-correlation-request-id": "784ff20e-49f2-4cf3-abdd-47a296595e3d", + "x-ms-request-id": "64231de0-3a7c-413b-98cb-9a63488a3f96", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell", + "name": "dongwwaCreateNbwithCell", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "description": "test", + "nbformat": 4, + "nbformat_minor": 2, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1 + }, + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 + }, + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null + } + ] + }, + "etag": "00009f60-0000-0100-0000-5f116cc60000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6f49af1a78ea554798894fa6afc99fd9-02149fb58711904d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1c28add440d132079843e677d1e443f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "387", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:46:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1c28add440d132079843e677d1e443f0", + "x-ms-correlation-request-id": "3d64006b-fe1a-48e6-b079-4dbe8c2fde90", + "x-ms-request-id": "732be452-f10e-49f0-bcfb-d08ea9a13638", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "name": "MyNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + }, + "etag": "0900da04-0000-0100-0000-5f3f27820000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json new file mode 100644 index 0000000000000..c27478ae85ce5 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json @@ -0,0 +1,247 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "17", + "Content-Type": "application/json", + "traceparent": "00-0650270b64275c478157f1f32a5f6d20-5d1313b633c4e34a-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6626e1cdfd2e4d364a142a774c10f927", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": {} + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "368", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6626e1cdfd2e4d364a142a774c10f927", + "x-ms-request-id": "272996ac-c1d7-423c-b55c-ca93707af4a9" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "recordId": 202165, + "state": "Creating", + "created": "2020-08-21T01:53:32.76Z", + "changed": "2020-08-21T01:53:32.76Z", + "type": "Pipeline", + "name": "MyPipeline", + "operationId": "d0160b90-bcbd-41e7-bbb1-c08de57bbb69" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1297e2035eae5172b183464f0409d70d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1297e2035eae5172b183464f0409d70d", + "x-ms-request-id": "7959fe28-ada2-4ba5-a333-33cb9ed75e22" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9fe7e2cfcac80d65f615888642f8908a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9fe7e2cfcac80d65f615888642f8908a", + "x-ms-request-id": "18263b06-7420-4fa6-83fa-1cb5663d3f89" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", + "x-ms-request-id": "03342253-aeb8-4ae3-8fe4-f55d43feaf32" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "da6dacd0d2d739517d891b99d6ec0eb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "da6dacd0d2d739517d891b99d6ec0eb8", + "x-ms-request-id": "451d35e3-184d-4efd-bf30-98e009a4ae2b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f4acbbf36d96e993696641ded55e945a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "f4acbbf36d96e993696641ded55e945a", + "x-ms-correlation-request-id": "28090880-3266-4271-9eca-ed99a05dfd28", + "x-ms-request-id": "b7bda328-d535-4890-bbe6-2b706961287a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "lastPublishTime": "2020-08-21T01:53:33Z" + }, + "etag": "0900ff05-0000-0100-0000-5f3f291d0000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "97481401" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json new file mode 100644 index 0000000000000..fb7bf1740ddcf --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json @@ -0,0 +1,691 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "17", + "Content-Type": "application/json", + "traceparent": "00-c860166c4bc7b14797101be36f7827d3-ee7552767d6ccd4d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2ca06a491c48e3d848f1b315763be1de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": {} + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "378", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2ca06a491c48e3d848f1b315763be1de", + "x-ms-request-id": "a23a2429-903a-4715-b1bc-abade0cacfdc" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "recordId": 202167, + "state": "Creating", + "created": "2020-08-21T01:54:04.9333333Z", + "changed": "2020-08-21T01:54:04.9333333Z", + "type": "Pipeline", + "name": "MyPipeline", + "operationId": "c60fc4aa-1841-45cc-a52d-5b3e7d4ba572" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "df555f1bc3b8ead5fe567256f9079112", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "df555f1bc3b8ead5fe567256f9079112", + "x-ms-request-id": "72a6b069-8b09-4d70-ba20-8c1d9365b29c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "aa209ff1052668b497fbe63b01770c38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "aa209ff1052668b497fbe63b01770c38", + "x-ms-request-id": "5ab03956-14f4-4670-a64a-e8842cc04344" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "16fad82701e58a26ba1f7a6d6e7cac3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "16fad82701e58a26ba1f7a6d6e7cac3d", + "x-ms-request-id": "5bc19fa6-3079-44da-becd-7486bb7ca9eb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3770087b1fef15b4abed48bddc9ae887", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3770087b1fef15b4abed48bddc9ae887", + "x-ms-request-id": "4fedc38f-9d4f-4b1c-b7d3-ab3859c0506f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "202f3a497b0cef2d7895ef068b46fa1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "202f3a497b0cef2d7895ef068b46fa1b", + "x-ms-request-id": "f7062450-0c7c-4219-b6e3-5af0974302fb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f9bfa94fd507074924e56af8b969ae1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f9bfa94fd507074924e56af8b969ae1f", + "x-ms-request-id": "39454a71-733e-4faa-9504-34501db2c0e2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3323f2368b4cff30db80be592fad8a65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3323f2368b4cff30db80be592fad8a65", + "x-ms-request-id": "d9e011a5-6f88-4b9a-a65e-ac4cf9a11ede" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", + "x-ms-request-id": "4410e5eb-c4ed-41fc-8acd-9e4f0ad8c785" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "98d0d0e7c623c3ce78bf1e8617efd776", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "98d0d0e7c623c3ce78bf1e8617efd776", + "x-ms-request-id": "fae53c8f-2b7f-444b-90e7-1a75eb52ed23" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8c05055a7bfb474472af42248f09efa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8c05055a7bfb474472af42248f09efa6", + "x-ms-request-id": "5fcc0066-1679-451b-a7ab-46aba7dd5f14" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5f72ae4bf2dd2c425eaabb1bd0fa5c01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5f72ae4bf2dd2c425eaabb1bd0fa5c01", + "x-ms-request-id": "7bd95809-716f-4c73-a541-7da1457f29c1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0bcd8551a82f6c148b88267383a9346f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0bcd8551a82f6c148b88267383a9346f", + "x-ms-request-id": "bfc356bf-3b5e-4839-acae-be5e3c8f7de2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "683a78d0777c6899c3d92d50c0297777", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "683a78d0777c6899c3d92d50c0297777", + "x-ms-request-id": "32516c07-0a92-4e0f-9a5e-af7c5d732760" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "09d34053e43ba2769a06d454cccea8b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "09d34053e43ba2769a06d454cccea8b5", + "x-ms-request-id": "6c442584-dcf8-432d-ae25-7bb6c307b2ca" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "584a4c76f3bfd985eb6547567bc3ac62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "584a4c76f3bfd985eb6547567bc3ac62", + "x-ms-request-id": "523129ea-e948-457e-8ade-0a943382be1f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "421fae112ad6ec330198ce76a3449bf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "421fae112ad6ec330198ce76a3449bf4", + "x-ms-request-id": "c6849515-80e9-4600-bfea-fbe4dfb3713b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "73da78301ede5fb7bbf91ed69c2027d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "73da78301ede5fb7bbf91ed69c2027d6", + "x-ms-correlation-request-id": "4183bc4c-5ccf-46ae-860b-59f412a1c0cf", + "x-ms-request-id": "35c1f35b-f8e2-43d7-ad5c-67bae980d707", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "lastPublishTime": "2020-08-21T01:54:08Z" + }, + "etag": "09002406-0000-0100-0000-5f3f29400000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1777657858" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json new file mode 100644 index 0000000000000..b99c2975d138d --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json @@ -0,0 +1,329 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7762095aa6f378428180cf09f1725bf2-9a96adcc277ffb47-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "031bbc1197fb2d70cbe02899c84e00ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "031bbc1197fb2d70cbe02899c84e00ad", + "x-ms-request-id": "169ebc49-9624-4ca9-b795-30e6c2638f52" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Pipeline", + "name": "MyPipeline", + "operationId": "a7a9ebd3-574a-4dc0-8184-bb53c542ed83" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4862b8ad12b28ef0432e5352d565e9b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4862b8ad12b28ef0432e5352d565e9b1", + "x-ms-request-id": "1745bdb3-58a6-4241-9067-b0ee138d8a2f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9a3c618e61a88b298358f54717201304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9a3c618e61a88b298358f54717201304", + "x-ms-request-id": "438a111c-ba60-49ba-8191-8deef311cc6c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "10eb6855b8ebaffa1ec1918932e7eda9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "10eb6855b8ebaffa1ec1918932e7eda9", + "x-ms-request-id": "ff07df9b-54f0-4a3b-a530-8e67a870c28e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b8c1cecaf0894c178ed7c45a1da97623", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b8c1cecaf0894c178ed7c45a1da97623", + "x-ms-request-id": "b22c142e-750f-40dc-ad5e-a8a654e2eb66" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6dfc4e1bd979d6c5668d7ce6cfa0589c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6dfc4e1bd979d6c5668d7ce6cfa0589c", + "x-ms-request-id": "1879bf2e-8c95-490a-a3f4-96712f402a4d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "487d4b6a5a5e657b509f8113f3a09175", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "487d4b6a5a5e657b509f8113f3a09175", + "x-ms-request-id": "43349184-6e01-42a0-bda2-392ee1f02a07" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e46d6e4a80eaf03009eb52fb73307cee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e46d6e4a80eaf03009eb52fb73307cee", + "x-ms-request-id": "53425961-de3e-4651-81d0-eb9549af1b7d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d1ef287e2e2bc1c5d3961cda57b1e2c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 01:53:54 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d1ef287e2e2bc1c5d3961cda57b1e2c6", + "x-ms-request-id": "5021105d-6bf4-4557-a6ec-b68b0e61efbd" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1369163451" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json new file mode 100644 index 0000000000000..f2307ad24c640 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json @@ -0,0 +1,255 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-a91834d7a6ce624cbd8fa61367f29cce-f18f53c5c6519e41-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8e3fc6ae697667b8aa3545698df1c49f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8e3fc6ae697667b8aa3545698df1c49f", + "x-ms-request-id": "8da0ef37-6772-4a11-9e5e-e75000d9ad31" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Pipeline", + "name": "MyPipeline", + "operationId": "9964fd00-4294-46f9-9ba5-3f47d3a90ce0" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9575055aad89ca71abf297ab32176a0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9575055aad89ca71abf297ab32176a0b", + "x-ms-request-id": "91ca8f92-a11b-49be-a3b8-2f131964d731" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1d70a21250593bfff286793ba2c8eb72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1d70a21250593bfff286793ba2c8eb72", + "x-ms-request-id": "9ac606fe-e22c-4aa3-9d8c-b71b6f92dd23" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "880fffc62e7ba8155527f523dc2887fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "880fffc62e7ba8155527f523dc2887fd", + "x-ms-request-id": "ee27c611-7560-46d7-940b-5327efb540cc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "dadcbbd051c709ec053aa303343628e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "dadcbbd051c709ec053aa303343628e2", + "x-ms-request-id": "3e402590-0964-4169-8d16-0e3766f0befd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "32e42407e208e3908cc8c8325bdc5fca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "32e42407e208e3908cc8c8325bdc5fca", + "x-ms-request-id": "0141dc04-9ed6-4bec-8ac0-d7abb5149a5a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e66b7bff10ec74aa120582418b12731f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 01:54:28 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e66b7bff10ec74aa120582418b12731f", + "x-ms-request-id": "afb85d12-9633-47f7-88cb-dfe97b524ed0" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1051353054" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json index 2f456ab0909b4..68673adf23258 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "33fb91d27c5a3010474b58bf2270acbd", "x-ms-return-client-request-id": "true" @@ -15,13 +15,13 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "623", + "Content-Length": "4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:51:01 GMT", + "Date": "Fri, 21 Aug 2020 01:53:42 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "33fb91d27c5a3010474b58bf2270acbd", - "x-ms-request-id": "d5cd5201-b1f1-428b-adda-9be905d2a333" + "x-ms-request-id": "02a7b30d-c2d8-4811-a8e8-78a23af98eef" }, "ResponseBody": { "value": [ @@ -52,7 +52,129 @@ } } ], - "annotations": [] + "annotations": [], + "lastPublishTime": "2020-05-11T03:42:44Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "300020f3-0000-0100-0000-5efb3f8b0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "30003ef4-0000-0100-0000-5efb3fa20000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "300009ff-0000-0100-0000-5efb407e0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_7898", + "name": "dongwwa_pipeline_7898", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100f414-0000-0100-0000-5efb42930000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1795", + "name": "dongwwa_pipeline_1795", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100f714-0000-0100-0000-5efb42930000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100578a-0000-0100-0000-5efb507b0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100068c-0000-0100-0000-5efb50af0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0900ff05-0000-0100-0000-5f3f291d0000", + "properties": { + "lastPublishTime": "2020-08-21T01:53:33Z" } } ] @@ -63,10 +185,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e8fe8b1a5f24f4418785075a996cf9d6-5176c3c7274cfe4f-00", + "traceparent": "00-bda4e6c46472e34781c9b26d8a8a258b-f058a1bc5ecf0b43-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "eb51ee2b1608ec5afe9637bbb301e7f3", "x-ms-return-client-request-id": "true" @@ -75,9 +197,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "611", + "Content-Length": "652", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:51:01 GMT", + "Date": "Fri, 21 Aug 2020 01:53:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -87,8 +209,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "eb51ee2b1608ec5afe9637bbb301e7f3", - "x-ms-correlation-request-id": "845123fc-6889-47a9-8078-98e147bbbe9c", - "x-ms-request-id": "cc2399d3-052c-489b-a968-e2dd7463a18d", + "x-ms-correlation-request-id": "44f5cec8-0028-437a-9caa-5c8d4dadc5b1", + "x-ms-request-id": "ecca6108-53a7-401e-acf3-60412742d6fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -117,10 +239,404 @@ } } ], - "annotations": [] + "annotations": [], + "lastPublishTime": "2020-05-11T03:42:44Z" }, "etag": "4200191d-0000-0100-0000-5eb8c9b40000" } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7c61273750791342aa1b692d91e384f9-5075062408cf5248-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5ed53bdd4eb4a73dad230e2ab58d4037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "5ed53bdd4eb4a73dad230e2ab58d4037", + "x-ms-correlation-request-id": "225b1474-00dc-4ce6-94ab-dcec8e1dca04", + "x-ms-request-id": "d8d81b31-93e8-4577-9345-12e10b5ed564", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" + }, + "etag": "300020f3-0000-0100-0000-5efb3f8b0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6637?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-0367d6a683da2644bad2bd411eb883c9-14088a605f87ed4a-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a50beeede95ebc2a370e35c344557c46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "a50beeede95ebc2a370e35c344557c46", + "x-ms-correlation-request-id": "49996300-ac95-443e-9355-50f4be238f25", + "x-ms-request-id": "e96b4981-50d8-4e29-97a2-fda9d6555fa5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" + }, + "etag": "30003ef4-0000-0100-0000-5efb3fa20000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_5633?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1539967e7a2d1a4d8fde39a80403d6e9-fb39845a05756743-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e6e265644d9bdc09b0aa3de408303770", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "e6e265644d9bdc09b0aa3de408303770", + "x-ms-correlation-request-id": "44f12cbb-6301-4165-8d17-51a0c5ef3805", + "x-ms-request-id": "62d384fc-bf61-4c9e-a37b-3b09a0e50555", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" + }, + "etag": "300009ff-0000-0100-0000-5efb407e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_7898?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2cb89f95e04d6944a157dd3d876ea119-8d7e4aec24a9cd46-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c4ceff5541f5f394111927a5187a6258", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "c4ceff5541f5f394111927a5187a6258", + "x-ms-correlation-request-id": "e636ee54-6e65-4013-8179-13a0e7355ccf", + "x-ms-request-id": "d5099f3e-0d25-4dca-8065-c88d59b12511", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_7898", + "name": "dongwwa_pipeline_7898", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + }, + "etag": "3100f414-0000-0100-0000-5efb42930000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_1795?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-108971b3632a964cb72fb8612da355e4-10c24607a8ddfe4f-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4fc5c7a75aaa9f9ce52ef4b4ab45b306", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4fc5c7a75aaa9f9ce52ef4b4ab45b306", + "x-ms-correlation-request-id": "b5657d5d-aa6c-40e6-b391-36937740c1a3", + "x-ms-request-id": "16a7ebf7-821a-492f-b0e0-4adf02c3bf8d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1795", + "name": "dongwwa_pipeline_1795", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + }, + "etag": "3100f714-0000-0100-0000-5efb42930000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6157?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-02818bae54b0dc42898a4e769a768927-0712c69356111e47-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "446dc4d7b8872251d0eed5812663c436", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "446dc4d7b8872251d0eed5812663c436", + "x-ms-correlation-request-id": "6ef67748-5820-4c6f-a650-21de1d1b3a75", + "x-ms-request-id": "837a069e-1669-4201-b9bf-4edef06a8705", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" + }, + "etag": "3100578a-0000-0100-0000-5efb507b0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8864?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-571aa6260ebf054fbbba9414b7c36631-2912f11222833d4c-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "403de547e76bfbc6632edec64cdf48cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "403de547e76bfbc6632edec64cdf48cb", + "x-ms-correlation-request-id": "c1f3aaa4-2389-4871-88c7-c91308c255ff", + "x-ms-request-id": "c93624f8-6c6a-477b-a110-5bb612866b93", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" + }, + "etag": "3100068c-0000-0100-0000-5efb50af0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4fa9ceacc1cd354bb2a24f791796b858-84a3873683d0384d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "53ce21651d0cefd076a27ebb841a7982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:53:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "53ce21651d0cefd076a27ebb841a7982", + "x-ms-correlation-request-id": "952b315f-e5ae-4e04-a181-83a87fa0c6c8", + "x-ms-request-id": "57fba4e9-0bc8-4dcd-bdab-499bd9310cba", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "lastPublishTime": "2020-08-21T01:53:33Z" + }, + "etag": "0900ff05-0000-0100-0000-5f3f291d0000" + } } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json index 74370ac587b1c..675cd3d7375d2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fdc6e542e37e5e08c973bcea091afcd3", "x-ms-return-client-request-id": "true" @@ -15,13 +15,13 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "623", + "Content-Length": "4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:51:02 GMT", + "Date": "Fri, 21 Aug 2020 01:54:18 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fdc6e542e37e5e08c973bcea091afcd3", - "x-ms-request-id": "b5dc358e-42eb-4e15-83d6-421b05e4c7a1" + "x-ms-request-id": "9733316a-8a46-46be-9bbf-9fa1723c4622" }, "ResponseBody": { "value": [ @@ -52,7 +52,129 @@ } } ], - "annotations": [] + "annotations": [], + "lastPublishTime": "2020-05-11T03:42:44Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "300020f3-0000-0100-0000-5efb3f8b0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "30003ef4-0000-0100-0000-5efb3fa20000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "300009ff-0000-0100-0000-5efb407e0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_7898", + "name": "dongwwa_pipeline_7898", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100f414-0000-0100-0000-5efb42930000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1795", + "name": "dongwwa_pipeline_1795", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100f714-0000-0100-0000-5efb42930000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100578a-0000-0100-0000-5efb507b0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "3100068c-0000-0100-0000-5efb50af0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "09002406-0000-0100-0000-5f3f29400000", + "properties": { + "lastPublishTime": "2020-08-21T01:54:08Z" } } ] @@ -63,10 +185,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-549b977b582fd3488336d659caaf181e-1ddb1eda104c4249-00", + "traceparent": "00-14ae01ac3f3a56459f0caaca956a349b-29495c4ce23b9149-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200528.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6be4bf56645b387ef2a76c787d751108", "x-ms-return-client-request-id": "true" @@ -75,9 +197,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "611", + "Content-Length": "652", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 29 May 2020 05:51:02 GMT", + "Date": "Fri, 21 Aug 2020 01:54:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -87,8 +209,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6be4bf56645b387ef2a76c787d751108", - "x-ms-correlation-request-id": "32332c07-2395-427f-80d7-e5d1284a3642", - "x-ms-request-id": "db89207e-e33d-40d3-98db-0d52273ee7db", + "x-ms-correlation-request-id": "6f5a1255-e2ca-4d68-b7b2-05343cce9089", + "x-ms-request-id": "9a03ab1c-68ff-41dd-8ae3-aeaf6848c524", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -117,10 +239,404 @@ } } ], - "annotations": [] + "annotations": [], + "lastPublishTime": "2020-05-11T03:42:44Z" }, "etag": "4200191d-0000-0100-0000-5eb8c9b40000" } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8572?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6722449ed897d740a85255d45647c43f-777c5b6980eebc47-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "12029322d074c422233f038cde1a41df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "12029322d074c422233f038cde1a41df", + "x-ms-correlation-request-id": "0f3c71c0-e7b0-4aed-af33-2dde0b05bcc8", + "x-ms-request-id": "fdb69f1c-0b69-4248-8637-1ad3f2ea86a7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" + }, + "etag": "300020f3-0000-0100-0000-5efb3f8b0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6637?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fcef7a19b9896e498a3b28733c084813-48fc095204f5c143-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8014551f9366de1e678d0ad7778fe154", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "8014551f9366de1e678d0ad7778fe154", + "x-ms-correlation-request-id": "78d67741-b33c-4e3e-ad67-a2d33e55b8b3", + "x-ms-request-id": "7019ad9e-0787-4370-8221-b1d4d91b0437", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" + }, + "etag": "30003ef4-0000-0100-0000-5efb3fa20000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_5633?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-a15db855bb07f24ca50eda2c903dfb6d-07c3e0aa88f06440-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "76c8b462e918855f9c20471b60f159d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "76c8b462e918855f9c20471b60f159d7", + "x-ms-correlation-request-id": "6317f1c7-1ae7-4055-9224-47fc686fd854", + "x-ms-request-id": "c37a820b-c0a5-4694-8a2e-16ce5febbc0b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" + }, + "etag": "300009ff-0000-0100-0000-5efb407e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_7898?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-de532e959962eb4dad0211780488fee7-9713ee405e7d9942-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "27598d6591608fa17423abe6c54b4d93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "27598d6591608fa17423abe6c54b4d93", + "x-ms-correlation-request-id": "e4859317-bbfd-4799-a393-b3d77857da09", + "x-ms-request-id": "27fd5eec-1364-42fb-a468-56cd573388fa", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_7898", + "name": "dongwwa_pipeline_7898", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + }, + "etag": "3100f414-0000-0100-0000-5efb42930000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_1795?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-a0ef077df97e9c48b478aa3334ee2fb4-f7a3717bbe0a3846-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2a2aaf5ecb5235c6f68ee3454b027d76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "2a2aaf5ecb5235c6f68ee3454b027d76", + "x-ms-correlation-request-id": "d1af73fb-b02f-4b16-bf93-46a12e2a1fa6", + "x-ms-request-id": "abaef04c-6d46-4d78-802a-7ffd1a413d04", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1795", + "name": "dongwwa_pipeline_1795", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:48:03Z" + }, + "etag": "3100f714-0000-0100-0000-5efb42930000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6157?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f8158598a1246c4d8972151b61a4bddb-f496218bd2fbf544-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e9713333b936d0f3123901f43e79c051", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "e9713333b936d0f3123901f43e79c051", + "x-ms-correlation-request-id": "7e441d87-4f12-4d36-bfb2-fda7f8c512cc", + "x-ms-request-id": "f507578c-e77d-48c8-a5f1-1d89a6091bea", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" + }, + "etag": "3100578a-0000-0100-0000-5efb507b0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8864?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-505815690731a44a9548651603884b8b-2b760f9d51bda542-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b1bdb4d32fc69984c62331d2ae5b4372", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "b1bdb4d32fc69984c62331d2ae5b4372", + "x-ms-correlation-request-id": "af94b69b-47ee-406c-ac1c-1776c5d6fbd1", + "x-ms-request-id": "7493665b-9c9a-44ce-b0e5-2dbff846ff73", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" + }, + "etag": "3100068c-0000-0100-0000-5efb50af0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-bc91f1fcc8321a47a38f6f14cbfcb877-5c96634caa2b0c4d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "91b234a663d9a45cbc591719cad2f67c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 01:54:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "91b234a663d9a45cbc591719cad2f67c", + "x-ms-correlation-request-id": "cc8f5ba5-8df4-4db8-822e-cd3164ac83fe", + "x-ms-request-id": "ed5eee9a-a956-44ec-8c5b-5cc10c60a6da", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "lastPublishTime": "2020-08-21T01:54:08Z" + }, + "etag": "09002406-0000-0100-0000-5f3f29400000" + } } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json new file mode 100644 index 0000000000000..f439d6a34696b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json @@ -0,0 +1,694 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "33", + "Content-Type": "application/json", + "traceparent": "00-3e58ba4ac0c9a84fb6b03fe02d5ae012-8801c48fd7d6964e-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c1d95cced0706a0477a2c5155033e673", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": "Trigger" + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "374", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c1d95cced0706a0477a2c5155033e673", + "x-ms-request-id": "a7ee820b-2f61-4430-8726-ea6a14f092cd" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "recordId": 202194, + "state": "Creating", + "created": "2020-08-21T02:07:24.5966667Z", + "changed": "2020-08-21T02:07:24.5966667Z", + "type": "Trigger", + "name": "MyTrigger", + "operationId": "45ef2269-a8ff-42c5-aca8-300a96cbb942" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "22017afd526e3e3a6025e0d85ebd8bf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "22017afd526e3e3a6025e0d85ebd8bf7", + "x-ms-request-id": "25263b37-b83e-4fd7-8d24-07327ebc7a99" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3de4d122dc23750d26d2678a6c061291", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3de4d122dc23750d26d2678a6c061291", + "x-ms-request-id": "67d22571-a87c-463a-bf9e-d6310d202e05" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d51758b9c4315b05af1ec9ae775da79c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d51758b9c4315b05af1ec9ae775da79c", + "x-ms-request-id": "0ec7018f-ede4-4f0e-a898-8be7e76dd87a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "86da6b5aaa0121496c8cfb9bebb0d259", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "86da6b5aaa0121496c8cfb9bebb0d259", + "x-ms-request-id": "3ea927e0-6d94-4c09-a75f-7cdd7638b51e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "061e4e12b5a65ec6cb888d05125ffdc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "061e4e12b5a65ec6cb888d05125ffdc8", + "x-ms-request-id": "c9436b2b-4dfb-44ac-9b4b-f09c4b04300e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "012fca2b8b2c0f900ef569a5c86a70ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "012fca2b8b2c0f900ef569a5c86a70ff", + "x-ms-request-id": "63bbfc64-ce17-4f9a-bdf0-b437dd6ca8bd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "289b6f4ca13fa5f5a47bbb781c430e0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "289b6f4ca13fa5f5a47bbb781c430e0c", + "x-ms-request-id": "4298fdf8-695f-4b24-bb6d-c1d9352ca9db" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2070328ed080872cbe0ef7b14b219660", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2070328ed080872cbe0ef7b14b219660", + "x-ms-request-id": "edce1a6a-5e3b-400d-9e2e-350b855b593a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a3b98e18d4c38989d48a5cb1d018f2ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a3b98e18d4c38989d48a5cb1d018f2ca", + "x-ms-request-id": "86fc4b7a-b36c-4fc9-bbee-725efc8a38e9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "95175ce64ffa7b7f42146a30aa445983", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "95175ce64ffa7b7f42146a30aa445983", + "x-ms-request-id": "36ec6c7f-7855-44b3-b57e-8597e95f4938" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8e5f5ae46b8ab949a9e64bf5747bb7a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8e5f5ae46b8ab949a9e64bf5747bb7a6", + "x-ms-request-id": "be010f50-7bb4-437d-9a65-2f719f64efa2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", + "x-ms-request-id": "85e0212f-a107-416c-a682-e142c833e550" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "75ccd83164b87b40135deb13048907c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "75ccd83164b87b40135deb13048907c6", + "x-ms-request-id": "ccbe23df-6f1c-4248-8037-1616e6815673" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7e13c35d6a7ae379f4977f4d0a9a4e50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7e13c35d6a7ae379f4977f4d0a9a4e50", + "x-ms-request-id": "dbd7dcc2-48b0-483f-8a96-2fb6c0c4b2af" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9bc3bb0742afb8eeec4fdbac1552c485", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9bc3bb0742afb8eeec4fdbac1552c485", + "x-ms-request-id": "43006319-c42f-49a0-a6bb-d94868bed2ce" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a6519a356044c7155fe88020e5f27078", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a6519a356044c7155fe88020e5f27078", + "x-ms-request-id": "9476941d-d793-4bf5-b80c-23a5857f8cc7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "480c9b0f6cc51b17d55b912a8ecdcea2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "480c9b0f6cc51b17d55b912a8ecdcea2", + "x-ms-correlation-request-id": "73f19bb8-8142-4245-95c3-5974dd53d965", + "x-ms-request-id": "6ff0bfa4-192e-4e64-9bf1-6be59993b1c4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "name": "MyTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "type": "Trigger", + "runtimeState": "Stopped" + }, + "etag": "0900c808-0000-0100-0000-5f3f2c600000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1334339896" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json new file mode 100644 index 0000000000000..fbda186ea7d82 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json @@ -0,0 +1,472 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "33", + "Content-Type": "application/json", + "traceparent": "00-a3808aa2d5724e49a2c53da59b941dd4-9441d2d0877c7f41-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a3d7341deada658f06c9e27495c92b32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": "Trigger" + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "364", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a3d7341deada658f06c9e27495c92b32", + "x-ms-request-id": "bb3d230a-7a10-46ef-acf9-0506a1b90aea" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "recordId": 202195, + "state": "Creating", + "created": "2020-08-21T02:08:01.43Z", + "changed": "2020-08-21T02:08:01.43Z", + "type": "Trigger", + "name": "MyTrigger", + "operationId": "11372813-fce6-4c10-b1bd-62dc79a036a3" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "34571b62c09c168577ff7f5af4769ae1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "34571b62c09c168577ff7f5af4769ae1", + "x-ms-request-id": "7a34f75d-5089-4472-88ae-dc69d7157dac" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6c9fcf7dbbc12dcda02c3f7e253ed013", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6c9fcf7dbbc12dcda02c3f7e253ed013", + "x-ms-request-id": "8c0e8ac0-2c38-48a1-963d-9a22cd6442d8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7911871bf6715996de5b7ef57039b7ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7911871bf6715996de5b7ef57039b7ed", + "x-ms-request-id": "26c39704-d931-4485-a856-4cb02655f14a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c5d3e4c14153a79a4d2993708106f138", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c5d3e4c14153a79a4d2993708106f138", + "x-ms-request-id": "f8a79ae9-333f-48e0-b347-f077b28229cf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6c3f6b2e2165866f38468d653dd8bd67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6c3f6b2e2165866f38468d653dd8bd67", + "x-ms-request-id": "353bc1ad-69e3-4bf9-8472-a33ad14189a6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "40bc51740b6ad9c0ed6a2b486326d8d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "40bc51740b6ad9c0ed6a2b486326d8d7", + "x-ms-request-id": "682e5486-c185-43fc-9f95-e8ce0f8a4f59" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "04c6456a4af9a087754c8c0cb4356975", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "04c6456a4af9a087754c8c0cb4356975", + "x-ms-request-id": "bb0296b8-a7f8-4f01-a1b8-7f1b9b868556" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2ffb2c6cb04a23cdab657ffbf5262312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2ffb2c6cb04a23cdab657ffbf5262312", + "x-ms-request-id": "ab08b207-08f5-405a-96c4-88a51759848d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f7fab66eb8112a6ec91ccb1e7fb325b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f7fab66eb8112a6ec91ccb1e7fb325b7", + "x-ms-request-id": "34b72549-6f17-4910-8363-8d422df6a316" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "36dcb600a82bba8d77a35893ca8caa4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "36dcb600a82bba8d77a35893ca8caa4e", + "x-ms-request-id": "8530e2ba-c219-4107-8124-dc91eae8403c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fd9e7a28713ab364bed0662de4afa4f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "fd9e7a28713ab364bed0662de4afa4f8", + "x-ms-correlation-request-id": "a1cbbe68-661e-426c-82b0-c7512817efa0", + "x-ms-request-id": "2ea2cebb-4f47-4e1b-9b5f-a1750d720233", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "name": "MyTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "type": "Trigger", + "runtimeState": "Stopped" + }, + "etag": "0900ed08-0000-0100-0000-5f3f2c840000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1383773590" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json new file mode 100644 index 0000000000000..38a7b2cff6326 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json @@ -0,0 +1,329 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8a673b0bd028004f9fafb9afb20ed357-fa88111b43726f45-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2cf56f1296727c20368b90a921519b6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "351", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2cf56f1296727c20368b90a921519b6f", + "x-ms-request-id": "28f7b771-d264-4eca-9efa-5d2e36bcf785" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Trigger", + "name": "MyTrigger", + "operationId": "49169286-680b-4f6e-b1a7-697b6fffd577" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "66cb0bd79ca58d2311420e7c1bf4410d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "66cb0bd79ca58d2311420e7c1bf4410d", + "x-ms-request-id": "6a8977d2-c830-45de-9329-82e6d7aa0a2d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e7e6add0c0445d615f912b9b9ea69d37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e7e6add0c0445d615f912b9b9ea69d37", + "x-ms-request-id": "7d62a6fb-4d2f-4668-aaa7-a37ed02c40fc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", + "x-ms-request-id": "378bb63b-37ab-4329-b6bb-240c05def53f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "31a9eb958c191777aa6e06137088ef6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "31a9eb958c191777aa6e06137088ef6a", + "x-ms-request-id": "746fb9c6-43ff-49a6-bdcc-9e914012ee03" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4664d7a52b229b86e3ea69713b66b7cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4664d7a52b229b86e3ea69713b66b7cd", + "x-ms-request-id": "11d22c56-5366-4b81-a92b-2281fd82fdeb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b2051f496bfd8b1d5dba6b182db68bf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b2051f496bfd8b1d5dba6b182db68bf5", + "x-ms-request-id": "85e782fc-092a-47dc-8095-6bb7e9231705" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ce5519e2012d6ae9640d4e2f2205db44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ce5519e2012d6ae9640d4e2f2205db44", + "x-ms-request-id": "79be900d-f0f7-4a43-b43b-313fb2c418ff" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "51ca39b63c83396dbad9e868bf6e6d2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 02:07:52 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "51ca39b63c83396dbad9e868bf6e6d2c", + "x-ms-request-id": "ccd68ae6-5ac3-4e98-8aa7-d111a8f3ee1b" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "153231631" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json new file mode 100644 index 0000000000000..cf657e1b43174 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json @@ -0,0 +1,477 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3995a9166ae67b4a8d51fc425e1ec483-352c024cd6f3584b-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f307d265ede81ef426094b5561a18ef1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "351", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f307d265ede81ef426094b5561a18ef1", + "x-ms-request-id": "e3ccc139-1885-44fe-aa6c-97ae83113845" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Trigger", + "name": "MyTrigger", + "operationId": "d8bb8eab-757f-4c0a-af26-9d1dce3dd935" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "05b441f9ede7956492636c0b7652f1bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "05b441f9ede7956492636c0b7652f1bd", + "x-ms-request-id": "2e2c5436-f42c-44bb-bc78-761678b1c5de" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b0e9ffbd531a950978312932691671f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b0e9ffbd531a950978312932691671f2", + "x-ms-request-id": "b49db10e-68c0-4b80-a392-c59ce49ffcc6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1f5bd22589ec840965eb9e34624e6077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1f5bd22589ec840965eb9e34624e6077", + "x-ms-request-id": "3eccd83c-a81e-4c14-ba66-e8931d105388" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ad20c6c4334aa55f381e8cb6c4322c7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ad20c6c4334aa55f381e8cb6c4322c7c", + "x-ms-request-id": "d27a5aac-1843-4abe-8ba4-5213f0148963" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", + "x-ms-request-id": "c0d02fbf-80cf-4737-a399-2804563ca2fc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a26db2d0c3f6f2a873b6e7cdfc52c033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a26db2d0c3f6f2a873b6e7cdfc52c033", + "x-ms-request-id": "f2bd9469-2d33-4511-929b-45871bdbb82d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e84122bfbc68f280f6ecb7e4e830ef62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e84122bfbc68f280f6ecb7e4e830ef62", + "x-ms-request-id": "0aedbcb1-ce4c-42c1-bc86-555e2d8c2c44" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "11e663eb8ac42f85d1f33140ea0237a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "11e663eb8ac42f85d1f33140ea0237a2", + "x-ms-request-id": "08f03d34-2152-40c9-97ef-f7f44814d170" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "936e17a54a9314c1327aab0a0bc30a42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "936e17a54a9314c1327aab0a0bc30a42", + "x-ms-request-id": "6cf8ab45-7b3d-4292-9a91-241721876fc2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "99e184c6ae6c356e9c1217748b3f08f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "99e184c6ae6c356e9c1217748b3f08f3", + "x-ms-request-id": "a6d99197-4dc4-43cc-9435-70eef1c45d21" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d03f15b55cc1a1cea1d2df49de7b230d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d03f15b55cc1a1cea1d2df49de7b230d", + "x-ms-request-id": "5eb92414-a3e2-42d9-84b2-f732e23f24a9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "657aeee99d20f636a839f781324d88f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Fri, 21 Aug 2020 02:08:26 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "657aeee99d20f636a839f781324d88f2", + "x-ms-request-id": "69c3e4f5-40f8-497c-8357-1f7080688251" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1355740848" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json new file mode 100644 index 0000000000000..72a4ba5a8b02b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json @@ -0,0 +1,316 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "73a38e2fe68f17ddca039efee4a24528", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "2052", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:42 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "73a38e2fe68f17ddca039efee4a24528", + "x-ms-request-id": "1ca40f9b-bbfb-4841-b28e-a43d88916532" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000200-0000-0100-0000-5f07d15b0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000600-0000-0100-0000-5f07d2bb0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "0000e600-0000-0100-0000-5f07d4c80000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", + "typeProperties": { + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "name": "MyTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "0900ce08-0000-0100-0000-5f3f2c640000", + "properties": { + "type": "Trigger", + "runtimeState": "Stopped" + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger%201?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-26df9c537650e34088df07cca098479d-326ca6287a797e4d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6a2070a865912684dab2e9db0746e2a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "495", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "6a2070a865912684dab2e9db0746e2a4", + "x-ms-correlation-request-id": "ba0aa5e7-59b0-4eca-8ae3-d7dddc96905a", + "x-ms-request-id": "b2b98451-efe9-4ee0-adfa-38d0e550697e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } + }, + "etag": "00000200-0000-0100-0000-5f07d15b0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/dongwwaTrigger2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1998112a23d2394c9ef81ef57f6891cb-d18dff3b19cad449-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "84b5abec48d2cddaf75a682005263bac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "560", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "84b5abec48d2cddaf75a682005263bac", + "x-ms-correlation-request-id": "d04d2dba-17b8-44a6-9d09-d7d6d6bb5872", + "x-ms-request-id": "2a162349-2221-4229-b5bc-c565501c8919", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } + }, + "etag": "00000600-0000-0100-0000-5f07d2bb0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-253db58315179e4392c20ff163122bac-5efad028e8e3124a-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c3a015e698e3ca50097c98ddfc010f83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "647", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "c3a015e698e3ca50097c98ddfc010f83", + "x-ms-correlation-request-id": "16f71ddb-e1d2-4622-a233-174f32f8d5e3", + "x-ms-request-id": "f2129b6e-64de-4b86-a41c-714876417bf2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", + "typeProperties": { + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } + }, + "etag": "0000e600-0000-0100-0000-5f07d4c80000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3700bd4520caf845ba0368072e03d2af-f4b665f463379042-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3811f921c1ed605596527336fc6320b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:07:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "3811f921c1ed605596527336fc6320b3", + "x-ms-correlation-request-id": "d5706be9-50fa-4a31-95ff-94736bc83a4d", + "x-ms-request-id": "0c7c23b2-7600-4d8c-b8b5-11e683f9ce36", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "name": "MyTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "type": "Trigger", + "runtimeState": "Stopped" + }, + "etag": "0900ce08-0000-0100-0000-5f3f2c640000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "400292028" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json new file mode 100644 index 0000000000000..3e175a6a638eb --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json @@ -0,0 +1,316 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a4eb13e827d1a729e656409d1478d4de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "2052", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:13 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a4eb13e827d1a729e656409d1478d4de", + "x-ms-request-id": "c429709f-d283-449d-adea-297e0bb22892" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000200-0000-0100-0000-5f07d15b0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000600-0000-0100-0000-5f07d2bb0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "0000e600-0000-0100-0000-5f07d4c80000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", + "typeProperties": { + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "name": "MyTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "0900ed08-0000-0100-0000-5f3f2c840000", + "properties": { + "type": "Trigger", + "runtimeState": "Stopped" + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger%201?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-a605bcb8b29cb14fad1476e5cd61277d-6f10e41ab8eb2f4f-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2f3942e86ee846bb014ad74c0701d99c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "495", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "2f3942e86ee846bb014ad74c0701d99c", + "x-ms-correlation-request-id": "439ff538-53f9-4a62-be65-7e7be7b39bc2", + "x-ms-request-id": "80c1eee7-b94a-4dc1-b846-ca28b8d047e6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } + }, + "etag": "00000200-0000-0100-0000-5f07d15b0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/dongwwaTrigger2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-89554baaf6e61441b41d05548aab4e33-e5734b0a1d748a45-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "21b738ca8f9f99a0a29e069dc70e4fc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "560", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "21b738ca8f9f99a0a29e069dc70e4fc1", + "x-ms-correlation-request-id": "71f8068e-5c3e-4feb-9319-9ded5007f22d", + "x-ms-request-id": "72425cf3-9f23-4ab5-ad6b-f8fedda34a02", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } + }, + "etag": "00000600-0000-0100-0000-5f07d2bb0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger3?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-459146c635eb024fae679a8a1ec0d8c9-df346e0af19ea444-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6452f0db036c79c158a4a2874fdca0e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "647", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "6452f0db036c79c158a4a2874fdca0e5", + "x-ms-correlation-request-id": "c0b57317-78bf-4137-a2e8-520585b45182", + "x-ms-request-id": "d04d317a-55bf-4c22-acb4-28e712038c13", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", + "typeProperties": { + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } + }, + "etag": "0000e600-0000-0100-0000-5f07d4c80000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-391914cae7bba6498da46e213ae144c0-bdfb8503833ab54f-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "dbd2a47db2c0593fa1a08c4a671e7ff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 21 Aug 2020 02:08:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "dbd2a47db2c0593fa1a08c4a671e7ff3", + "x-ms-correlation-request-id": "45845041-cf5c-4686-b7cc-75f01c61171c", + "x-ms-request-id": "ce2b66ad-10ed-42c3-81fa-8c347154f0d8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", + "name": "MyTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "properties": { + "type": "Trigger", + "runtimeState": "Stopped" + }, + "etag": "0900ed08-0000-0100-0000-5f3f2c840000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "176684923" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/TriggerClientLiveTests.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/TriggerClientLiveTests.cs new file mode 100644 index 0000000000000..11fe9e7b766b4 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/TriggerClientLiveTests.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading.Tasks; +using Azure.Analytics.Synapse.Artifacts.Models; +using NUnit.Framework; + +namespace Azure.Analytics.Synapse.Tests.Artifacts +{ + /// + /// The suite of tests for the class. + /// + /// + /// These tests have a dependency on live Azure services and may incur costs for the associated + /// Azure subscription. + /// + public class TriggerClientLiveTests : ArtifactsClientTestBase + { + /// + /// Initializes a new instance of the class. + /// + /// A flag used by the Azure Core Test Framework to differentiate between tests for asynchronous and synchronous methods. + public TriggerClientLiveTests(bool isAsync) : base(isAsync) + { + } + + [Test] + public async Task TestGetTrigger() + { + await foreach (var expectedTrigger in TriggerClient.GetTriggersByWorkspaceAsync()) + { + TriggerResource actualTrigger = await TriggerClient.GetTriggerAsync(expectedTrigger.Name); + Assert.AreEqual(expectedTrigger.Name, actualTrigger.Name); + Assert.AreEqual(expectedTrigger.Id, actualTrigger.Id); + } + } + + [Test] + public async Task TestCreateTrigger() + { + var operation = await TriggerClient.StartCreateOrUpdateTriggerAsync("MyTrigger", new TriggerResource(new Trigger())); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual("MyTrigger", operation.Value.Name); + } + + [Test] + public async Task TestDeleteTrigger() + { + var operation = await TriggerClient.StartDeleteTriggerAsync("MyTrigger"); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual(200, operation.Value.Status); + } + } +} From c2cd20d60e036e2f176b908faaddbe688cc3508b Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Wed, 26 Aug 2020 10:37:44 +0800 Subject: [PATCH 2/9] solve LRO and add test cases --- .../src/Generated/DataFlowClient.cs | 188 +- ...DataFlowCreateOrUpdateDataFlowOperation.cs | 66 + .../DataFlowDeleteDataFlowOperation.cs | 62 + .../src/Generated/DataFlowRestClient.cs | 22 +- .../src/Generated/DatasetClient.cs | 188 +- .../DatasetCreateOrUpdateDatasetOperation.cs | 66 + .../DatasetDeleteDatasetOperation.cs | 62 + .../src/Generated/DatasetRestClient.cs | 22 +- .../src/Generated/PipelineClient.cs | 102 +- .../PipelineCreatePipelineRunOperation.cs | 66 - .../src/Generated/PipelineRestClient.cs | 20 +- .../src/autorest.md | 2 +- .../tests/ArtifactsClientTestBase.cs | 24 + .../tests/DataFlowClientLiveTests.cs | 60 + .../tests/DatasetClientLiveTests.cs | 61 + .../TestCreateDataFlow.json | 397 +++ .../TestCreateDataFlowAsync.json | 841 +++++ .../TestDeleteDataFlow.json | 588 ++++ .../TestDeleteDataFlowAsync.json | 514 +++ .../TestGetDataFlow.json | 88 + .../TestGetDataFlowAsync.json | 88 + .../TestCreateDataset.json | 368 +++ .../TestCreateDatasetAsync.json | 886 +++++ .../TestDeleteDataset.json | 477 +++ .../TestDeleteDatasetAsync.json | 551 ++++ .../TestGetDataset.json | 96 + .../TestGetDatasetAsync.json | 96 + .../TestCreateLinkedService.json | 295 +- .../TestCreateLinkedServiceAsync.json | 727 +++- .../TestDeleteLinkedService.json | 344 +- .../TestDeleteLinkedServiceAsync.json | 288 +- .../TestGetLinkedService.json | 114 +- .../TestGetLinkedServiceAsync.json | 114 +- .../TestCreateNotebook.json | 438 ++- .../TestCreateNotebookAsync.json | 233 +- .../TestDeleteNotebook.json | 440 ++- .../TestDeleteNotebookAsync.json | 2911 +---------------- .../TestGetNotebook.json | 148 +- .../TestGetNotebookAsync.json | 96 +- .../TestCreatePipeline.json | 138 +- .../TestCreatePipelineAsync.json | 455 +-- .../TestDeletePipeline.json | 702 +++- .../TestDeletePipelineAsync.json | 641 +++- .../TestGetPipeline.json | 124 +- .../TestGetPipelineAsync.json | 124 +- .../TestCreateTrigger.json | 353 +- .../TestCreateTriggerAsync.json | 306 +- .../TestDeleteTrigger.json | 235 +- .../TestDeleteTriggerAsync.json | 333 +- .../TestGetTrigger.json | 60 +- .../TestGetTriggerAsync.json | 60 +- .../tests/samples/DataFlowSampleSnippets.cs | 72 + .../tests/samples/DatasetSampleSnippets.cs | 72 + .../samples/LinkedServiceSampleSnippets.cs | 72 + .../tests/samples/NotebookSampleSnippets.cs | 7 +- .../tests/samples/PipelineSampleSnippets.cs | 72 + .../tests/samples/TriggerSampleSnippets.cs | 72 + 57 files changed, 10110 insertions(+), 5937 deletions(-) create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowCreateOrUpdateDataFlowOperation.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDeleteDataFlowOperation.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetCreateOrUpdateDatasetOperation.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetDeleteDatasetOperation.cs delete mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineCreatePipelineRunOperation.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DataFlowClientLiveTests.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DatasetClientLiveTests.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs create mode 100644 sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs index 62c4940144768..d6b1c3075f50b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs @@ -37,46 +37,6 @@ internal DataFlowClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeli _pipeline = pipeline; } - /// Creates or updates a data flow. - /// The data flow name. - /// Data flow resource definition. - /// ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. - /// The cancellation token to use. - public virtual async Task> CreateOrUpdateDataFlowAsync(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DataFlowClient.CreateOrUpdateDataFlow"); - scope.Start(); - try - { - return await RestClient.CreateOrUpdateDataFlowAsync(dataFlowName, dataFlow, ifMatch, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Creates or updates a data flow. - /// The data flow name. - /// Data flow resource definition. - /// ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. - /// The cancellation token to use. - public virtual Response CreateOrUpdateDataFlow(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DataFlowClient.CreateOrUpdateDataFlow"); - scope.Start(); - try - { - return RestClient.CreateOrUpdateDataFlow(dataFlowName, dataFlow, ifMatch, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - /// Gets a data flow. /// The data flow name. /// ETag of the data flow entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. @@ -115,42 +75,6 @@ public virtual Response GetDataFlow(string dataFlowName, strin } } - /// Deletes a data flow. - /// The data flow name. - /// The cancellation token to use. - public virtual async Task DeleteDataFlowAsync(string dataFlowName, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DataFlowClient.DeleteDataFlow"); - scope.Start(); - try - { - return await RestClient.DeleteDataFlowAsync(dataFlowName, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Deletes a data flow. - /// The data flow name. - /// The cancellation token to use. - public virtual Response DeleteDataFlow(string dataFlowName, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DataFlowClient.DeleteDataFlow"); - scope.Start(); - try - { - return RestClient.DeleteDataFlow(dataFlowName, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - /// Lists data flows. /// The cancellation token to use. public virtual AsyncPageable GetDataFlowsByWorkspaceAsync(CancellationToken cancellationToken = default) @@ -224,5 +148,117 @@ Page NextPageFunc(string nextLink, int? pageSizeHint) } return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); } + + /// Creates or updates a data flow. + /// The data flow name. + /// Data flow resource definition. + /// ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public virtual async Task StartCreateOrUpdateDataFlowAsync(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (dataFlowName == null) + { + throw new ArgumentNullException(nameof(dataFlowName)); + } + if (dataFlow == null) + { + throw new ArgumentNullException(nameof(dataFlow)); + } + + using var scope = _clientDiagnostics.CreateScope("DataFlowClient.StartCreateOrUpdateDataFlow"); + scope.Start(); + try + { + var originalResponse = await RestClient.CreateOrUpdateDataFlowAsync(dataFlowName, dataFlow, ifMatch, cancellationToken).ConfigureAwait(false); + return new DataFlowCreateOrUpdateDataFlowOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateDataFlowRequest(dataFlowName, dataFlow, ifMatch).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Creates or updates a data flow. + /// The data flow name. + /// Data flow resource definition. + /// ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public virtual DataFlowCreateOrUpdateDataFlowOperation StartCreateOrUpdateDataFlow(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (dataFlowName == null) + { + throw new ArgumentNullException(nameof(dataFlowName)); + } + if (dataFlow == null) + { + throw new ArgumentNullException(nameof(dataFlow)); + } + + using var scope = _clientDiagnostics.CreateScope("DataFlowClient.StartCreateOrUpdateDataFlow"); + scope.Start(); + try + { + var originalResponse = RestClient.CreateOrUpdateDataFlow(dataFlowName, dataFlow, ifMatch, cancellationToken); + return new DataFlowCreateOrUpdateDataFlowOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateDataFlowRequest(dataFlowName, dataFlow, ifMatch).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Deletes a data flow. + /// The data flow name. + /// The cancellation token to use. + /// is null. + public virtual async Task StartDeleteDataFlowAsync(string dataFlowName, CancellationToken cancellationToken = default) + { + if (dataFlowName == null) + { + throw new ArgumentNullException(nameof(dataFlowName)); + } + + using var scope = _clientDiagnostics.CreateScope("DataFlowClient.StartDeleteDataFlow"); + scope.Start(); + try + { + var originalResponse = await RestClient.DeleteDataFlowAsync(dataFlowName, cancellationToken).ConfigureAwait(false); + return new DataFlowDeleteDataFlowOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteDataFlowRequest(dataFlowName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Deletes a data flow. + /// The data flow name. + /// The cancellation token to use. + /// is null. + public virtual DataFlowDeleteDataFlowOperation StartDeleteDataFlow(string dataFlowName, CancellationToken cancellationToken = default) + { + if (dataFlowName == null) + { + throw new ArgumentNullException(nameof(dataFlowName)); + } + + using var scope = _clientDiagnostics.CreateScope("DataFlowClient.StartDeleteDataFlow"); + scope.Start(); + try + { + var originalResponse = RestClient.DeleteDataFlow(dataFlowName, cancellationToken); + return new DataFlowDeleteDataFlowOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteDataFlowRequest(dataFlowName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowCreateOrUpdateDataFlowOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowCreateOrUpdateDataFlowOperation.cs new file mode 100644 index 0000000000000..91b1866e7642d --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowCreateOrUpdateDataFlowOperation.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Creates or updates a data flow. + public partial class DataFlowCreateOrUpdateDataFlowOperation : Operation, IOperationSource + { + private readonly ArmOperationHelpers _operation; + internal DataFlowCreateOrUpdateDataFlowOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new ArmOperationHelpers(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "DataFlowCreateOrUpdateDataFlowOperation"); + } + /// + public override string Id => _operation.Id; + + /// + public override DataFlowResource Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + DataFlowResource IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return DataFlowResource.DeserializeDataFlowResource(document.RootElement); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return DataFlowResource.DeserializeDataFlowResource(document.RootElement); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDeleteDataFlowOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDeleteDataFlowOperation.cs new file mode 100644 index 0000000000000..63498eb91427a --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDeleteDataFlowOperation.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Deletes a data flow. + public partial class DataFlowDeleteDataFlowOperation : Operation, IOperationSource + { + private readonly ArmOperationHelpers _operation; + internal DataFlowDeleteDataFlowOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new ArmOperationHelpers(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "DataFlowDeleteDataFlowOperation"); + } + /// + public override string Id => _operation.Id; + + /// + public override Response Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + Response IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + return response; + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + return await new ValueTask(response).ConfigureAwait(false); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs index 45a4961612a82..728d7db224505 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs @@ -74,7 +74,7 @@ internal HttpMessage CreateCreateOrUpdateDataFlowRequest(string dataFlowName, Da /// ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. /// The cancellation token to use. /// or is null. - public async Task> CreateOrUpdateDataFlowAsync(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) + public async Task CreateOrUpdateDataFlowAsync(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) { if (dataFlowName == null) { @@ -90,12 +90,8 @@ public async Task> CreateOrUpdateDataFlowAsync(string switch (message.Response.Status) { case 200: - { - DataFlowResource value = default; - using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = DataFlowResource.DeserializeDataFlowResource(document.RootElement); - return Response.FromValue(value, message.Response); - } + case 202: + return message.Response; default: throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); } @@ -107,7 +103,7 @@ public async Task> CreateOrUpdateDataFlowAsync(string /// ETag of the data flow entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. /// The cancellation token to use. /// or is null. - public Response CreateOrUpdateDataFlow(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) + public Response CreateOrUpdateDataFlow(string dataFlowName, DataFlowResource dataFlow, string ifMatch = null, CancellationToken cancellationToken = default) { if (dataFlowName == null) { @@ -123,12 +119,8 @@ public Response CreateOrUpdateDataFlow(string dataFlowName, Da switch (message.Response.Status) { case 200: - { - DataFlowResource value = default; - using var document = JsonDocument.Parse(message.Response.ContentStream); - value = DataFlowResource.DeserializeDataFlowResource(document.RootElement); - return Response.FromValue(value, message.Response); - } + case 202: + return message.Response; default: throw _clientDiagnostics.CreateRequestFailedException(message.Response); } @@ -238,6 +230,7 @@ public async Task DeleteDataFlowAsync(string dataFlowName, Cancellatio switch (message.Response.Status) { case 200: + case 202: case 204: return message.Response; default: @@ -261,6 +254,7 @@ public Response DeleteDataFlow(string dataFlowName, CancellationToken cancellati switch (message.Response.Status) { case 200: + case 202: case 204: return message.Response; default: diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs index b95014a09a4bc..908433b521232 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs @@ -37,46 +37,6 @@ internal DatasetClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipelin _pipeline = pipeline; } - /// Creates or updates a dataset. - /// The dataset name. - /// Dataset resource definition. - /// ETag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. - /// The cancellation token to use. - public virtual async Task> CreateOrUpdateDatasetAsync(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DatasetClient.CreateOrUpdateDataset"); - scope.Start(); - try - { - return await RestClient.CreateOrUpdateDatasetAsync(datasetName, dataset, ifMatch, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Creates or updates a dataset. - /// The dataset name. - /// Dataset resource definition. - /// ETag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. - /// The cancellation token to use. - public virtual Response CreateOrUpdateDataset(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DatasetClient.CreateOrUpdateDataset"); - scope.Start(); - try - { - return RestClient.CreateOrUpdateDataset(datasetName, dataset, ifMatch, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - /// Gets a dataset. /// The dataset name. /// ETag of the dataset entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. @@ -115,42 +75,6 @@ public virtual Response GetDataset(string datasetName, string i } } - /// Deletes a dataset. - /// The dataset name. - /// The cancellation token to use. - public virtual async Task DeleteDatasetAsync(string datasetName, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DatasetClient.DeleteDataset"); - scope.Start(); - try - { - return await RestClient.DeleteDatasetAsync(datasetName, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Deletes a dataset. - /// The dataset name. - /// The cancellation token to use. - public virtual Response DeleteDataset(string datasetName, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("DatasetClient.DeleteDataset"); - scope.Start(); - try - { - return RestClient.DeleteDataset(datasetName, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - /// Lists datasets. /// The cancellation token to use. public virtual AsyncPageable GetDatasetsByWorkspaceAsync(CancellationToken cancellationToken = default) @@ -224,5 +148,117 @@ Page NextPageFunc(string nextLink, int? pageSizeHint) } return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); } + + /// Creates or updates a dataset. + /// The dataset name. + /// Dataset resource definition. + /// ETag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public virtual async Task StartCreateOrUpdateDatasetAsync(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (datasetName == null) + { + throw new ArgumentNullException(nameof(datasetName)); + } + if (dataset == null) + { + throw new ArgumentNullException(nameof(dataset)); + } + + using var scope = _clientDiagnostics.CreateScope("DatasetClient.StartCreateOrUpdateDataset"); + scope.Start(); + try + { + var originalResponse = await RestClient.CreateOrUpdateDatasetAsync(datasetName, dataset, ifMatch, cancellationToken).ConfigureAwait(false); + return new DatasetCreateOrUpdateDatasetOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateDatasetRequest(datasetName, dataset, ifMatch).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Creates or updates a dataset. + /// The dataset name. + /// Dataset resource definition. + /// ETag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public virtual DatasetCreateOrUpdateDatasetOperation StartCreateOrUpdateDataset(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (datasetName == null) + { + throw new ArgumentNullException(nameof(datasetName)); + } + if (dataset == null) + { + throw new ArgumentNullException(nameof(dataset)); + } + + using var scope = _clientDiagnostics.CreateScope("DatasetClient.StartCreateOrUpdateDataset"); + scope.Start(); + try + { + var originalResponse = RestClient.CreateOrUpdateDataset(datasetName, dataset, ifMatch, cancellationToken); + return new DatasetCreateOrUpdateDatasetOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateDatasetRequest(datasetName, dataset, ifMatch).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Deletes a dataset. + /// The dataset name. + /// The cancellation token to use. + /// is null. + public virtual async Task StartDeleteDatasetAsync(string datasetName, CancellationToken cancellationToken = default) + { + if (datasetName == null) + { + throw new ArgumentNullException(nameof(datasetName)); + } + + using var scope = _clientDiagnostics.CreateScope("DatasetClient.StartDeleteDataset"); + scope.Start(); + try + { + var originalResponse = await RestClient.DeleteDatasetAsync(datasetName, cancellationToken).ConfigureAwait(false); + return new DatasetDeleteDatasetOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteDatasetRequest(datasetName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Deletes a dataset. + /// The dataset name. + /// The cancellation token to use. + /// is null. + public virtual DatasetDeleteDatasetOperation StartDeleteDataset(string datasetName, CancellationToken cancellationToken = default) + { + if (datasetName == null) + { + throw new ArgumentNullException(nameof(datasetName)); + } + + using var scope = _clientDiagnostics.CreateScope("DatasetClient.StartDeleteDataset"); + scope.Start(); + try + { + var originalResponse = RestClient.DeleteDataset(datasetName, cancellationToken); + return new DatasetDeleteDatasetOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteDatasetRequest(datasetName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetCreateOrUpdateDatasetOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetCreateOrUpdateDatasetOperation.cs new file mode 100644 index 0000000000000..f98dbdcd0b5b1 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetCreateOrUpdateDatasetOperation.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Creates or updates a dataset. + public partial class DatasetCreateOrUpdateDatasetOperation : Operation, IOperationSource + { + private readonly ArmOperationHelpers _operation; + internal DatasetCreateOrUpdateDatasetOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new ArmOperationHelpers(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "DatasetCreateOrUpdateDatasetOperation"); + } + /// + public override string Id => _operation.Id; + + /// + public override DatasetResource Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + DatasetResource IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return DatasetResource.DeserializeDatasetResource(document.RootElement); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return DatasetResource.DeserializeDatasetResource(document.RootElement); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetDeleteDatasetOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetDeleteDatasetOperation.cs new file mode 100644 index 0000000000000..a9a43a84d2e27 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetDeleteDatasetOperation.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Deletes a dataset. + public partial class DatasetDeleteDatasetOperation : Operation, IOperationSource + { + private readonly ArmOperationHelpers _operation; + internal DatasetDeleteDatasetOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new ArmOperationHelpers(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "DatasetDeleteDatasetOperation"); + } + /// + public override string Id => _operation.Id; + + /// + public override Response Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + Response IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + return response; + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + return await new ValueTask(response).ConfigureAwait(false); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs index 14f5d0b82aa45..86eaa8fbb8b41 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs @@ -127,7 +127,7 @@ internal HttpMessage CreateCreateOrUpdateDatasetRequest(string datasetName, Data /// ETag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. /// The cancellation token to use. /// or is null. - public async Task> CreateOrUpdateDatasetAsync(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) + public async Task CreateOrUpdateDatasetAsync(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) { if (datasetName == null) { @@ -143,12 +143,8 @@ public async Task> CreateOrUpdateDatasetAsync(string d switch (message.Response.Status) { case 200: - { - DatasetResource value = default; - using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = DatasetResource.DeserializeDatasetResource(document.RootElement); - return Response.FromValue(value, message.Response); - } + case 202: + return message.Response; default: throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); } @@ -160,7 +156,7 @@ public async Task> CreateOrUpdateDatasetAsync(string d /// ETag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. /// The cancellation token to use. /// or is null. - public Response CreateOrUpdateDataset(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) + public Response CreateOrUpdateDataset(string datasetName, DatasetResource dataset, string ifMatch = null, CancellationToken cancellationToken = default) { if (datasetName == null) { @@ -176,12 +172,8 @@ public Response CreateOrUpdateDataset(string datasetName, Datas switch (message.Response.Status) { case 200: - { - DatasetResource value = default; - using var document = JsonDocument.Parse(message.Response.ContentStream); - value = DatasetResource.DeserializeDatasetResource(document.RootElement); - return Response.FromValue(value, message.Response); - } + case 202: + return message.Response; default: throw _clientDiagnostics.CreateRequestFailedException(message.Response); } @@ -295,6 +287,7 @@ public async Task DeleteDatasetAsync(string datasetName, CancellationT switch (message.Response.Status) { case 200: + case 202: case 204: return message.Response; default: @@ -318,6 +311,7 @@ public Response DeleteDataset(string datasetName, CancellationToken cancellation switch (message.Response.Status) { case 200: + case 202: case 204: return message.Response; default: diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs index 51f74b94dffa7..52a2b381af988 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs @@ -76,6 +76,50 @@ public virtual Response GetPipeline(string pipelineName, strin } } + /// Creates a run of a pipeline. + /// The pipeline name. + /// The pipeline run identifier. If run ID is specified the parameters of the specified run will be used to create a new run. + /// Recovery mode flag. If recovery mode is set to true, the specified referenced pipeline run and the new run will be grouped under the same groupId. + /// In recovery mode, the rerun will start from this activity. If not specified, all activities will run. + /// Parameters of the pipeline run. These parameters will be used only if the runId is not specified. + /// The cancellation token to use. + public virtual async Task> CreatePipelineRunAsync(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PipelineClient.CreatePipelineRun"); + scope.Start(); + try + { + return await RestClient.CreatePipelineRunAsync(pipelineName, referencePipelineRunId, isRecovery, startActivityName, parameters, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Creates a run of a pipeline. + /// The pipeline name. + /// The pipeline run identifier. If run ID is specified the parameters of the specified run will be used to create a new run. + /// Recovery mode flag. If recovery mode is set to true, the specified referenced pipeline run and the new run will be grouped under the same groupId. + /// In recovery mode, the rerun will start from this activity. If not specified, all activities will run. + /// Parameters of the pipeline run. These parameters will be used only if the runId is not specified. + /// The cancellation token to use. + public virtual Response CreatePipelineRun(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PipelineClient.CreatePipelineRun"); + scope.Start(); + try + { + return RestClient.CreatePipelineRun(pipelineName, referencePipelineRunId, isRecovery, startActivityName, parameters, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + /// Lists pipelines. /// The cancellation token to use. public virtual AsyncPageable GetPipelinesByWorkspaceAsync(CancellationToken cancellationToken = default) @@ -261,63 +305,5 @@ public virtual PipelineDeletePipelineOperation StartDeletePipeline(string pipeli throw; } } - - /// Creates a run of a pipeline. - /// The pipeline name. - /// The pipeline run identifier. If run ID is specified the parameters of the specified run will be used to create a new run. - /// Recovery mode flag. If recovery mode is set to true, the specified referenced pipeline run and the new run will be grouped under the same groupId. - /// In recovery mode, the rerun will start from this activity. If not specified, all activities will run. - /// Parameters of the pipeline run. These parameters will be used only if the runId is not specified. - /// The cancellation token to use. - /// is null. - public virtual async Task StartCreatePipelineRunAsync(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) - { - if (pipelineName == null) - { - throw new ArgumentNullException(nameof(pipelineName)); - } - - using var scope = _clientDiagnostics.CreateScope("PipelineClient.StartCreatePipelineRun"); - scope.Start(); - try - { - var originalResponse = await RestClient.CreatePipelineRunAsync(pipelineName, referencePipelineRunId, isRecovery, startActivityName, parameters, cancellationToken).ConfigureAwait(false); - return new PipelineCreatePipelineRunOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreatePipelineRunRequest(pipelineName, referencePipelineRunId, isRecovery, startActivityName, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Creates a run of a pipeline. - /// The pipeline name. - /// The pipeline run identifier. If run ID is specified the parameters of the specified run will be used to create a new run. - /// Recovery mode flag. If recovery mode is set to true, the specified referenced pipeline run and the new run will be grouped under the same groupId. - /// In recovery mode, the rerun will start from this activity. If not specified, all activities will run. - /// Parameters of the pipeline run. These parameters will be used only if the runId is not specified. - /// The cancellation token to use. - /// is null. - public virtual PipelineCreatePipelineRunOperation StartCreatePipelineRun(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) - { - if (pipelineName == null) - { - throw new ArgumentNullException(nameof(pipelineName)); - } - - using var scope = _clientDiagnostics.CreateScope("PipelineClient.StartCreatePipelineRun"); - scope.Start(); - try - { - var originalResponse = RestClient.CreatePipelineRun(pipelineName, referencePipelineRunId, isRecovery, startActivityName, parameters, cancellationToken); - return new PipelineCreatePipelineRunOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreatePipelineRunRequest(pipelineName, referencePipelineRunId, isRecovery, startActivityName, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineCreatePipelineRunOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineCreatePipelineRunOperation.cs deleted file mode 100644 index 8bbfd46cf22de..0000000000000 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineCreatePipelineRunOperation.cs +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.Text.Json; -using System.Threading; -using System.Threading.Tasks; -using Azure; -using Azure.Analytics.Synapse.Artifacts.Models; -using Azure.Core; -using Azure.Core.Pipeline; - -namespace Azure.Analytics.Synapse.Artifacts -{ - /// Creates a run of a pipeline. - public partial class PipelineCreatePipelineRunOperation : Operation, IOperationSource - { - private readonly ArmOperationHelpers _operation; - internal PipelineCreatePipelineRunOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) - { - _operation = new ArmOperationHelpers(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "PipelineCreatePipelineRunOperation"); - } - /// - public override string Id => _operation.Id; - - /// - public override CreateRunResponse Value => _operation.Value; - - /// - public override bool HasCompleted => _operation.HasCompleted; - - /// - public override bool HasValue => _operation.HasValue; - - /// - public override Response GetRawResponse() => _operation.GetRawResponse(); - - /// - public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); - - /// - public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); - - /// - public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); - - /// - public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); - - CreateRunResponse IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) - { - using var document = JsonDocument.Parse(response.ContentStream); - return CreateRunResponse.DeserializeCreateRunResponse(document.RootElement); - } - - async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) - { - using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); - return CreateRunResponse.DeserializeCreateRunResponse(document.RootElement); - } - } -} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs index d738ba0c3150d..16c6410d87f64 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs @@ -368,7 +368,7 @@ internal HttpMessage CreateCreatePipelineRunRequest(string pipelineName, string /// Parameters of the pipeline run. These parameters will be used only if the runId is not specified. /// The cancellation token to use. /// is null. - public async Task CreatePipelineRunAsync(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) + public async Task> CreatePipelineRunAsync(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) { if (pipelineName == null) { @@ -379,9 +379,13 @@ public async Task CreatePipelineRunAsync(string pipelineName, string r await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); switch (message.Response.Status) { - case 200: case 202: - return message.Response; + { + CreateRunResponse value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = CreateRunResponse.DeserializeCreateRunResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } default: throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); } @@ -395,7 +399,7 @@ public async Task CreatePipelineRunAsync(string pipelineName, string r /// Parameters of the pipeline run. These parameters will be used only if the runId is not specified. /// The cancellation token to use. /// is null. - public Response CreatePipelineRun(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) + public Response CreatePipelineRun(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = null, string startActivityName = null, IDictionary parameters = null, CancellationToken cancellationToken = default) { if (pipelineName == null) { @@ -406,9 +410,13 @@ public Response CreatePipelineRun(string pipelineName, string referencePipelineR _pipeline.Send(message, cancellationToken); switch (message.Response.Status) { - case 200: case 202: - return message.Response; + { + CreateRunResponse value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = CreateRunResponse.DeserializeCreateRunResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } default: throw _clientDiagnostics.CreateRequestFailedException(message.Response); } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md index cd7ba88a1feb4..5592c86d1395d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md @@ -6,7 +6,7 @@ Run `dotnet msbuild /t:GenerateCode` to generate code. > see https://aka.ms/autorest ```yaml -repo: https://github.com/Azure/azure-rest-api-specs/blob/30fcbd8d18834a432c031d252d735eb5bbcc02bf +repo: https://github.com/Azure/azure-rest-api-specs/blob/036a9bba574b092c83a5d1b2fd9482d87e8fdc9d ``` ``` yaml diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs index efca5a7ef4803..6af6e6a542893 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/ArtifactsClientTestBase.cs @@ -20,6 +20,10 @@ public abstract class ArtifactsClientTestBase : RecordedTestBase + /// The suite of tests for the class. + /// + /// + /// These tests have a dependency on live Azure services and may incur costs for the associated + /// Azure subscription. + /// + public class DataFlowClientLiveTests : ArtifactsClientTestBase + { + /// + /// Initializes a new instance of the class. + /// + /// A flag used by the Azure Core Test Framework to differentiate between tests for asynchronous and synchronous methods. + public DataFlowClientLiveTests(bool isAsync) : base(isAsync) + { + } + + [Test] + public async Task TestGetDataFlow() + { + await foreach (var expectedDataFlow in DataFlowClient.GetDataFlowsByWorkspaceAsync()) + { + DataFlowResource actualDataFlow = await DataFlowClient.GetDataFlowAsync(expectedDataFlow.Name); + Assert.AreEqual(expectedDataFlow.Name, actualDataFlow.Name); + Assert.AreEqual(expectedDataFlow.Id, actualDataFlow.Id); + } + } + + [Test] + public async Task TestCreateDataFlow() + { + var operation = await DataFlowClient.StartCreateOrUpdateDataFlowAsync("MyDataFlow", new DataFlowResource(new DataFlow())); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual("MyDataFlow", operation.Value.Name); + } + + [Test] + public async Task TestDeleteDataFlow() + { + var operation = await DataFlowClient.StartDeleteDataFlowAsync("MyDataFlow"); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual(200, operation.Value.Status); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DatasetClientLiveTests.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DatasetClientLiveTests.cs new file mode 100644 index 0000000000000..a930cb4d5dea0 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DatasetClientLiveTests.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading.Tasks; +using Azure.Analytics.Synapse.Artifacts; +using Azure.Analytics.Synapse.Artifacts.Models; +using NUnit.Framework; + +namespace Azure.Analytics.Synapse.Tests.Artifacts +{ + /// + /// The suite of tests for the class. + /// + /// + /// These tests have a dependency on live Azure services and may incur costs for the associated + /// Azure subscription. + /// + public class DatasetClientLiveTests : ArtifactsClientTestBase + { + /// + /// Initializes a new instance of the class. + /// + /// A flag used by the Azure Core Test Framework to differentiate between tests for asynchronous and synchronous methods. + public DatasetClientLiveTests(bool isAsync) : base(isAsync) + { + } + + [Test] + public async Task TestGetDataset() + { + await foreach (var expectedDataset in DatasetClient.GetDatasetsByWorkspaceAsync()) + { + DatasetResource actualDataset = await DatasetClient.GetDatasetAsync(expectedDataset.Name); + Assert.AreEqual(expectedDataset.Name, actualDataset.Name); + Assert.AreEqual(expectedDataset.Id, actualDataset.Id); + } + } + + [Test] + public async Task TestCreateDataset() + { + var operation = await DatasetClient.StartCreateOrUpdateDatasetAsync("MyDataset", new DatasetResource(new Dataset(new LinkedServiceReference(LinkedServiceReferenceType.LinkedServiceReference, "testsynapseworkspace-WorkspaceDefaultStorage")))); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual("MyDataset", operation.Value.Name); + } + + [Test] + public async Task TestDeleteDataset() + { + var operation = await DatasetClient.StartDeleteDatasetAsync("MyDataset"); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + Assert.AreEqual(200, operation.Value.Status); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json new file mode 100644 index 0000000000000..350a278838101 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json @@ -0,0 +1,397 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "28", + "Content-Type": "application/json", + "traceparent": "00-78590f72935f5646847601f6763f942c-dff5b40a8719c741-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ba0c2727fc774ce00fb8aab491a397ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": null + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "368", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ba0c2727fc774ce00fb8aab491a397ce", + "x-ms-request-id": "b9d129fe-4868-4d42-aac3-fe6c64831fd3" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "recordId": 212201, + "state": "Creating", + "created": "2020-08-26T02:00:18.09Z", + "changed": "2020-08-26T02:00:18.09Z", + "type": "DataFlow", + "name": "MyDataFlow", + "operationId": "4b928cd2-bfa5-4974-97ed-cb9231302ea2" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0a890b355eb158ec0e21e0b78d8790ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0a890b355eb158ec0e21e0b78d8790ea", + "x-ms-request-id": "e5474575-2f81-4d12-a160-7cb39ac4414e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "120ccd9036bb1ed93e26d3cb0f57adff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "120ccd9036bb1ed93e26d3cb0f57adff", + "x-ms-request-id": "87be62cd-f489-4d3f-9ad8-c8f1fdb67436" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "857f9b118c1a581c5748fb6429315860", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "857f9b118c1a581c5748fb6429315860", + "x-ms-request-id": "efa22b1c-0767-4ad1-af35-b55c9f7461a9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d1f8021c9404fe52326bcc8b8b2049b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d1f8021c9404fe52326bcc8b8b2049b7", + "x-ms-request-id": "0197da1c-0c2d-409f-b8de-da55bae1f3e5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f1a6e0730a0804cfb0b4ba733a74f40c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f1a6e0730a0804cfb0b4ba733a74f40c", + "x-ms-request-id": "bbcb554b-27a0-4fde-b165-2cd506280a4b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0caf73cddb5e7cfb498053afbf91cc37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0caf73cddb5e7cfb498053afbf91cc37", + "x-ms-request-id": "8fc13898-e126-4a4f-a466-9a6b619d0464" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "48f043ff678b115832f4214fdadfc4bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "48f043ff678b115832f4214fdadfc4bd", + "x-ms-request-id": "a3f0c175-775d-420d-88be-1abeb6df1195" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "18bec0763c719759e529a787b720441f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "18bec0763c719759e529a787b720441f", + "x-ms-request-id": "cb70ee77-4c09-4e22-bd73-479e91f3b323" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f77383e8ab8365811b9dda69baaba16a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "309", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "f77383e8ab8365811b9dda69baaba16a", + "x-ms-correlation-request-id": "594bb392-82d0-4e87-888c-803614e0a16f", + "x-ms-request-id": "4afacc5a-7bc4-4385-af91-2a2586f28b15", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "name": "MyDataFlow", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "05006b90-0000-0100-0000-5f45c2340000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "904421251" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json new file mode 100644 index 0000000000000..a467d42ae531a --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json @@ -0,0 +1,841 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "28", + "Content-Type": "application/json", + "traceparent": "00-6da631be1cb06f45b9a748b033ba8306-01b47c9aec324b43-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0dbb967a5235415ce40b904aa6b28905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": null + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "378", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0dbb967a5235415ce40b904aa6b28905", + "x-ms-request-id": "92f121d7-d286-4b06-a743-143ca0262685" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "recordId": 212200, + "state": "Creating", + "created": "2020-08-26T01:59:34.2366667Z", + "changed": "2020-08-26T01:59:34.2366667Z", + "type": "DataFlow", + "name": "MyDataFlow", + "operationId": "c5c82ff7-d689-476c-aa68-f01d8b40123d" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "73aefffdc0df36b252ec99f1fd43e249", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "73aefffdc0df36b252ec99f1fd43e249", + "x-ms-request-id": "c77c371f-b802-4e1e-8c9a-468fa454682f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "48b1981b1b8d390730bcbf6e4700bd60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "48b1981b1b8d390730bcbf6e4700bd60", + "x-ms-request-id": "7bb24afc-32aa-4fe9-b33d-e0354bd0a1cb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a64dfda215033d254635941ea774010a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a64dfda215033d254635941ea774010a", + "x-ms-request-id": "c233321a-43a2-4a35-a0ed-8ea996d479cb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "eb40c1e420d2e106f87542220044ee52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "eb40c1e420d2e106f87542220044ee52", + "x-ms-request-id": "0483890a-f9de-4e96-ac8f-049dc9f24c72" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ff4e392e3bf605457273015787e891bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ff4e392e3bf605457273015787e891bc", + "x-ms-request-id": "dbb1f759-1109-4629-8029-67ff8997c1af" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "868ab5bbd2bf828df76cae8ed3033c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "868ab5bbd2bf828df76cae8ed3033c02", + "x-ms-request-id": "087f9806-8336-4461-befc-a3a726947e85" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6ef042470125a8137b3b795e1fae590f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6ef042470125a8137b3b795e1fae590f", + "x-ms-request-id": "f6d6a2d0-d66c-44a3-a381-326b3b9a63db" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4b6785e368b95c93abcc08898db7316e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4b6785e368b95c93abcc08898db7316e", + "x-ms-request-id": "b1da2965-4bdd-4955-9c20-44de6d2a878c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4510fe3723f8ba96a1e10a83582e6248", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4510fe3723f8ba96a1e10a83582e6248", + "x-ms-request-id": "c9298b31-9b81-4289-b9eb-21cf29f7a4c0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4eaa9e12f19cde49af94c259f88a1bc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4eaa9e12f19cde49af94c259f88a1bc4", + "x-ms-request-id": "7f4dd445-c375-44f5-aa4c-59f01efa66b7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "20270a09149dc017efaca9d85e0f037c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "20270a09149dc017efaca9d85e0f037c", + "x-ms-request-id": "a1c1ba1e-2179-45cb-b61d-a8431ab35447" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ee76c069e30d46d2b5319663603dc117", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ee76c069e30d46d2b5319663603dc117", + "x-ms-request-id": "94ad19ab-98c0-4cdf-83a8-8f8bbb6a1717" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4e7a46c54207feaa86e95fef477080a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4e7a46c54207feaa86e95fef477080a0", + "x-ms-request-id": "09d557cd-4f36-422d-b808-abd52970200d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "38f045912d1325b737e16a6c7eb460b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "38f045912d1325b737e16a6c7eb460b2", + "x-ms-request-id": "f6ee84ba-210c-493c-9cbc-2ce217a298c3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "181292ebb49426751578672384e3fe45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "181292ebb49426751578672384e3fe45", + "x-ms-request-id": "19626825-9487-43c8-9eb6-34886b223ef7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1ad2f5b1894c98048e551625d83e7fd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1ad2f5b1894c98048e551625d83e7fd2", + "x-ms-request-id": "82c9de44-20d7-449d-afba-fbec6a10b6c2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b504ad89685edc0bd0c9239ac593a054", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b504ad89685edc0bd0c9239ac593a054", + "x-ms-request-id": "08b28585-4e5e-41e2-9c9e-617bc266e222" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "88bb25e345e161658e7a893f9d4f4ed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "88bb25e345e161658e7a893f9d4f4ed6", + "x-ms-request-id": "c869217b-9c4e-4ee0-895e-63eb239d08e0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d79995f849de48e6eaf64a836569d2fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d79995f849de48e6eaf64a836569d2fb", + "x-ms-request-id": "f651ff96-c7f3-48f2-b436-135bee3a9009" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b242c2b4f78344f147a227e3dfcc3e80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b242c2b4f78344f147a227e3dfcc3e80", + "x-ms-request-id": "4b40c7a8-8af1-45b7-87e4-6c9b8c5f8700" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "30a14c7bc9fa9a753e729eebfbe2fb24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "309", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "30a14c7bc9fa9a753e729eebfbe2fb24", + "x-ms-correlation-request-id": "61ad27d9-a29c-44e7-8c6b-391d308eab15", + "x-ms-request-id": "aa8f2097-8270-467f-8a2e-37db9c5a0587", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "name": "MyDataFlow", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "05005490-0000-0100-0000-5f45c20b0000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "389285449" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json new file mode 100644 index 0000000000000..6bd3afab0d30e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json @@ -0,0 +1,588 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdfa10a2e4f03e4a9798cf9786d9a75f-566e6d81ee2ffc4d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0ba137a0276ce7d951a56a850162704c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0ba137a0276ce7d951a56a850162704c", + "x-ms-request-id": "e6005289-21e7-4b8f-9b74-bc70f12df2dd" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "DataFlow", + "name": "MyDataFlow", + "operationId": "07aca10e-e62b-4ae2-a8dd-54963535a029" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fd2c9ecb8cfc982b6412d39d45f15090", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fd2c9ecb8cfc982b6412d39d45f15090", + "x-ms-request-id": "639ea40e-5325-4a6d-8f34-52768583cf91" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5f1d7b2c92149e309ba65c0525301494", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5f1d7b2c92149e309ba65c0525301494", + "x-ms-request-id": "af4b3977-c8e2-4283-b0c7-2ced74d49815" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "63b9a0a672359d5098652da52efeb5be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "63b9a0a672359d5098652da52efeb5be", + "x-ms-request-id": "ce85f22e-e5f8-46ee-8631-9e64545b5eda" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "577c70179f9f38b66d8d615630267334", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "577c70179f9f38b66d8d615630267334", + "x-ms-request-id": "23b95799-b9e5-45d8-8547-99cb8a342654" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a5f73efdec37b95b2b80c6ae658b709c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a5f73efdec37b95b2b80c6ae658b709c", + "x-ms-request-id": "81c74caa-2db9-498c-9ce7-9db4f26cc0e5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b4ee9ef0bdb306f5ea80f6a711f96c72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b4ee9ef0bdb306f5ea80f6a711f96c72", + "x-ms-request-id": "59db211d-e591-4ef8-b721-3fd870636607" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "efa7f8f210072a8615c32b1ed907d3e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "efa7f8f210072a8615c32b1ed907d3e1", + "x-ms-request-id": "16bd878f-d600-4c93-81bc-f040ba5e3fe7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9266c41dbe38408148f0bab7f6b3a831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9266c41dbe38408148f0bab7f6b3a831", + "x-ms-request-id": "3c20fec2-2df0-4a7d-ad99-cd2f58fcd134" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6cbb541380e4df9417c39ef091d72de2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6cbb541380e4df9417c39ef091d72de2", + "x-ms-request-id": "24463e29-4173-4f79-83a5-f65836d1852d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4c8914adda9333397767a61755ce3461", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4c8914adda9333397767a61755ce3461", + "x-ms-request-id": "a4079635-6de1-4cad-bc61-d3f226016de8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "850afa1a664c9cfd2f867a752090ae71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "850afa1a664c9cfd2f867a752090ae71", + "x-ms-request-id": "f515a7f8-c485-4e97-828a-15174d18f8e8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e109d8c35b29399d1b88f57cd97d8949", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e109d8c35b29399d1b88f57cd97d8949", + "x-ms-request-id": "7c25de53-2121-4ee1-b274-b1070074ba32" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "97d53c8fa7cd469617ec1c0d5fc413e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "97d53c8fa7cd469617ec1c0d5fc413e6", + "x-ms-request-id": "41faebfb-7196-45b1-b0b1-43fbca8a8e69" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7d5335b853c4be375cd06ac37180c3b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7d5335b853c4be375cd06ac37180c3b2", + "x-ms-request-id": "50f75d77-8662-45cf-bdb1-1d9615306e39" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e3e531fc17bb1ba441c3c93c3f90d957", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Wed, 26 Aug 2020 02:00:43 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e3e531fc17bb1ba441c3c93c3f90d957", + "x-ms-request-id": "bca45df5-15dc-4b6e-b995-5560a52c00bc" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1400607649" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json new file mode 100644 index 0000000000000..880e78913ec2c --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json @@ -0,0 +1,514 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4e0e5dd64dc9b348885fd3d62f5a34ab-e9b32fc447e8ea47-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3db6a67720856e5c89d6dbf7c56318f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3db6a67720856e5c89d6dbf7c56318f2", + "x-ms-request-id": "08e7d99a-9e7b-41d8-8a47-7bb2e838cdd9" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "DataFlow", + "name": "MyDataFlow", + "operationId": "c062a76f-4c2e-44c0-9197-abbbd575427e" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "81b37d8c3aa039f934d8d33c4115ef36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "81b37d8c3aa039f934d8d33c4115ef36", + "x-ms-request-id": "d8745a76-6ba5-4ac4-b686-6976852e1ab3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e383c7e3f6345574b479702e4c0f7f0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e383c7e3f6345574b479702e4c0f7f0b", + "x-ms-request-id": "debd8dd8-bc3a-419d-a911-d48b09f386d8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "486aa55697b0635231d3aa314eb5fbb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "486aa55697b0635231d3aa314eb5fbb7", + "x-ms-request-id": "d2086976-d425-495b-8ace-b09a1b0bc54e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "27699d679dfa9601095dcd26c9cbec24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "27699d679dfa9601095dcd26c9cbec24", + "x-ms-request-id": "f581897a-628d-4cca-b5a6-8b76d9b7b83c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9be6c858a7aa4c867520b1604b4307ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9be6c858a7aa4c867520b1604b4307ff", + "x-ms-request-id": "494ac31d-6d51-42eb-a38f-5d796cb1af15" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "afc6b97e58a5b910a4d33f52c92c9966", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "afc6b97e58a5b910a4d33f52c92c9966", + "x-ms-request-id": "0b06c7ff-0922-4a95-905e-c156a92dfce2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "85d886e760cfc00c161db1d9eba04bc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "85d886e760cfc00c161db1d9eba04bc5", + "x-ms-request-id": "0b067d59-227a-49be-a1f3-71e54e9aa655" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "10a7ce563d04007fb72cf6d668348249", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "10a7ce563d04007fb72cf6d668348249", + "x-ms-request-id": "dd19425a-dff5-4ad7-bdb1-51d83dbf319f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c5794a87816a1e30ad059987a636cd04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c5794a87816a1e30ad059987a636cd04", + "x-ms-request-id": "20d942ec-ff14-4443-990a-2ce0befadfcd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fbfb79888984a96106d7cea2693558e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fbfb79888984a96106d7cea2693558e2", + "x-ms-request-id": "d22dbe65-b1bb-4f07-9cc3-2f06a9ca6daf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a052689b8626d55a9e8962fea4f85a80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a052689b8626d55a9e8962fea4f85a80", + "x-ms-request-id": "7f7f60f1-483b-417c-b495-47e343f16220" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ee4ef15e8638fdc4e9cfbe93b38db477", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ee4ef15e8638fdc4e9cfbe93b38db477", + "x-ms-request-id": "9fe006dc-2213-4edc-8abb-e6f22da43b53" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3debb6ad2de401de1e265dfb2663050e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Wed, 26 Aug 2020 02:00:05 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3debb6ad2de401de1e265dfb2663050e", + "x-ms-request-id": "55b71343-d077-4525-adf1-5e5c97689ab5" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1113707219" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json new file mode 100644 index 0000000000000..9e1f471955a41 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json @@ -0,0 +1,88 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5df0540fcaf2780acef4bf30a508f780", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "321", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:29 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5df0540fcaf2780acef4bf30a508f780", + "x-ms-request-id": "6123ea86-d2af-4909-91c1-5ea4fbb85945" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "name": "MyDataFlow", + "type": "Microsoft.Synapse/workspaces/dataflows", + "etag": "05006b90-0000-0100-0000-5f45c2340000", + "properties": { + "type": null + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4c71ee7f83a0ca479910060b48afc256-312d510da27b3447-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8848bd95be6593a42fee8e42ee8d6c88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "309", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:00:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "8848bd95be6593a42fee8e42ee8d6c88", + "x-ms-correlation-request-id": "ed0c2719-1f2c-4deb-b6a5-7b0ce6dd6b06", + "x-ms-request-id": "c6a82e6d-4d66-44fa-8d5f-4a7bfd5006d2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "name": "MyDataFlow", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "05006b90-0000-0100-0000-5f45c2340000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "693057553" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json new file mode 100644 index 0000000000000..4d898823dd691 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json @@ -0,0 +1,88 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0e77f33cbf700f7fbc5ec5a213c7b644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "321", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:52 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0e77f33cbf700f7fbc5ec5a213c7b644", + "x-ms-request-id": "31e6a290-2014-49ab-b350-aae7f402aa73" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "name": "MyDataFlow", + "type": "Microsoft.Synapse/workspaces/dataflows", + "etag": "05005490-0000-0100-0000-5f45c20b0000", + "properties": { + "type": null + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-29bf122af3bccd459ad082e793884724-06cf0ec2401e4948-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "910299dd1c4d8c35b96dd1487ed72400", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "309", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 01:59:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "910299dd1c4d8c35b96dd1487ed72400", + "x-ms-correlation-request-id": "a35c79da-7943-4b85-abcf-e84d478ba39e", + "x-ms-request-id": "094b6010-ae69-4995-8845-944377d3e359", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", + "name": "MyDataFlow", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "05005490-0000-0100-0000-5f45c20b0000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1722251516" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json new file mode 100644 index 0000000000000..6a3fc33d4a100 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json @@ -0,0 +1,368 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "150", + "Content-Type": "application/json", + "traceparent": "00-2c351f64d940934d8eff0b119f8cc288-3916fc810fb6f349-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "72549d5e724db0f9e4ccca8d1a3d48ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "374", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "72549d5e724db0f9e4ccca8d1a3d48ef", + "x-ms-request-id": "0f83396f-ffa4-4277-bdcf-66e78a194e12" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "recordId": 212202, + "state": "Creating", + "created": "2020-08-26T02:01:03.8666667Z", + "changed": "2020-08-26T02:01:03.8666667Z", + "type": "Dataset", + "name": "MyDataset", + "operationId": "21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9eb2cd4c99f5f610dac40d4594964749", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9eb2cd4c99f5f610dac40d4594964749", + "x-ms-request-id": "9561dea5-f9c0-4324-acbe-6a3d0ff27354" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3f9255f8996f27c777717407d7097f8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3f9255f8996f27c777717407d7097f8f", + "x-ms-request-id": "3cae9412-6cdc-4c9c-881f-47ffe0dd29b1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4c41067caa8a70f92adc23c92ae04e67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4c41067caa8a70f92adc23c92ae04e67", + "x-ms-request-id": "fbdc60e6-3d07-4aae-b438-b97e817ea39f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "daf751ff10c2b354068b278424081ed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "daf751ff10c2b354068b278424081ed1", + "x-ms-request-id": "a04d6a48-7b13-4bfc-9dba-fa390e6ef2bf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8ec87e44fa554ebe5c22149275fdfc96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8ec87e44fa554ebe5c22149275fdfc96", + "x-ms-request-id": "b92cb14d-0552-42b1-b6b5-f58788796067" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "86080c23a4116bcdb28e45ff82754c21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "86080c23a4116bcdb28e45ff82754c21", + "x-ms-request-id": "2eeb4e57-f8e1-4b33-bb29-5ae343185675" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ac8551bec017041293a87ea0fcc13d08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ac8551bec017041293a87ea0fcc13d08", + "x-ms-request-id": "6362a958-7cd8-47ac-a7d8-e56ba8a84630" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1860908e97009fbfb15ddcc6b5becce7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "427", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1860908e97009fbfb15ddcc6b5becce7", + "x-ms-correlation-request-id": "3e468f37-33f3-4a3d-88d5-6d381d703ff2", + "x-ms-request-id": "360170b9-1576-4083-b347-9876f20c1926", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "name": "MyDataset", + "type": "Microsoft.Synapse/workspaces/datasets", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + }, + "etag": "05007d90-0000-0100-0000-5f45c2610000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1435999981" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json new file mode 100644 index 0000000000000..8d008f1afe8b1 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json @@ -0,0 +1,886 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Authorization": "Sanitized", + "Content-Length": "150", + "Content-Type": "application/json", + "traceparent": "00-7d7f1300dd6a7a439eee994a7d4a88c5-9078b9a0073eae40-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "01ad924e620e9cdbf0994d2dcb6841ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "374", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "01ad924e620e9cdbf0994d2dcb6841ee", + "x-ms-request-id": "3269066e-82f9-442e-bb85-2f05ddf2ef36" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "recordId": 212204, + "state": "Creating", + "created": "2020-08-26T02:01:43.5733333Z", + "changed": "2020-08-26T02:01:43.5733333Z", + "type": "Dataset", + "name": "MyDataset", + "operationId": "670b3f22-21f4-4352-867f-b6ba92d584be" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8f517cf043cd64a7420830f4f4859eaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8f517cf043cd64a7420830f4f4859eaf", + "x-ms-request-id": "c90e304d-3876-447f-bc40-cbd998f4ada7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "aeddaa2fbb42462a2bed69560467197e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "aeddaa2fbb42462a2bed69560467197e", + "x-ms-request-id": "b2e761bf-78fd-454b-9d5c-f88cec6c85d9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4e3c1716b117dd20af702cdad872cb12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4e3c1716b117dd20af702cdad872cb12", + "x-ms-request-id": "c9b0d8c3-88d3-40f4-8519-f39c00ef1bdc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d745ae19d49435f3520b63e0d95060da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d745ae19d49435f3520b63e0d95060da", + "x-ms-request-id": "9f57434f-fc3f-47a6-a50f-fc2db3940a88" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "dcddb1ef4f497d988afffed18f4f6db9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "dcddb1ef4f497d988afffed18f4f6db9", + "x-ms-request-id": "f4da53d7-27c8-49ee-b8d1-c7fb8fe2f457" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "553c5622412241ea2306fc0b4e40045e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "553c5622412241ea2306fc0b4e40045e", + "x-ms-request-id": "f42d2844-5500-4a06-af69-ff5cd1611347" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "26eb5110ee94cac916c84d95d622a602", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "26eb5110ee94cac916c84d95d622a602", + "x-ms-request-id": "170bd4c0-50ab-476b-bd63-a63fdd4695da" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "83bdaa9d0a14adb8c79cb842528c2e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "83bdaa9d0a14adb8c79cb842528c2e4a", + "x-ms-request-id": "e32d0b8f-846a-46fd-a38d-de894a5eeec3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3dc0a0fb476433248d713f59f4556b01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3dc0a0fb476433248d713f59f4556b01", + "x-ms-request-id": "d0017657-0594-4151-bda2-6d940d56225b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a36efa608082064a983e5ff835877789", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a36efa608082064a983e5ff835877789", + "x-ms-request-id": "045eb426-f6d5-40ac-b48a-e944a4c8ec5f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "359a02996861569d8589f5a2cb5eb871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "359a02996861569d8589f5a2cb5eb871", + "x-ms-request-id": "e7785982-2edd-4d69-bb21-8feb81e3af02" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "58e2b7308a1e7ac855baa426e72cfe06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "58e2b7308a1e7ac855baa426e72cfe06", + "x-ms-request-id": "660c28e7-52d1-40ab-b927-c9307885c16f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f2c0b5fa35bbf79f5c181df88aa73b3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f2c0b5fa35bbf79f5c181df88aa73b3a", + "x-ms-request-id": "a8b56e43-2861-4064-90ce-8821ebc68af1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7ec7ed851ea40e6b3a1fe0a7c3776e59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7ec7ed851ea40e6b3a1fe0a7c3776e59", + "x-ms-request-id": "dedfc0ba-f8cc-4d18-9eff-4e9b26ae9eec" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "15a7ef8bc69efbb618eafb066ccfefad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "15a7ef8bc69efbb618eafb066ccfefad", + "x-ms-request-id": "c5c7534f-33dd-41c6-84f2-364b1ef262f1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f9a06a7e7f64db6149b1b79b55f733e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f9a06a7e7f64db6149b1b79b55f733e5", + "x-ms-request-id": "fbdd1446-f690-4dfa-93ac-d96a904967a5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9b6cc4a925ffbf9c37cc66ba2365a16a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9b6cc4a925ffbf9c37cc66ba2365a16a", + "x-ms-request-id": "c027cf83-5db1-4fd0-a8f3-0332eebb0d62" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5929323074d60bf58eccccec0e1ba620", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5929323074d60bf58eccccec0e1ba620", + "x-ms-request-id": "d8b2a409-761b-4b10-9101-1e7f45531efb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a85c16b7546359aecee1c29819a7b8e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a85c16b7546359aecee1c29819a7b8e3", + "x-ms-request-id": "c7eef048-eab0-4d7c-bdf4-9272afcb1386" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "226a4d10dace350ece600c3359afb01b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "226a4d10dace350ece600c3359afb01b", + "x-ms-request-id": "8803b189-efb5-438f-b9c7-c8f311a8d6b2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0d024525f809dc0784cf8af5b25cf2e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0d024525f809dc0784cf8af5b25cf2e7", + "x-ms-request-id": "2fde632e-aee1-4464-ab4a-a1ccb9bda82e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c0dce81383b0dd520727d902477a001e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "427", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "c0dce81383b0dd520727d902477a001e", + "x-ms-correlation-request-id": "b80d4f10-edff-4a05-a31f-db18c17d9324", + "x-ms-request-id": "9290b1d2-0cb4-40c2-87cc-d05eed1f6864", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "name": "MyDataset", + "type": "Microsoft.Synapse/workspaces/datasets", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + }, + "etag": "05009d90-0000-0100-0000-5f45c28c0000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1804698310" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json new file mode 100644 index 0000000000000..c968e535fc20e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json @@ -0,0 +1,477 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4ef080eac3d9444484478dc4cb5a8acd-765c230aee781b43-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "51fb24a3864fb4a578bf7b040953a207", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "351", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "51fb24a3864fb4a578bf7b040953a207", + "x-ms-request-id": "b140cc16-7f2e-43bb-bb92-182f8f767a89" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Dataset", + "name": "MyDataset", + "operationId": "672bf803-bb5d-45fe-8848-dab4684a283a" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e59c6ddc5011d6337e9231078309c526", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e59c6ddc5011d6337e9231078309c526", + "x-ms-request-id": "7fba095b-7827-4eaa-94f3-b69ee22eebfe" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "caa7cdf6aaad7e4e8092148c4dc8e47f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "caa7cdf6aaad7e4e8092148c4dc8e47f", + "x-ms-request-id": "f9183202-e270-4883-9da9-8ab0d50e8a32" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "9b28aa41bdb63df6cefb1873f49de533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9b28aa41bdb63df6cefb1873f49de533", + "x-ms-request-id": "3512aa69-168f-459f-a6ca-5fdf0dc35a4c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "02e611fdb25131231f1d657e3ca688b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "02e611fdb25131231f1d657e3ca688b5", + "x-ms-request-id": "40d2ae86-66f0-4cf1-aaca-45427b0af5b6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d9c5b1ad2ae13970d66afbb192da8ae2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d9c5b1ad2ae13970d66afbb192da8ae2", + "x-ms-request-id": "123f5340-9a2b-4f8f-80e4-47b4431b8e2d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3c8fe0ace1e28f2d86f67b9858770127", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3c8fe0ace1e28f2d86f67b9858770127", + "x-ms-request-id": "0e765144-b888-4824-b2cc-f385d381cc2f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "42c562720cd8d252a1ad2ce6b7719f45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "42c562720cd8d252a1ad2ce6b7719f45", + "x-ms-request-id": "fc9d0d11-b331-48ac-9362-7630a871add1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5bd282934c17ccd3843652ebafd7e15e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5bd282934c17ccd3843652ebafd7e15e", + "x-ms-request-id": "df25fa40-3a2b-4b01-a9c0-9a439fbeae47" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "303ed3694715a00a8ebd9a35b546d714", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "303ed3694715a00a8ebd9a35b546d714", + "x-ms-request-id": "12964a11-5cda-4156-9707-e4c6349234d8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d5053657a5a526108ff8bea1ba6623ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d5053657a5a526108ff8bea1ba6623ca", + "x-ms-request-id": "516c1160-2364-4ed7-b140-9fe47723f22d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e37dcdcc6f324b2f7731cc5ab19d163d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e37dcdcc6f324b2f7731cc5ab19d163d", + "x-ms-request-id": "a17a396d-19f4-4375-8691-89a65608e84b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "78933d5e0bd2c3b9c318a01c8969e627", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Wed, 26 Aug 2020 02:01:27 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "78933d5e0bd2c3b9c318a01c8969e627", + "x-ms-request-id": "69798c82-88cd-413a-99ae-204cf955cccd" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1403439803" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json new file mode 100644 index 0000000000000..f3581c3432f65 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json @@ -0,0 +1,551 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-a1dcf9e93d883b47874e6537ad5ad353-ce0bca350aac3e4e-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a66ec3d1105e44c92ba427058beb6a21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "351", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a66ec3d1105e44c92ba427058beb6a21", + "x-ms-request-id": "d5c3a54c-fb42-4027-8ece-6c6f12900a2b" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Dataset", + "name": "MyDataset", + "operationId": "6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "94507fb1e6cc08c1c7cc7a1975cfeed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "94507fb1e6cc08c1c7cc7a1975cfeed1", + "x-ms-request-id": "0daaa198-4001-4711-823e-ef832e764b0d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "94d2433706e4a2543ddc510e9a03ca8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "94d2433706e4a2543ddc510e9a03ca8d", + "x-ms-request-id": "c5399ccc-a02f-493f-ac43-25748d3138dd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0b53051dd59a7f55e66c0d9fb46c1d86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0b53051dd59a7f55e66c0d9fb46c1d86", + "x-ms-request-id": "9993e59a-e405-4670-b422-dec5522f27a0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "378da461f3cbaa3d2aae57f094b36ec3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "378da461f3cbaa3d2aae57f094b36ec3", + "x-ms-request-id": "655240fc-3004-44e6-853b-f82e490279bf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6ffced02e27b6136ee52ae77f8b5edd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6ffced02e27b6136ee52ae77f8b5edd0", + "x-ms-request-id": "5a1b5a3f-8836-4bae-acaf-49ebb3451e19" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f5adcabf93752ac2c7a9e0ec7e65ea32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f5adcabf93752ac2c7a9e0ec7e65ea32", + "x-ms-request-id": "59e61888-5c8d-4337-8bf4-949abf0aa864" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c79d49fdad6f7e0b6d2c487844c5b175", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c79d49fdad6f7e0b6d2c487844c5b175", + "x-ms-request-id": "e2f3d511-027a-4b89-88d4-004cdbde6174" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ca3186c079056f4d2ad2a8d1014ae388", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ca3186c079056f4d2ad2a8d1014ae388", + "x-ms-request-id": "e0b728ae-435f-4249-a37f-1f49724c6a28" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "af7a7b6726171261be2f87494a49e501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "af7a7b6726171261be2f87494a49e501", + "x-ms-request-id": "8ac0aa10-ccd3-4e16-9dc7-a50b94a70134" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f82b6bf72034842dfb2e9c9d04397c23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f82b6bf72034842dfb2e9c9d04397c23", + "x-ms-request-id": "bfe702ca-f57c-4b5b-a3f1-2b063e7bc008" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c911bf48024b995e251e0bd6f20324e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c911bf48024b995e251e0bd6f20324e0", + "x-ms-request-id": "b8384b7e-75d7-4b65-ab4a-8b1ef8f5432d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "96daa6eceb1f47544df6b3e989c30d85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "96daa6eceb1f47544df6b3e989c30d85", + "x-ms-request-id": "09728b52-4ba0-4372-8a2f-3ddd0fd964ca" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8a0064b21c38f4b60d91d215145791f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8a0064b21c38f4b60d91d215145791f7", + "x-ms-request-id": "0d4b1d85-7ea3-453a-bc05-4cc97b5e07cd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5eb0bb09e55f5d046bc97b554f740f61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "0", + "Date": "Wed, 26 Aug 2020 02:02:12 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5eb0bb09e55f5d046bc97b554f740f61", + "x-ms-request-id": "897eb6ca-7399-465e-9d02-56127faf569b" + }, + "ResponseBody": [] + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1653922045" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json new file mode 100644 index 0000000000000..3f3d1dde2cd9b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json @@ -0,0 +1,96 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5dda9dee22ae9ed3b1b3fd69aa5abe37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "439", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:15 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5dda9dee22ae9ed3b1b3fd69aa5abe37", + "x-ms-request-id": "2903c52f-69f1-4fcc-a481-91a901ac4ecf" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "name": "MyDataset", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "05007d90-0000-0100-0000-5f45c2610000", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4a3fca55a1a2d243af1f93b636685277-f415b14563ad7442-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7c4156424b19661771f430b0090d20aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "427", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:01:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "7c4156424b19661771f430b0090d20aa", + "x-ms-correlation-request-id": "3b722b99-2a40-4f16-9ec9-3d6a55b0b12e", + "x-ms-request-id": "1963fd14-f2d9-44b4-901d-eb13aba22153", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "name": "MyDataset", + "type": "Microsoft.Synapse/workspaces/datasets", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + }, + "etag": "05007d90-0000-0100-0000-5f45c2610000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "1361111893" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json new file mode 100644 index 0000000000000..77d245978ad78 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json @@ -0,0 +1,96 @@ +{ + "Entries": [ + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3c29caab6a22a96ab1c8031454b65ec9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "439", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:00 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3c29caab6a22a96ab1c8031454b65ec9", + "x-ms-request-id": "491535e6-ce8d-421b-b950-a2d7227a0224" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "name": "MyDataset", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "05009d90-0000-0100-0000-5f45c28c0000", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6898bfc4ba98c048babda5161712bb8c-7d604f923d41c14f-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "57ed498cd0c79fa570b7e670c47a1504", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "427", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "57ed498cd0c79fa570b7e670c47a1504", + "x-ms-correlation-request-id": "2ec7274e-f006-4519-a4b4-b027ded726df", + "x-ms-request-id": "366006f1-e016-47e6-b744-12b101746768", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", + "name": "MyDataset", + "type": "Microsoft.Synapse/workspaces/datasets", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + }, + "etag": "05009d90-0000-0100-0000-5f45c28c0000" + } + } + ], + "Variables": { + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", + "RandomSeed": "833975274" + } +} \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json index 7b8367cc885c3..dafbf0cc027ac 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-2e0ad691cfde8a459fa13b90f57d3092-5a1b1d44a27b9c4a-00", + "traceparent": "00-e0806eaadb3515418dcbf3d7274711e2-3d76bfad7a1eae40-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c26d24e313c2cbe3c7c442461e8e9b17", "x-ms-return-client-request-id": "true" @@ -33,35 +33,35 @@ "Location", "Retry-After" ], - "Content-Length": "393", + "Content-Length": "398", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c26d24e313c2cbe3c7c442461e8e9b17", - "x-ms-request-id": "043a41ee-7d9b-4ee0-8f75-31041f5f3c8e" + "x-ms-request-id": "0cf48599-f895-43a7-9d0c-e24afc2a83d4" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", - "recordId": 202201, - "state": "Updating", - "created": "2020-08-21T02:16:45.33Z", - "changed": "2020-08-21T02:18:28.6066667Z", + "recordId": 212205, + "state": "Creating", + "created": "2020-08-26T02:02:30.8166667Z", + "changed": "2020-08-26T02:02:30.8166667Z", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "b07a0587-4b48-4a86-9d6d-a29d9fe8c73e" + "operationId": "3d0ff784-4dce-4df0-abc6-67ffef2f633c" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f34059ecb14977491b7cd10d8da02a07", "x-ms-return-client-request-id": "true" @@ -79,26 +79,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f34059ecb14977491b7cd10d8da02a07", - "x-ms-request-id": "c5a9774a-ff91-427c-8c75-6bbe18012312" + "x-ms-request-id": "a71401ad-28ce-4994-91ce-e46c00ddcc50" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "caadb6eae0e0a638228f2ec2b9cee40b", "x-ms-return-client-request-id": "true" @@ -116,26 +116,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "caadb6eae0e0a638228f2ec2b9cee40b", - "x-ms-request-id": "0535bec4-2a0d-4583-893b-c7c6d27d1a1d" + "x-ms-request-id": "766eb521-5999-401d-8135-ee268b2af77e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c55a52e3a84e3ace1d511d766cf54ff2", "x-ms-return-client-request-id": "true" @@ -153,26 +153,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c55a52e3a84e3ace1d511d766cf54ff2", - "x-ms-request-id": "3d639656-cc5b-4264-984a-ea0c40e37623" + "x-ms-request-id": "5d06f20f-1036-42bd-bc23-edafa1a84c32" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "302a53d5160e0c0e209ad0b98287be4c", "x-ms-return-client-request-id": "true" @@ -190,26 +190,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:49 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "302a53d5160e0c0e209ad0b98287be4c", - "x-ms-request-id": "7a0b5966-f5d5-487d-b68b-0fb7171a1654" + "x-ms-request-id": "ab863817-3c84-4de8-8b8f-9ae8c0887d8a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3b29c697654641b8e773ac8fc2c1392c", "x-ms-return-client-request-id": "true" @@ -227,26 +227,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:49 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3b29c697654641b8e773ac8fc2c1392c", - "x-ms-request-id": "f5658ea1-d974-4e70-826b-110c172b3f04" + "x-ms-request-id": "c59b3cf4-aed5-4bb7-83a5-769be85d92c2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "65ec3c40b4a3cdfd434ea4b4d715b796", "x-ms-return-client-request-id": "true" @@ -264,26 +264,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:49 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "65ec3c40b4a3cdfd434ea4b4d715b796", - "x-ms-request-id": "0eb27cd0-27ed-4055-af59-fdfce769990e" + "x-ms-request-id": "b73c03e3-4f93-4694-a483-13d7c9f78472" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a6dfd19214cb6fac9ae9489a697f495f", "x-ms-return-client-request-id": "true" @@ -301,26 +301,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:49 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a6dfd19214cb6fac9ae9489a697f495f", - "x-ms-request-id": "3fb78104-2775-44d5-958f-0a1666dafb7d" + "x-ms-request-id": "7761bc16-6a13-4036-8ac2-b81385883b68" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4679a460589ae3a9c95bf7f7c10469d2", "x-ms-return-client-request-id": "true" @@ -338,26 +338,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4679a460589ae3a9c95bf7f7c10469d2", - "x-ms-request-id": "9a5885da-339a-444d-928e-16f665dbfbef" + "x-ms-request-id": "b17a8517-e422-4e42-a425-70eb475972e7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f1fc15bb93e22b618f7dcbb96b6263c4", "x-ms-return-client-request-id": "true" @@ -375,26 +375,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f1fc15bb93e22b618f7dcbb96b6263c4", - "x-ms-request-id": "6e1451d4-5321-4c95-a151-121c7c466ba7" + "x-ms-request-id": "8f342414-7d43-4631-b58e-4b76e15c07de" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "33534405719c39fc27fbdc701db4ad96", "x-ms-return-client-request-id": "true" @@ -412,26 +412,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "33534405719c39fc27fbdc701db4ad96", - "x-ms-request-id": "8f1ec923-2170-4196-b75b-efd92e791af5" + "x-ms-request-id": "70acd1f1-4f43-47e3-bafb-b86d24781dfa" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "53df75805782cc7c424db61c8def7866", "x-ms-return-client-request-id": "true" @@ -449,26 +449,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "53df75805782cc7c424db61c8def7866", - "x-ms-request-id": "d59f00d0-bf5c-48e5-9e66-e399bb2ce842" + "x-ms-request-id": "42726dad-4c35-4b3f-93aa-97919d5a6b06" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7cf233f735b04a3619c2c9e6b6f00eda", "x-ms-return-client-request-id": "true" @@ -486,148 +486,37 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7cf233f735b04a3619c2c9e6b6f00eda", - "x-ms-request-id": "76948d33-2a02-4683-b177-e772f7941d2d" + "x-ms-request-id": "f5478b9e-381a-4f9c-8ac9-156cc7d88ec1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", - "x-ms-request-id": "f3b58459-51d9-465b-8e59-0f1907a9b282" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ea78768331c24ae53f943ac08d961552", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ea78768331c24ae53f943ac08d961552", - "x-ms-request-id": "7c90495d-5386-44a2-9d9c-b3d5da4e2caf" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "584ddb3f82b6e8e3f145b42944e88f39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "584ddb3f82b6e8e3f145b42944e88f39", - "x-ms-request-id": "5fa288ca-ded4-42b8-9c5a-b4fb7faf4ae5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b07a0587-4b48-4a86-9d6d-a29d9fe8c73e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4063911624789e184feeb6eed5811f31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:19:52 GMT", + "Date": "Wed, 26 Aug 2020 02:02:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -636,9 +525,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4063911624789e184feeb6eed5811f31", - "x-ms-correlation-request-id": "dda3835b-9526-4904-9c88-4b084aeb5b38", - "x-ms-request-id": "c77509f8-adc7-4307-9491-453bc5e254e4", + "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", + "x-ms-correlation-request-id": "c48c1140-e598-4214-a678-653fc345bd7e", + "x-ms-request-id": "49ab2259-a497-49fc-97b4-382dd970575e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -651,7 +540,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0900d20a-0000-0100-0000-5f3f2f480000" + "etag": "0500ae90-0000-0100-0000-5f45c2b90000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json index 64f8f5059ef3e..e0ca62c6d3dd2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-9fb728d5a684894da65bb30a41847522-165a3842300a854c-00", + "traceparent": "00-aa8f1aa688a1be4fbd6e17ea777944f1-80b58b2bd5130d41-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "49efb50fe48eaecfbfdfddeeff0b94da", "x-ms-return-client-request-id": "true" @@ -33,35 +33,35 @@ "Location", "Retry-After" ], - "Content-Length": "388", + "Content-Length": "398", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:03:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "49efb50fe48eaecfbfdfddeeff0b94da", - "x-ms-request-id": "6a6c27ad-411d-4c04-a6ca-266e0aa4e563" + "x-ms-request-id": "5fb1993f-01ae-46dd-bab1-d462852ae080" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", - "recordId": 202207, + "recordId": 212206, "state": "Creating", - "created": "2020-08-21T02:20:33.29Z", - "changed": "2020-08-21T02:20:33.29Z", + "created": "2020-08-26T02:03:25.3433333Z", + "changed": "2020-08-26T02:03:25.3433333Z", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "cd59f92e-b2aa-4707-9218-6bdb066586ac" + "operationId": "22255e3a-7267-4b28-b66c-d57ede0a72ca" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1768d9107ee1c1f5c5c65fb6e0f7a89d", "x-ms-return-client-request-id": "true" @@ -79,26 +79,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:03:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1768d9107ee1c1f5c5c65fb6e0f7a89d", - "x-ms-request-id": "fa2deb1f-b344-4d99-9ba5-1c8d75347f6f" + "x-ms-request-id": "e4668d76-2c12-47f6-9d6d-0332f6691bc2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "320493ada358a7a902d799a6ffc3729d", "x-ms-return-client-request-id": "true" @@ -116,26 +116,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:03:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "320493ada358a7a902d799a6ffc3729d", - "x-ms-request-id": "a4258f0d-8414-40cc-baad-aa4517cd69fd" + "x-ms-request-id": "b77e28bd-5bfa-44fc-8f4e-79923d0bf076" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "26de679c7da36cf88df32f0e08fd37b8", "x-ms-return-client-request-id": "true" @@ -153,26 +153,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:03:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "26de679c7da36cf88df32f0e08fd37b8", - "x-ms-request-id": "cad21cc8-1210-470e-8f65-0e9d183de19a" + "x-ms-request-id": "708ad377-459c-46a5-9e52-f0f9ef4fbec0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a85e473f0f1d6d1c2fc1150ae44ec101", "x-ms-return-client-request-id": "true" @@ -190,26 +190,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:03:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a85e473f0f1d6d1c2fc1150ae44ec101", - "x-ms-request-id": "d2d10f1e-406a-42d9-89d3-7e0ab688de0a" + "x-ms-request-id": "6170e7ca-4c6a-4c58-b084-10ee221383fe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7819c154811930f99b97a564749b9f05", "x-ms-return-client-request-id": "true" @@ -227,37 +227,666 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:34 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:03:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7819c154811930f99b97a564749b9f05", - "x-ms-request-id": "ce8242d3-bc2c-4b90-81fe-b48ffff61642" + "x-ms-request-id": "00658b57-9b44-45fc-b47f-fca955be6844" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd59f92e-b2aa-4707-9218-6bdb066586ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b866e1a0ca648d804a71f7e268ee873e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b866e1a0ca648d804a71f7e268ee873e", + "x-ms-request-id": "1190127c-5698-432d-98b3-e40b208049de" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "46ba2d31bee3bd9e4d2e0d856ab8f994", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "46ba2d31bee3bd9e4d2e0d856ab8f994", + "x-ms-request-id": "bab1714a-7a61-4605-93c9-a6559d40d739" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "03690f2108e88a9c418c2da88a17c8ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "03690f2108e88a9c418c2da88a17c8ac", + "x-ms-request-id": "09437118-bbec-4faa-b97c-04213ac13628" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4632660f59e1e12142a86b36bdfa2292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4632660f59e1e12142a86b36bdfa2292", + "x-ms-request-id": "48329f02-2036-40ef-9055-0db30b934247" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "58c0627884852956902f045790f63335", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "58c0627884852956902f045790f63335", + "x-ms-request-id": "90b5d47c-d8b9-45f2-a8da-d8bfd9595b64" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "04766066b285c8b3ee87c13f9c66cd47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "04766066b285c8b3ee87c13f9c66cd47", + "x-ms-request-id": "45747bb9-8695-408a-8231-fdbd2277b061" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "27309b696f578b270f09b6b155c9514b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "27309b696f578b270f09b6b155c9514b", + "x-ms-request-id": "22c9e64c-1e9e-4022-a6df-43d6d28c250f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5cd036751e84c50daff869fdc2178c29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5cd036751e84c50daff869fdc2178c29", + "x-ms-request-id": "2c4bc1a2-6e4d-4847-87ce-5301d81750f3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f5eebc620bc6f6de39eaf57bfb017225", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f5eebc620bc6f6de39eaf57bfb017225", + "x-ms-request-id": "8142dff0-240f-42e2-b414-733b3fa5c56b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "66c9753670964bc38d6a775e0629c9f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "66c9753670964bc38d6a775e0629c9f7", + "x-ms-request-id": "2c7439b7-6a54-4c77-b0dd-d98c9f837628" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "984f8c7c5bdb698558d922992992c9ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "984f8c7c5bdb698558d922992992c9ae", + "x-ms-request-id": "4adf6e2e-b543-473c-9954-fad0e6093235" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4cc74385264df193f8a2675b937fef0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4cc74385264df193f8a2675b937fef0f", + "x-ms-request-id": "24519537-eb51-40ab-b68f-78340de1324f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6ffefd21d9b2da4af0600ebc4d2922fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6ffefd21d9b2da4af0600ebc4d2922fb", + "x-ms-request-id": "a8cdc25e-afe9-4d08-ad71-30298dec96f3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c2d8c9a07c6256a9f85da038f429d5d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c2d8c9a07c6256a9f85da038f429d5d8", + "x-ms-request-id": "00f28e55-6688-4a55-b36b-9ef9a05d2080" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2b7812e95a93acfbf9ed5ced17d7a3ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2b7812e95a93acfbf9ed5ced17d7a3ce", + "x-ms-request-id": "ed9ae973-14c3-4e36-bcc1-af25e7d26080" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cabb6c802ca6a4ad53a776553911e6c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cabb6c802ca6a4ad53a776553911e6c6", + "x-ms-request-id": "15996290-1f4f-4cd6-b608-619271db6ed0" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3bd2368af6b14668ce2cc9751fbc3f21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:03:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3bd2368af6b14668ce2cc9751fbc3f21", + "x-ms-request-id": "d5a5f37c-92d9-4607-b285-de86bb602988" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "87b8d1b90b6ebc3165d4d7ebe3a672e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:34 GMT", + "Date": "Wed, 26 Aug 2020 02:03:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -266,9 +895,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b866e1a0ca648d804a71f7e268ee873e", - "x-ms-correlation-request-id": "3a98e559-3e42-4cfb-b870-fb39ae442c63", - "x-ms-request-id": "fd5a6ba4-8bfb-4e59-90a1-23ce815bfb25", + "x-ms-client-request-id": "87b8d1b90b6ebc3165d4d7ebe3a672e7", + "x-ms-correlation-request-id": "198b4f7f-361d-4607-9665-b4ece9f78a89", + "x-ms-request-id": "2bfb03f4-e113-4c90-b6e4-6d45a0a958d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -281,7 +910,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0900e90a-0000-0100-0000-5f3f2f720000" + "etag": "0500d690-0000-0100-0000-5f45c2f20000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json index 8ed8fa58bb639..67f7b5eac66b3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e32ebc805863f947a50d8a18fde0cc5e-254a47c61c631c41-00", + "traceparent": "00-6f0ff2c960fe3d41870cd0fadb79daff-5ef0de070869c948-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b29a26d5114ab6a7c035149b4a1dad89", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "375", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:21 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b29a26d5114ab6a7c035149b4a1dad89", - "x-ms-request-id": "ea0741fa-2780-4f5e-8c01-233d073c5c1d" + "x-ms-request-id": "0e97350d-b99f-4e13-9591-45b1d638a3df" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "281fe581-3689-4ea3-8b59-24f02299ee61" + "operationId": "40961cdf-5a25-4089-a489-16f7095aa520" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ecd5272aae8fc00eca190888f47c3df1", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:21 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ecd5272aae8fc00eca190888f47c3df1", - "x-ms-request-id": "baa6b142-0a13-40e1-b36a-9b0d3efc0c87" + "x-ms-request-id": "c7e74d60-35c4-4a0c-9fd0-d7f5782f63ac" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6554ea43b687de6ec28fd5010e4a1a50", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6554ea43b687de6ec28fd5010e4a1a50", - "x-ms-request-id": "c378b452-d7bd-495b-9df8-7e83453b1366" + "x-ms-request-id": "465f6c14-be3c-4814-94cf-d452bfb6f092" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2271470ac04808f9e7d82390eedb1660", "x-ms-return-client-request-id": "true" @@ -137,26 +137,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2271470ac04808f9e7d82390eedb1660", - "x-ms-request-id": "416c98db-107b-4680-858a-c2762b54f89e" + "x-ms-request-id": "11727d8e-ed5a-4648-ab58-e5f61db96f2b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b119110bc51b7345b9f62900d90db180", "x-ms-return-client-request-id": "true" @@ -174,26 +174,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b119110bc51b7345b9f62900d90db180", - "x-ms-request-id": "d2710304-53b0-42a2-997e-5b26d52cae46" + "x-ms-request-id": "5a8c27cd-0f63-4e76-9c86-6ae4d7b78d0c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ac7db7ff1a0a82a9f04c7daf93deefe7", "x-ms-return-client-request-id": "true" @@ -211,26 +211,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ac7db7ff1a0a82a9f04c7daf93deefe7", - "x-ms-request-id": "5768e375-2ca3-4d96-9537-7235559b47c9" + "x-ms-request-id": "1ad6a1d9-d729-4a67-a707-feda14a64bf5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fdf674796930453502fe695197f92fda", "x-ms-return-client-request-id": "true" @@ -248,26 +248,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fdf674796930453502fe695197f92fda", - "x-ms-request-id": "f79d5e42-2d00-4e98-a799-19e9f296f837" + "x-ms-request-id": "182aca8c-77e5-4ca4-9130-1b065e045637" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3691a226695ef0556797c0cf4896dfdb", "x-ms-return-client-request-id": "true" @@ -285,26 +285,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3691a226695ef0556797c0cf4896dfdb", - "x-ms-request-id": "c89db770-ca8b-411c-9e70-5d7d0304bf6d" + "x-ms-request-id": "5af011bd-c4eb-4205-9457-c223b9c8aa41" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "65864206b416964f8237aa0cb158ebf7", "x-ms-return-client-request-id": "true" @@ -322,39 +322,261 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:02:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "65864206b416964f8237aa0cb158ebf7", - "x-ms-request-id": "cbe0edfa-45fd-499d-bfe4-5790c67edcbf" + "x-ms-request-id": "24db8df8-01dc-47bc-a47e-a1b5bd19daa2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/281fe581-3689-4ea3-8b59-24f02299ee61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", + "x-ms-request-id": "307c437b-fc1a-47a2-a6eb-47212e57e2ca" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "554a8e1eca7271c453fbb426be493e0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "554a8e1eca7271c453fbb426be493e0f", + "x-ms-request-id": "16ab142c-6f39-49c1-8f7c-7dff4211eb6c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a5b2c9abee0c4d8eb876460f1fb6ed1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a5b2c9abee0c4d8eb876460f1fb6ed1c", + "x-ms-request-id": "90bf914a-33b2-4177-9715-12d477b42068" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "23ed3f3b960d5284de189d51046351d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "23ed3f3b960d5284de189d51046351d5", + "x-ms-request-id": "a923de37-4163-434f-b4d3-076371de731e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "dfed86c857b32f5efffd9cfc83b4529c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "dfed86c857b32f5efffd9cfc83b4529c", + "x-ms-request-id": "38d51ea3-be10-4cd0-b8a3-148bac12131f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7feb980d1b5b1501445fc6f4513c4955", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:02:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7feb980d1b5b1501445fc6f4513c4955", + "x-ms-request-id": "011b9ae8-d2ed-42d3-b4da-5ce0a7d585e9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "984770240dc8e368e0be2310f988cf2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 02:20:23 GMT", + "Date": "Wed, 26 Aug 2020 02:02:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", - "x-ms-request-id": "be7f259a-a869-4f41-af2f-1a4ed83b5232" + "x-ms-client-request-id": "984770240dc8e368e0be2310f988cf2a", + "x-ms-request-id": "a107830f-c36d-4ee0-bea4-84d6077ca97b" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json index c12404f3a33e0..184d39741ace5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4c423938030c154c900e979a218c7378-0ec82da4e965ab43-00", + "traceparent": "00-aad02445aee8164fab26ea5ae724fabb-ebeb0b08b7ba634b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e3ef9fb39e592ce2f53e789b7d8e07cf", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "375", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e3ef9fb39e592ce2f53e789b7d8e07cf", - "x-ms-request-id": "9b1f5eb0-726d-43f1-8450-26713dd19b0e" + "x-ms-request-id": "d7889db5-8ae3-4bec-81a9-42ee49d3670b" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "d4209962-6afb-4238-b8f9-67da8fbfdb8d" + "operationId": "18d6ad67-def8-42dd-aba4-7b056b7981e1" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "788013e52eb87bac786784b7a8dc7455", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "788013e52eb87bac786784b7a8dc7455", - "x-ms-request-id": "be30be6d-ccdd-4e41-bb36-f75d878cd021" + "x-ms-request-id": "fc103130-8b08-4e56-9d9d-099a9985c41a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "685384454affd31878eb0675dbf4fb4e", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "685384454affd31878eb0675dbf4fb4e", - "x-ms-request-id": "7d1c80c0-2212-4c9c-ad5b-efefc87c7931" + "x-ms-request-id": "97586861-bf9a-4db1-8f51-6e60c87fac46" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6ab639628f0de61751b60dde5a6f5c00", "x-ms-return-client-request-id": "true" @@ -137,26 +137,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ab639628f0de61751b60dde5a6f5c00", - "x-ms-request-id": "d2ed5f8c-b0ab-4816-808a-9b956e6593da" + "x-ms-request-id": "6bf27109-1b2e-4ab1-a1b2-2afc3e784a62" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aba96c6f73539a3ffaac00cc27379f83", "x-ms-return-client-request-id": "true" @@ -174,26 +174,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aba96c6f73539a3ffaac00cc27379f83", - "x-ms-request-id": "63e35564-15c4-43fb-be4c-a1d8be654844" + "x-ms-request-id": "fae8c68d-2727-446b-89c6-9fb7e0d2918b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6e55366c0a26b6476d6c17483c3a7808", "x-ms-return-client-request-id": "true" @@ -211,26 +211,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6e55366c0a26b6476d6c17483c3a7808", - "x-ms-request-id": "df421f3c-9b62-48fd-9c14-33c07e9abb94" + "x-ms-request-id": "f19c7a8c-03ae-4711-9f6d-a4327b2ef9fd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6e05068f504beffaf91b70618f4bbf19", "x-ms-return-client-request-id": "true" @@ -248,26 +248,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6e05068f504beffaf91b70618f4bbf19", - "x-ms-request-id": "910276b2-a9cc-4436-98c6-be7b574b6416" + "x-ms-request-id": "934fad25-0c48-4eb4-b8dd-103d93907267" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "24728916ed1964d925f23ee75bf75ebf", "x-ms-return-client-request-id": "true" @@ -285,26 +285,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "24728916ed1964d925f23ee75bf75ebf", - "x-ms-request-id": "28971f55-5d48-467f-8538-33bc57777e0a" + "x-ms-request-id": "620635ec-17a2-4a5a-8c3d-65c860297241" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "213df73330311b383b66750b99e52722", "x-ms-return-client-request-id": "true" @@ -322,26 +322,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "213df73330311b383b66750b99e52722", - "x-ms-request-id": "d5793884-cb60-487e-aa1f-e5cd9f28687c" + "x-ms-request-id": "b6bb9578-f78b-4262-b832-3355239336a7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b331fdad54c7a1ef2ca1495811139301", "x-ms-return-client-request-id": "true" @@ -359,26 +359,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b331fdad54c7a1ef2ca1495811139301", - "x-ms-request-id": "b7f8e029-c849-40b7-b7ad-b4298136ed04" + "x-ms-request-id": "ad863f8e-042e-4359-bfcb-9c1cecd85e87" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "972eb0bd9e0de6e75056e8b277cecb3f", "x-ms-return-client-request-id": "true" @@ -396,26 +396,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "972eb0bd9e0de6e75056e8b277cecb3f", - "x-ms-request-id": "3c5dc993-fd51-4183-acc2-81430b0786da" + "x-ms-request-id": "5e558e26-b3da-431d-b564-fd85f3b01a27" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5e391ccbaac5dff8079bf490e7e00928", "x-ms-return-client-request-id": "true" @@ -433,26 +433,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5e391ccbaac5dff8079bf490e7e00928", - "x-ms-request-id": "b3c8b2b9-ad7f-4fb9-814e-def09f4b9f71" + "x-ms-request-id": "1f4596ad-35d2-43ec-a652-2ac65d336bec" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e94e73d38fb70f14154b62706b3c2a5d", "x-ms-return-client-request-id": "true" @@ -470,26 +470,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e94e73d38fb70f14154b62706b3c2a5d", - "x-ms-request-id": "1577f1cf-e1fb-4f9e-8462-28500fe01ea4" + "x-ms-request-id": "97378b56-0adf-4118-afb2-e884d7cc5a5e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f58c09d534d9123cb84f9071a957fe70", "x-ms-return-client-request-id": "true" @@ -507,26 +507,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f58c09d534d9123cb84f9071a957fe70", - "x-ms-request-id": "e55af114-8a90-48ad-987b-1711eb9e3c00" + "x-ms-request-id": "07e5b252-22d2-4b15-8cb8-e3cd7f162f84" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "03dfbf4ce1803c87072a4879488773ca", "x-ms-return-client-request-id": "true" @@ -544,26 +544,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "03dfbf4ce1803c87072a4879488773ca", - "x-ms-request-id": "2426a4c1-c92d-4d24-9c73-710318a4ed5b" + "x-ms-request-id": "0f5264ad-43df-4b2d-aa3e-e949882f55b8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ddba977114549e4f373b3168ffa365be", "x-ms-return-client-request-id": "true" @@ -581,26 +581,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ddba977114549e4f373b3168ffa365be", - "x-ms-request-id": "cc397e37-7694-4b76-b1cc-330990fe2255" + "x-ms-request-id": "b302fe62-1d04-434c-9d2c-f7eddb2dcaf5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ab23f24c275df4dd814fedaeecc2ca30", "x-ms-return-client-request-id": "true" @@ -618,26 +618,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ab23f24c275df4dd814fedaeecc2ca30", - "x-ms-request-id": "d3080009-b7c2-4b6f-b233-79f6d80eac94" + "x-ms-request-id": "614e505d-163b-43da-bce1-967c380ac553" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1200c5db219c381b6f40cb44b01f3d64", "x-ms-return-client-request-id": "true" @@ -655,26 +655,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1200c5db219c381b6f40cb44b01f3d64", - "x-ms-request-id": "989c2ca6-7602-42e5-9010-a955cd938752" + "x-ms-request-id": "5a08cf22-e855-4fc0-9123-69117a8784a4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "552d89c5c8634a6db9c65b0427a1b174", "x-ms-return-client-request-id": "true" @@ -692,26 +692,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "552d89c5c8634a6db9c65b0427a1b174", - "x-ms-request-id": "37a6edef-fcb5-4cac-9fc2-273ede935d53" + "x-ms-request-id": "b619d592-2710-4d48-baba-111278984128" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "398d007153a22b22d6eb3b1d5b984362", "x-ms-return-client-request-id": "true" @@ -729,26 +729,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "398d007153a22b22d6eb3b1d5b984362", - "x-ms-request-id": "ccf7e12e-e754-4876-9b08-1b484dfb6983" + "x-ms-request-id": "66ea6c32-9ad3-44a9-9480-8aacf8c86d79" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "63e98812749513cc58b658d5c61711ce", "x-ms-return-client-request-id": "true" @@ -766,26 +766,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "63e98812749513cc58b658d5c61711ce", - "x-ms-request-id": "a401918a-cdda-4071-b40c-511dfd51002e" + "x-ms-request-id": "212f9e7b-6416-426c-943a-8df85487a4b6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b0d3578e039271c266027e788c4fef21", "x-ms-return-client-request-id": "true" @@ -803,26 +803,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b0d3578e039271c266027e788c4fef21", - "x-ms-request-id": "722fca7a-c56b-458e-a800-2b3cad6761fd" + "x-ms-request-id": "2f26e1b8-d38e-485e-8b74-56170350fbea" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9ef1f8834eb8fcdf337ae1ecfb4c64bf", "x-ms-return-client-request-id": "true" @@ -840,26 +840,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:21:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9ef1f8834eb8fcdf337ae1ecfb4c64bf", - "x-ms-request-id": "f3152024-9f87-4f3d-b1f7-17290d47cbcb" + "x-ms-request-id": "c7cc6ecf-3fb9-4a87-930e-ee93efa11d1a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d4209962-6afb-4238-b8f9-67da8fbfdb8d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "038f6dd992c40ed0c677fc93f6538608", "x-ms-return-client-request-id": "true" @@ -868,11 +868,11 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 02:21:04 GMT", + "Date": "Wed, 26 Aug 2020 02:04:18 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "038f6dd992c40ed0c677fc93f6538608", - "x-ms-request-id": "d80eef60-3ef0-49f9-a30a-945908b300ab" + "x-ms-request-id": "2a185338-fd15-42c7-8220-5f12f19fb7c7" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json index 1aacbc3f942e7..279e755c897ce 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4ca5e4e26d4da61b2ae657a3a1808a3c", "x-ms-return-client-request-id": "true" @@ -15,13 +15,13 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2037", + "Content-Length": "1487", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Date": "Wed, 26 Aug 2020 02:02:43 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4ca5e4e26d4da61b2ae657a3a1808a3c", - "x-ms-request-id": "87c0eb44-7a70-4297-9787-b46baa624b16" + "x-ms-request-id": "3efbd4fe-19c9-48f7-8042-eb1110093deb" }, "ResponseBody": { "value": [ @@ -54,24 +54,11 @@ } } }, - { - "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", - "name": "MyLinkedService1", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "41001c1c-0000-0100-0000-5f1fe64d0000", - "properties": { - "type": "CosmosDbMongoDbApi", - "typeProperties": { - "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", - "database": "yuwwang-mongo-db1" - } - } - }, { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", "name": "MyLinkedService", "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0900d20a-0000-0100-0000-5f3f2f480000", + "etag": "0500ae90-0000-0100-0000-5f45c2b90000", "properties": { "type": "AzureDataLakeStore", "typeProperties": { @@ -87,10 +74,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d9f6b2a7dd7a8e4abee98bf919537661-c2342280cda6534b-00", + "traceparent": "00-4f7aae9ee3bf6c498ba8ef89b4884abd-9e83b31816848445-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cc9a74f165c22a2e2ca0bca1b7aac1a7", "x-ms-return-client-request-id": "true" @@ -101,7 +88,7 @@ "Cache-Control": "no-cache", "Content-Length": "467", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Date": "Wed, 26 Aug 2020 02:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -111,8 +98,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "cc9a74f165c22a2e2ca0bca1b7aac1a7", - "x-ms-correlation-request-id": "5ce4e0fc-172c-4222-b9db-cb43ad2d993d", - "x-ms-request-id": "dc763a9e-99ea-46bb-9bc7-3499744a8a16", + "x-ms-correlation-request-id": "14b09686-a497-4376-ae50-0d1d17b6266f", + "x-ms-request-id": "0155a9a2-4ec4-4058-b9d5-e9ba99c4c4b2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,10 +120,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac4023d4b176574e81c51435ae247868-57f4533cbb0bb04e-00", + "traceparent": "00-263148dccb0f36428a15a5f1fa64df20-fa954ad2b0f89b4a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bb1c8e63396c81404e8e0f6fe74fd80f", "x-ms-return-client-request-id": "true" @@ -147,7 +134,7 @@ "Cache-Control": "no-cache", "Content-Length": "586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:11 GMT", + "Date": "Wed, 26 Aug 2020 02:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -157,8 +144,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bb1c8e63396c81404e8e0f6fe74fd80f", - "x-ms-correlation-request-id": "c4be2651-2887-4240-b7a9-292b816bbc6d", - "x-ms-request-id": "955c07ef-3fc9-487a-a77d-ad2610a8d8b5", + "x-ms-correlation-request-id": "525b3609-b03d-45af-9da1-3cf97dbfca80", + "x-ms-request-id": "710e482f-9ab8-40f0-95a2-4f039a4c6eb0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -179,64 +166,17 @@ "etag": "4500400d-0000-0100-0000-5df21ec50000" } }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8236bb0ee70c6d4b893caa6acba4193e-6d059b56a952f74e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "549", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", - "x-ms-correlation-request-id": "595420d1-2c4b-4407-a0b4-7f43277cb6cd", - "x-ms-request-id": "4384c7b2-66ff-4ae3-8045-f17c90718b63", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", - "name": "MyLinkedService1", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "CosmosDbMongoDbApi", - "typeProperties": { - "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", - "database": "yuwwang-mongo-db1" - } - }, - "etag": "41001c1c-0000-0100-0000-5f1fe64d0000" - } - }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6ad30b2e15d4aa458915f9092f73d6eb-3f68fd3b0359974d-00", + "traceparent": "00-544d4c6a4c07a24d989bd64495790cd3-9bbb846d4bb61a49-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "123faf24cf63b7d033197d3456be43dc", + "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -245,7 +185,7 @@ "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:13 GMT", + "Date": "Wed, 26 Aug 2020 02:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -254,9 +194,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "123faf24cf63b7d033197d3456be43dc", - "x-ms-correlation-request-id": "025f96ed-e025-4bc1-8499-bfa83bb24b2d", - "x-ms-request-id": "b4ea7db9-08fe-426e-adb3-c7fc6e22c786", + "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", + "x-ms-correlation-request-id": "328fbb42-d186-4880-9802-5ca53c014dec", + "x-ms-request-id": "384178ec-95ff-4c80-9a3b-b77bd1ad5064", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -269,7 +209,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0900d20a-0000-0100-0000-5f3f2f480000" + "etag": "0500ae90-0000-0100-0000-5f45c2b90000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json index a6a94b4d49b55..585a6dd1b7df9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4f2ace59b3b83ebc6d97535970e1f994", "x-ms-return-client-request-id": "true" @@ -15,13 +15,13 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2037", + "Content-Length": "1487", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:49 GMT", + "Date": "Wed, 26 Aug 2020 02:04:03 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4f2ace59b3b83ebc6d97535970e1f994", - "x-ms-request-id": "0446ce74-3827-4f1a-87e4-3738cddf3cd8" + "x-ms-request-id": "cf527a33-8557-4d1a-8458-043d1da0e8d7" }, "ResponseBody": { "value": [ @@ -54,24 +54,11 @@ } } }, - { - "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", - "name": "MyLinkedService1", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "41001c1c-0000-0100-0000-5f1fe64d0000", - "properties": { - "type": "CosmosDbMongoDbApi", - "typeProperties": { - "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", - "database": "yuwwang-mongo-db1" - } - } - }, { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", "name": "MyLinkedService", "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0900e90a-0000-0100-0000-5f3f2f720000", + "etag": "0500d690-0000-0100-0000-5f45c2f20000", "properties": { "type": "AzureDataLakeStore", "typeProperties": { @@ -87,10 +74,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-cd6d3d880714bc40809d770342a86c48-39ec309d85039645-00", + "traceparent": "00-6fd301149876cf45bb59bd63bde83937-8b37016cc938054f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "684e9f5e21cfb0cbe7d96251e503007e", "x-ms-return-client-request-id": "true" @@ -101,7 +88,7 @@ "Cache-Control": "no-cache", "Content-Length": "467", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:49 GMT", + "Date": "Wed, 26 Aug 2020 02:04:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -111,8 +98,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "684e9f5e21cfb0cbe7d96251e503007e", - "x-ms-correlation-request-id": "0a2e7f18-6350-4aa2-b17b-30228dc6e7c5", - "x-ms-request-id": "5991f48a-ba57-4698-acc1-90b9912a2f94", + "x-ms-correlation-request-id": "7a42c125-8a29-4f87-8ba1-7455a6f4be8d", + "x-ms-request-id": "14c72fcf-2db4-4045-a0b2-e0724790cbc8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -133,10 +120,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f9bac324862494c8914dae76455425c-3d7c17ac1b14dd4d-00", + "traceparent": "00-64f473bbb38bf544aabca2d4cec7683e-202f83638cef704a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "453617658095eadc0682c623600058a9", "x-ms-return-client-request-id": "true" @@ -147,7 +134,7 @@ "Cache-Control": "no-cache", "Content-Length": "586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:49 GMT", + "Date": "Wed, 26 Aug 2020 02:04:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -157,8 +144,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "453617658095eadc0682c623600058a9", - "x-ms-correlation-request-id": "0fd72aee-cc7d-4c04-83b0-b63f0bd7dd26", - "x-ms-request-id": "993811df-ec26-41c7-9424-a40a8cd3442c", + "x-ms-correlation-request-id": "7d631118-b971-44f4-94f3-8aca9ae258f0", + "x-ms-request-id": "782841ca-9bc7-47ae-ba83-6ce0cf361196", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -179,64 +166,17 @@ "etag": "4500400d-0000-0100-0000-5df21ec50000" } }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-bb36c1afd67d6641b45cb23061a90eee-db63ad72e8e6ce4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "549", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", - "x-ms-correlation-request-id": "6c3053d3-9114-42f2-96ea-6f31b7e1fb6b", - "x-ms-request-id": "10a80508-2f1b-4cc4-ad0d-6b62647a2e90", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService1", - "name": "MyLinkedService1", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "CosmosDbMongoDbApi", - "typeProperties": { - "connectionString": "mongodb://yuwwang-consmosdb-account-mongo:@yuwwang-consmosdb-account-mongo.documents.azure.com:10255/?ssl=true;replicaSet=globaldb", - "database": "yuwwang-mongo-db1" - } - }, - "etag": "41001c1c-0000-0100-0000-5f1fe64d0000" - } - }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-26338e9927c56e4c92d9546bb7d755c6-4f5c623afdfe5e40-00", + "traceparent": "00-08b3cf2ec1c2de41aaf8ee34109d5720-111c88905c37e646-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], - "x-ms-client-request-id": "59f4d597b4abddfec264624c5ba750e7", + "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -245,7 +185,7 @@ "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:20:50 GMT", + "Date": "Wed, 26 Aug 2020 02:04:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -254,9 +194,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "59f4d597b4abddfec264624c5ba750e7", - "x-ms-correlation-request-id": "3c30c26c-14fb-4154-943f-27911bd734c8", - "x-ms-request-id": "ea171266-093c-4d34-a214-a194e3aa75a4", + "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", + "x-ms-correlation-request-id": "0898ad53-9b48-452f-8b9b-91da1569f5d3", + "x-ms-request-id": "c84e2357-bf6c-42f9-a25d-98b4715bdca2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -269,7 +209,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0900e90a-0000-0100-0000-5f3f2f720000" + "etag": "0500d690-0000-0100-0000-5f45c2f20000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json index 3feff417617c0..950319acb5127 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-2d5305689e599d4e9071a15005a5a410-cfc3175939318249-00", + "traceparent": "00-0b32c6c87054ad43a8a0067d4c68f090-2f5d5150fcc7f04d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2c2c75c82902031b846bfaaf38527c77", "x-ms-return-client-request-id": "true" @@ -39,33 +39,33 @@ ], "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2c2c75c82902031b846bfaaf38527c77", - "x-ms-request-id": "0e4309e4-b64b-4930-9c25-989a6b5e1433" + "x-ms-request-id": "f77c3afb-abad-4964-bb98-80fd07814369" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", - "recordId": 202077, + "recordId": 212207, "state": "Creating", - "created": "2020-08-21T01:45:59.1966667Z", - "changed": "2020-08-21T01:45:59.1966667Z", + "created": "2020-08-26T02:04:44.1166667Z", + "changed": "2020-08-26T02:04:44.1166667Z", "type": "Notebook", "name": "MyNotebook", - "operationId": "83abbe69-2d38-4e96-9c8b-b03d61ef606e" + "operationId": "9248b1a2-d449-4bfe-aa87-8df6b30b8836" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "35b2b3f75d713635ca0d6c16507a164c", "x-ms-return-client-request-id": "true" @@ -83,26 +83,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "35b2b3f75d713635ca0d6c16507a164c", - "x-ms-request-id": "9c9a8f7c-fa92-4e22-97c9-0107ca504204" + "x-ms-request-id": "c1d6e987-82bf-40f1-b1e3-fc961258cb75" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f56d48f8ceba4bb7714bda5428855083", "x-ms-return-client-request-id": "true" @@ -120,26 +120,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f56d48f8ceba4bb7714bda5428855083", - "x-ms-request-id": "5296994a-32bd-4fa0-9677-c1fa9e5c4fbd" + "x-ms-request-id": "fddba7ca-3890-43c5-8cc5-61d066ee4b1e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "85b77a2146a0ea0641fbe3a111ee8fd7", "x-ms-return-client-request-id": "true" @@ -157,26 +157,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "85b77a2146a0ea0641fbe3a111ee8fd7", - "x-ms-request-id": "c89983ae-7fee-4f74-96c6-5d9e74250b4d" + "x-ms-request-id": "f3db4ab5-d11a-4a48-b6b4-d466f5300a18" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6a9cb498549229c5fb66c42583e00e44", "x-ms-return-client-request-id": "true" @@ -194,26 +194,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6a9cb498549229c5fb66c42583e00e44", - "x-ms-request-id": "e98a2e18-dfb9-45ec-a243-52f05b33fb6e" + "x-ms-request-id": "d96c6afa-a731-442e-922d-b6a38edd8fdf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d6f5e8bd91c2b1ac4183b4bfea153983", "x-ms-return-client-request-id": "true" @@ -231,26 +231,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d6f5e8bd91c2b1ac4183b4bfea153983", - "x-ms-request-id": "927bd7bc-8f7d-4515-9632-8ea6596c927f" + "x-ms-request-id": "1d4e19aa-a5e7-4551-a4df-ca570f70842d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "73bc02bce5e8ccf1b48e893981e16660", "x-ms-return-client-request-id": "true" @@ -268,26 +268,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "73bc02bce5e8ccf1b48e893981e16660", - "x-ms-request-id": "8e394f46-d0da-43a0-aaa5-a4d411ecbc88" + "x-ms-request-id": "d65ba568-036a-45e3-811f-8aec2d1f4900" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "29e49fedb9f8061408eb290fa0063ee5", "x-ms-return-client-request-id": "true" @@ -305,26 +305,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:45:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "29e49fedb9f8061408eb290fa0063ee5", - "x-ms-request-id": "97d7176c-30b6-4f68-9d45-253cc15239cd" + "x-ms-request-id": "0473bb7d-e09e-4c29-9235-7e6cf58226df" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8069412d9a24d75cf729213407732f60", "x-ms-return-client-request-id": "true" @@ -342,26 +342,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8069412d9a24d75cf729213407732f60", - "x-ms-request-id": "5549dab1-62b0-439b-8523-13012dd973c9" + "x-ms-request-id": "f932a3d4-bf5a-45a6-bdcd-b8a1805fccec" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4bd2531c1031038aedb56bfdbce12bae", "x-ms-return-client-request-id": "true" @@ -379,26 +379,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4bd2531c1031038aedb56bfdbce12bae", - "x-ms-request-id": "d8db7a4d-496a-4a75-99d8-e634f18d24b0" + "x-ms-request-id": "0ea04854-61bd-4881-80f3-5823ad8ef616" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "400ba350e678523c420d32cf97e0ff95", "x-ms-return-client-request-id": "true" @@ -416,26 +416,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "400ba350e678523c420d32cf97e0ff95", - "x-ms-request-id": "b0db063e-527d-4555-9476-b4668b0e4d8d" + "x-ms-request-id": "111cf268-6a12-4213-a972-6811f25ce480" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4df3c8bbf2341db4b765936f2f5e1a15", "x-ms-return-client-request-id": "true" @@ -453,26 +453,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4df3c8bbf2341db4b765936f2f5e1a15", - "x-ms-request-id": "e391fc17-69c2-433f-9d50-34477fd2d340" + "x-ms-request-id": "77b17dcd-9cc3-4eaa-8365-498a03ba2d10" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "63e472fdef6736e7177f0824deba6b0d", "x-ms-return-client-request-id": "true" @@ -490,26 +490,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "63e472fdef6736e7177f0824deba6b0d", - "x-ms-request-id": "b45f107b-8922-4895-8e68-849d8ebd2c75" + "x-ms-request-id": "42c10340-c6b9-498c-b2f6-da2be069de59" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f342d6b6deee5e7aefee891252cc23e4", "x-ms-return-client-request-id": "true" @@ -527,26 +527,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f342d6b6deee5e7aefee891252cc23e4", - "x-ms-request-id": "ea3b0fde-981e-4a9b-811d-78bdb8c42b1c" + "x-ms-request-id": "bef49f84-c1e9-45b0-b4a0-92d300bf3ef7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "24d21cf29bfbcc2de0bc35b4e9903efc", "x-ms-return-client-request-id": "true" @@ -564,26 +564,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "24d21cf29bfbcc2de0bc35b4e9903efc", - "x-ms-request-id": "b13b87e6-964c-4e6f-a8fb-3e8e7136eee8" + "x-ms-request-id": "fb4881de-aa62-4dc3-97a5-667981949f2f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "58b986fa261c1e27f786747865d5e34a", "x-ms-return-client-request-id": "true" @@ -601,37 +601,259 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:04:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "58b986fa261c1e27f786747865d5e34a", - "x-ms-request-id": "d11420f3-8ab6-4d8f-b3cd-f4bb2f67ee1d" + "x-ms-request-id": "b3c3b952-b17d-46f4-9e93-3e5b08432f12" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/83abbe69-2d38-4e96-9c8b-b03d61ef606e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:04:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", + "x-ms-request-id": "0894b297-4106-4918-8607-fad7d1020a40" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cc188dafca13ccc8f5b32c7526b5660b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:04:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cc188dafca13ccc8f5b32c7526b5660b", + "x-ms-request-id": "614f7ee3-176d-44b2-bafc-1cd902969e7b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c458ead97d5eb414749eb0a613f57531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:04:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c458ead97d5eb414749eb0a613f57531", + "x-ms-request-id": "a49a0097-8652-439f-b6d8-6423f171afdd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d8c8151116bd91365c65cc34199bf4f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:04:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d8c8151116bd91365c65cc34199bf4f3", + "x-ms-request-id": "ddce302b-0da1-4e00-9386-1e025aca3300" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "be58070fb06d3200796357751a21b8ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:04:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "be58070fb06d3200796357751a21b8ff", + "x-ms-request-id": "57428ee3-fd70-4199-bffc-a450ba2c313e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1064fb3d8dedc24eb3c768f8b1df9ad9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:04:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1064fb3d8dedc24eb3c768f8b1df9ad9", + "x-ms-request-id": "600ead02-ec19-4d09-92f0-1a7e80815bdd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0c96bcaab79d61c415955f59bec1763a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:02 GMT", + "Date": "Wed, 26 Aug 2020 02:04:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -640,9 +862,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", - "x-ms-correlation-request-id": "97ab0549-6e22-420f-b54e-7dec3b4928d5", - "x-ms-request-id": "f2ac8948-f083-411d-830d-0da2a1229a21", + "x-ms-client-request-id": "0c96bcaab79d61c415955f59bec1763a", + "x-ms-correlation-request-id": "2626e5f2-ba53-45bc-987e-2ae9cbe94ce4", + "x-ms-request-id": "56e0c3a9-7ba6-4037-97ef-720124728c9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -659,7 +881,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "0900af04-0000-0100-0000-5f3f275a0000" + "etag": "0500ec90-0000-0100-0000-5f45c3410000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json index b3582e326fbd9..aea68c9dd9977 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-963ea412ce5a284d825e44a71dd2b45c-f02d420f58294141-00", + "traceparent": "00-1eee9237868d06499384e19de81ae80d-16c6b8a82acc3244-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d397c27d0e008c59ac54b85213fc9d18", "x-ms-return-client-request-id": "true" @@ -37,35 +37,35 @@ "Location", "Retry-After" ], - "Content-Length": "368", + "Content-Length": "366", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d397c27d0e008c59ac54b85213fc9d18", - "x-ms-request-id": "8b40aa30-52e3-4b52-a717-39ec02f2bb19" + "x-ms-request-id": "9c779f8c-009c-47be-9d22-3b6f15c18804" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", - "recordId": 202079, + "recordId": 212208, "state": "Creating", - "created": "2020-08-21T01:46:39.99Z", - "changed": "2020-08-21T01:46:39.99Z", + "created": "2020-08-26T02:05:58.2Z", + "changed": "2020-08-26T02:05:58.2Z", "type": "Notebook", "name": "MyNotebook", - "operationId": "27fe76b0-2c4d-414a-9b33-564e35c7bc28" + "operationId": "23b3075e-9127-4f54-b9db-0156239ba230" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "96d9b91820b763c36e26acff578054e5", "x-ms-return-client-request-id": "true" @@ -83,26 +83,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "96d9b91820b763c36e26acff578054e5", - "x-ms-request-id": "3b19a927-f593-481e-bdd1-bce56807b880" + "x-ms-request-id": "1b9d37ea-d8d0-488c-af12-4a08d717f0e6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6870cea03a67392e3499352011f9b798", "x-ms-return-client-request-id": "true" @@ -120,26 +120,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6870cea03a67392e3499352011f9b798", - "x-ms-request-id": "89494c7d-72e2-42fa-8ab3-8f95d53aecfb" + "x-ms-request-id": "1659fd82-6ed3-4af8-b751-44e56843e3cc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5a39898e0722446052d0a701988ea51d", "x-ms-return-client-request-id": "true" @@ -157,26 +157,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5a39898e0722446052d0a701988ea51d", - "x-ms-request-id": "a8749830-003d-4039-9052-b76814e0afeb" + "x-ms-request-id": "1eefb078-a48f-4819-bc11-72aa9e40ab2d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "06bf178b5da4ddc78aa0611deba25275", "x-ms-return-client-request-id": "true" @@ -194,26 +194,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "06bf178b5da4ddc78aa0611deba25275", - "x-ms-request-id": "c33306bd-e871-48a6-b213-5842b0f905d2" + "x-ms-request-id": "2d728a3a-074d-4f31-936c-8b5d0086dd10" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cd71136ffa4799c36d2b1597922da1a6", "x-ms-return-client-request-id": "true" @@ -231,26 +231,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cd71136ffa4799c36d2b1597922da1a6", - "x-ms-request-id": "007514cc-96fb-416e-84e3-0b63cdea2810" + "x-ms-request-id": "94938ccb-1dcd-4efc-ba9d-bb2543ad02b7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fa9517f4b03931f4c25bcf82a54259b0", "x-ms-return-client-request-id": "true" @@ -268,26 +268,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fa9517f4b03931f4c25bcf82a54259b0", - "x-ms-request-id": "05a9b82b-6268-4200-b785-479c089348bf" + "x-ms-request-id": "ba870c59-4509-44cc-b36d-123a7cfb0360" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8492327ed71d90d65325997947304a5d", "x-ms-return-client-request-id": "true" @@ -305,148 +305,37 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8492327ed71d90d65325997947304a5d", - "x-ms-request-id": "12cb50e2-9f59-46e7-89ae-13caa9bf780b" + "x-ms-request-id": "dbdf0d07-d221-46d1-9490-c921b14684ff" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", - "x-ms-request-id": "e13eb57a-86cc-45ba-a504-39da54246c33" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "601864d11c9b1c894105a614177bea91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "601864d11c9b1c894105a614177bea91", - "x-ms-request-id": "f92c85fe-06db-4ba7-b6c4-0376b5d36f01" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ea837110851826a3f6d364ddccea6512", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ea837110851826a3f6d364ddccea6512", - "x-ms-request-id": "343e8580-e38a-4da4-a3e2-87d3149bdf6b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27fe76b0-2c4d-414a-9b33-564e35c7bc28?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e2a76d31ea17e2c2320c9207b127a6a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:42 GMT", + "Date": "Wed, 26 Aug 2020 02:05:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -455,9 +344,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e2a76d31ea17e2c2320c9207b127a6a4", - "x-ms-correlation-request-id": "71408c19-a039-470b-bd90-b1db5e705941", - "x-ms-request-id": "64668c81-fe37-447d-865c-bf32d24de298", + "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", + "x-ms-correlation-request-id": "86fe9ffa-ef67-4173-a4c3-6dc0d28fed0c", + "x-ms-request-id": "e08c2f57-7e6a-455d-9b58-dfc39e623ee5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -474,7 +363,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "0900da04-0000-0100-0000-5f3f27820000" + "etag": "05000591-0000-0100-0000-5f45c3870000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json index bbfced73aba9b..5fcd809139e17 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6ab9fd33ac4847b7bd5473b33f7185-6a82559a3c2f8b4a-00", + "traceparent": "00-5125e15b6c214c46b50d3e8fc68e8a2a-e258567c66f0e445-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "da3057907c3235de46135faf9f4b7713", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "da3057907c3235de46135faf9f4b7713", - "x-ms-request-id": "4d58cdd2-a98b-419a-a478-9439773c61f6" + "x-ms-request-id": "baa5ed96-f15b-4c09-941c-4e55eebc5d46" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "MyNotebook", - "operationId": "27b2330c-774a-416e-871b-d73c4be2b676" + "operationId": "a0d9dac4-0d42-43df-8479-d5a9104c6be6" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5394a0bac0c5b6b18288a94b04598030", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5394a0bac0c5b6b18288a94b04598030", - "x-ms-request-id": "8d021799-26b5-44d9-82c0-a3759eb7a7b6" + "x-ms-request-id": "93f19b93-da96-4010-9696-f8c5702b62bc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "84a1f57cdb37372be3ff5437e9c4e556", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "84a1f57cdb37372be3ff5437e9c4e556", - "x-ms-request-id": "cac0d4e4-ab61-490f-a5c5-054fc1405c60" + "x-ms-request-id": "a969896e-768e-47bf-ba17-559d74367c3c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fef4fb4c24b6ed4db49bdbd1af292c2c", "x-ms-return-client-request-id": "true" @@ -137,26 +137,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fef4fb4c24b6ed4db49bdbd1af292c2c", - "x-ms-request-id": "f09059fe-2bab-4300-bd2f-a903743c9c93" + "x-ms-request-id": "5cec78fa-1bfd-4a2c-b7ad-afadda1606b9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5a9c617a434edf2d755c70c66b7accbd", "x-ms-return-client-request-id": "true" @@ -174,26 +174,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5a9c617a434edf2d755c70c66b7accbd", - "x-ms-request-id": "7a920ae1-fecb-4a4e-ab29-0c0d0b4759a0" + "x-ms-request-id": "d3f2b071-ee7c-4fe9-a0fb-12720958d60a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "08fe52a381655879a7b3cf9b005a88b9", "x-ms-return-client-request-id": "true" @@ -211,26 +211,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "08fe52a381655879a7b3cf9b005a88b9", - "x-ms-request-id": "fda3b1be-beb1-4854-8ef2-77e19f18a80e" + "x-ms-request-id": "4d9ce57b-0484-44de-b1de-72d9566f1ff8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "88bc28d28b280808cd15895ab387823a", "x-ms-return-client-request-id": "true" @@ -248,26 +248,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "88bc28d28b280808cd15895ab387823a", - "x-ms-request-id": "119e5127-0d4f-4c51-a224-80945d4351be" + "x-ms-request-id": "de44760a-b5e6-4f77-84eb-7d37deee07c0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5d2e1dcf232af9c6e743b29a7492df1a", "x-ms-return-client-request-id": "true" @@ -285,26 +285,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5d2e1dcf232af9c6e743b29a7492df1a", - "x-ms-request-id": "4c0cdf68-5c5e-4d7a-8e64-2cc2540d93a6" + "x-ms-request-id": "5d45e0d7-7c85-401d-b968-1686dea3e05b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "42f3b6d444bd179549f63a50f71fa520", "x-ms-return-client-request-id": "true" @@ -322,26 +322,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "42f3b6d444bd179549f63a50f71fa520", - "x-ms-request-id": "9ef1da0a-9347-4e82-aeb8-804cf74fc602" + "x-ms-request-id": "1ac8f3c6-66ba-49c7-ab86-5c58fba96ed2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e2cb94312a2cae8f61c3a0e4d96d943b", "x-ms-return-client-request-id": "true" @@ -359,26 +359,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e2cb94312a2cae8f61c3a0e4d96d943b", - "x-ms-request-id": "eb5ff2c0-b8ab-47a5-879a-dc19e7ad93c7" + "x-ms-request-id": "f5d8abfa-a500-4e4c-8eb7-ff2ff06dc417" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fc856e353f938b7d88161334e87601c8", "x-ms-return-client-request-id": "true" @@ -396,26 +396,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fc856e353f938b7d88161334e87601c8", - "x-ms-request-id": "9d82a5fb-98c3-4f96-bb88-9841b9dfb934" + "x-ms-request-id": "67361564-937a-4918-85db-4baa13a63c05" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "df68919efdc6a9ee2744e0faa4b13edc", "x-ms-return-client-request-id": "true" @@ -433,26 +433,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "df68919efdc6a9ee2744e0faa4b13edc", - "x-ms-request-id": "3b241d57-6faf-404a-aa48-2dcd50027235" + "x-ms-request-id": "b0310e69-70f4-466b-8971-dc5f5ec92b02" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "881afe61a899f28c16405916165ac5eb", "x-ms-return-client-request-id": "true" @@ -470,26 +470,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "881afe61a899f28c16405916165ac5eb", - "x-ms-request-id": "1c7ee091-4171-4d9f-ab11-87ab3329b5d0" + "x-ms-request-id": "ef5e477e-4c5e-41b3-b520-a23f73ac98b4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4745d7c1b405387580dcd54f5e83e7d6", "x-ms-return-client-request-id": "true" @@ -507,26 +507,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4745d7c1b405387580dcd54f5e83e7d6", - "x-ms-request-id": "a90057d5-87c1-4c84-a223-6ee2c144d542" + "x-ms-request-id": "8f891094-ee3b-487b-b6bf-e0de45b9ed48" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e9d337d7795cf62e0475c886a3d893cd", "x-ms-return-client-request-id": "true" @@ -544,26 +544,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e9d337d7795cf62e0475c886a3d893cd", - "x-ms-request-id": "2c8529de-ecdd-4f2f-9eec-d95d1f3af306" + "x-ms-request-id": "098e92bb-6f2e-475c-b0de-2f12d41da1dc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cc38f57ef66bacd689e108bdd33d9493", "x-ms-return-client-request-id": "true" @@ -581,26 +581,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cc38f57ef66bacd689e108bdd33d9493", - "x-ms-request-id": "23b429f3-02de-48bf-bb26-d54e476c118e" + "x-ms-request-id": "d70191bf-de9b-41ba-9afe-beef61635006" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "de3e8358dc87488ea94f428febef95a7", "x-ms-return-client-request-id": "true" @@ -618,39 +618,261 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:05:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "de3e8358dc87488ea94f428febef95a7", - "x-ms-request-id": "cf43f333-9f79-463c-9081-3f7e03e2f1c1" + "x-ms-request-id": "4de2d534-d0f1-43d4-b105-1c5270fbf8e5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27b2330c-774a-416e-871b-d73c4be2b676?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", + "x-ms-request-id": "cc136f20-b289-4a74-8b39-c90a17468194" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "202d35e1b49aa24667f0221cb447c099", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "202d35e1b49aa24667f0221cb447c099", + "x-ms-request-id": "24d5bcf9-663a-4260-809f-fd62bd40ea13" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cb74614c2c6c3d48185d7d607b13d838", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cb74614c2c6c3d48185d7d607b13d838", + "x-ms-request-id": "21046951-5c05-47c5-bd80-4a4dd7e35ca5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b6ad7a2c75c2940dc12e005af84e2c19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b6ad7a2c75c2940dc12e005af84e2c19", + "x-ms-request-id": "4782a044-a7d6-46fc-8b5e-74172606660d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0e2ec66657fcb55becef073d36e52654", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0e2ec66657fcb55becef073d36e52654", + "x-ms-request-id": "f6f731ac-8afa-46f8-a13b-16dfd0175054" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "39f0ea180a99d6d754e0093d2bee45ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "39f0ea180a99d6d754e0093d2bee45ca", + "x-ms-request-id": "a7d8bb04-ea0c-4176-9124-8fd7b58c60be" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b4fa6430c9e4d43c1ff8c9d36dcf5ddc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 01:46:15 GMT", + "Date": "Wed, 26 Aug 2020 02:05:43 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", - "x-ms-request-id": "9346cbd4-4ad1-4c5e-a48a-989d7452c33f" + "x-ms-client-request-id": "b4fa6430c9e4d43c1ff8c9d36dcf5ddc", + "x-ms-request-id": "f220eacd-edf4-4af1-8868-30d11802bac0" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json index bbcc7509ba8a7..beb4bb13297d2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92aeb6731cf64b4094ec3e0cf41033d3-196995955d111a4b-00", + "traceparent": "00-634d3efffb961443b84c313158cf2371-fe404efb0dbca446-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "405f55d1db7830638248974ea08dc998", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "405f55d1db7830638248974ea08dc998", - "x-ms-request-id": "ba6efab6-08fa-4895-a2c1-559e5b944813" + "x-ms-request-id": "c0b48e43-94a8-46d7-a3a7-e7cba9685ac0" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "MyNotebook", - "operationId": "e3981896-c6b4-4bc9-9dd4-76ef047b1113" + "operationId": "2386f157-2d69-48f6-81b7-6b88bd5b1c07" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0f4a7c5793c6eafd5a7f7433d49eff70", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0f4a7c5793c6eafd5a7f7433d49eff70", - "x-ms-request-id": "694703b7-d804-457d-820e-c236b6d84082" + "x-ms-request-id": "56c34b99-3a11-47e3-98cc-f68b414377b1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0940fe5ee806ab42136645f5b5bb782c", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0940fe5ee806ab42136645f5b5bb782c", - "x-ms-request-id": "d7b3b757-c13f-4076-ae9f-0d854c7b8717" + "x-ms-request-id": "a9c7cd2e-49be-4e00-85d5-3c2d4ae05dca" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "24f7b130ba4221d10b8af031b10e235c", "x-ms-return-client-request-id": "true" @@ -137,2888 +137,39 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "24f7b130ba4221d10b8af031b10e235c", - "x-ms-request-id": "dcb29e46-7eb1-46a3-8541-821a2c8c8b9d" + "x-ms-request-id": "e626b532-3156-4d0f-85e6-a37afadf8c2a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:00 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", - "x-ms-request-id": "60b8c71b-54c3-4465-a83d-8b345551b72d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "23024707daa7a42d2c1ffe7cf810fa04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:00 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "23024707daa7a42d2c1ffe7cf810fa04", - "x-ms-request-id": "1831f136-bf81-4648-80e9-4ceb8d2bb95a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ff72e942be712217d188eaa4be71d303", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:00 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ff72e942be712217d188eaa4be71d303", - "x-ms-request-id": "b953fa14-7efc-4b84-b6d8-c3060680f559" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6a2a5155000ba8b488a58df50f637629", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:00 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6a2a5155000ba8b488a58df50f637629", - "x-ms-request-id": "71170375-fb1c-43e4-8f33-673bd55b138f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "641df7a43595482d2fe0511ff089e5ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "641df7a43595482d2fe0511ff089e5ba", - "x-ms-request-id": "efb9d3db-3c96-4a3e-8f88-4f8dabeecb23" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a626fa4c90e542f934c977cc3022126e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a626fa4c90e542f934c977cc3022126e", - "x-ms-request-id": "e16caf1d-4f29-49b3-8805-3667b1cd36b0" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c7ffc0116e54206e23e23a2baf95b8ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c7ffc0116e54206e23e23a2baf95b8ff", - "x-ms-request-id": "3dbb4ff3-5591-4d93-9b78-846f81b6f496" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "14a9d3bfd03d1343feda30cbbe61170c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "14a9d3bfd03d1343feda30cbbe61170c", - "x-ms-request-id": "c2497ef6-3809-441c-9d74-3e3df501ee95" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "300de2cd1d89dd658c06830355cd929f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "300de2cd1d89dd658c06830355cd929f", - "x-ms-request-id": "fd56d702-2842-40f4-84e7-b9f8af5c9ed8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5d0c7811fd7941317cebc9793ea262c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5d0c7811fd7941317cebc9793ea262c2", - "x-ms-request-id": "ed3f6d95-dada-45c5-a8a9-dc7c4cb7b4ce" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cc5d2dca8887a2756dcb88374d3fbe30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cc5d2dca8887a2756dcb88374d3fbe30", - "x-ms-request-id": "d0b6ea2d-c8aa-4a88-8e59-36df744c421c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "46ba9048ba54cf93b1ccb39d54eb9fea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "46ba9048ba54cf93b1ccb39d54eb9fea", - "x-ms-request-id": "03f8e844-dc3a-40e6-a1f6-262be5c152e7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2839c0a3c66f8917026aefad75faf43d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2839c0a3c66f8917026aefad75faf43d", - "x-ms-request-id": "afad7e99-86b9-4d26-9526-7145a587b8a9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ad31992d1ce80f6e998e1bbbd4d74d82", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ad31992d1ce80f6e998e1bbbd4d74d82", - "x-ms-request-id": "924effdb-4123-4100-b7d6-be6dfa6f69ce" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8c939d2b950582c0793043eacbe659b6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8c939d2b950582c0793043eacbe659b6", - "x-ms-request-id": "05471f16-95aa-4f55-aaac-c08f4d0ee019" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bb6f75d8f2b98702522a8ee1aa5cb42a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bb6f75d8f2b98702522a8ee1aa5cb42a", - "x-ms-request-id": "824593a5-f905-41da-8e3a-a7e960f828b7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d8826d1c67679737d8af33b7d88344b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d8826d1c67679737d8af33b7d88344b3", - "x-ms-request-id": "c2380ecb-076a-463b-bff8-4edc5d95e6c4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5fe36434926738c89b0c3adb07ded71d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5fe36434926738c89b0c3adb07ded71d", - "x-ms-request-id": "c327cc61-46d0-4923-b615-1c20283df351" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5dcd187b8163704f3dd7e209bf4aaece", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5dcd187b8163704f3dd7e209bf4aaece", - "x-ms-request-id": "edf33eea-9c06-4424-af8f-7ce49d3298da" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "46addae6557989c3a4493c5b2d5c90f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "46addae6557989c3a4493c5b2d5c90f9", - "x-ms-request-id": "542276d0-581b-42fd-ad93-72f86a3c3964" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c03b16d8e6b6b2501472218fb0be7950", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c03b16d8e6b6b2501472218fb0be7950", - "x-ms-request-id": "7bc85a02-d741-4a05-8c06-33e7baad704b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2cf56c5d913126a35544b91945f443e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2cf56c5d913126a35544b91945f443e1", - "x-ms-request-id": "c62d5e9f-5bbc-4f19-92a4-ae95a65338e8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a831e847ee0eff188afa31063433d9e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a831e847ee0eff188afa31063433d9e5", - "x-ms-request-id": "6bd1069c-1fbb-4570-867b-8f133a2bf7f6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c0fdebd0636746c772156a722d366d20", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:07 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c0fdebd0636746c772156a722d366d20", - "x-ms-request-id": "44df14fe-8c4d-44ec-b333-6941ddc4e650" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c7483f2fd08d6f4154f5a237609df222", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:07 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c7483f2fd08d6f4154f5a237609df222", - "x-ms-request-id": "4e4ba76c-4aab-478f-9aa3-a91ffcd55ca3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5949d36a82f7e37a20ea35f983a6d253", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:07 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5949d36a82f7e37a20ea35f983a6d253", - "x-ms-request-id": "e6901cc5-3bc0-4b15-ad94-b26e7e82f91b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f4d7108c12eaff58aa8d6c71c090e6d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:07 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f4d7108c12eaff58aa8d6c71c090e6d5", - "x-ms-request-id": "6b18b692-f318-472e-941e-2e191a8509eb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5907482214edac29c564a6a29a48ebae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:07 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5907482214edac29c564a6a29a48ebae", - "x-ms-request-id": "9a776304-5ead-4dc2-8983-9ee3d8016240" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4faa4e23fec658377a49af6915082390", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4faa4e23fec658377a49af6915082390", - "x-ms-request-id": "fea061f7-e82d-4d20-8146-78233510496e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3bd66003789e7866e72a2e866bb66561", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3bd66003789e7866e72a2e866bb66561", - "x-ms-request-id": "862a5488-6ec6-4586-ba52-18d621719b9d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "724ebea297e5240f10afdfa465bf97bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "724ebea297e5240f10afdfa465bf97bc", - "x-ms-request-id": "2cd05581-06af-44ef-8e1b-fa00aa06bdce" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3a9e1641b071aa0fe832689ccfb1ecc4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3a9e1641b071aa0fe832689ccfb1ecc4", - "x-ms-request-id": "cccc9cff-928b-4d48-a3c7-b58f2ee1ed8a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "56c74de4b0ba6caa50b22bef99c11327", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "56c74de4b0ba6caa50b22bef99c11327", - "x-ms-request-id": "8e7a6de2-a0d5-41f2-96db-668d82fd571d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "554472922a17f1f0afa389b22e73555e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "554472922a17f1f0afa389b22e73555e", - "x-ms-request-id": "873d1e64-ca52-419d-a8e1-53a448dedf9b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "17c01bc240f890026b31e9bf85201126", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "17c01bc240f890026b31e9bf85201126", - "x-ms-request-id": "4eaafe80-acfe-45bf-84a4-0718a07a9022" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5d09401f976db9ac5cd5a71627f83ddd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5d09401f976db9ac5cd5a71627f83ddd", - "x-ms-request-id": "0ece2502-76ba-4777-9e0a-fc7eb7576824" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7e2dcd5cfb01522e6fb4eae640316c8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7e2dcd5cfb01522e6fb4eae640316c8e", - "x-ms-request-id": "eaf512d3-3c39-48ec-9c8a-0fcb6e6385cb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ee936392f8692af06e06bb2399ec6973", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ee936392f8692af06e06bb2399ec6973", - "x-ms-request-id": "974b19e3-b436-49c7-855a-9f33fed8d142" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b7620cf392f3242411b7edb9adc6792b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b7620cf392f3242411b7edb9adc6792b", - "x-ms-request-id": "f5c1cfb0-31ed-41fb-9cd6-ecf43c65ec5c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c38318684f646474dc020ffa400bb983", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c38318684f646474dc020ffa400bb983", - "x-ms-request-id": "3f590cdc-dc84-4192-a02c-afa1984c65b1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "34f2774ab4ce009b3e6fddb20a377ca8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "34f2774ab4ce009b3e6fddb20a377ca8", - "x-ms-request-id": "66f22efd-49ff-48ce-95fa-be25a76d0f60" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "80ba8f8da568a40e98fedbf08229e305", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "80ba8f8da568a40e98fedbf08229e305", - "x-ms-request-id": "4fabfa7a-346f-44e8-b84e-ea109dec00d8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "366e6afe45d3b45d7c8384f572c15aa4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "366e6afe45d3b45d7c8384f572c15aa4", - "x-ms-request-id": "4100fc0b-8733-48e1-bcce-9f38d7c75727" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b06d67853851a51a684e9bcfd8ab7d14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b06d67853851a51a684e9bcfd8ab7d14", - "x-ms-request-id": "868cfef4-d6f3-43e8-907e-0f5d4b865905" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9fb3d78b46c947d4320503e5211931d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9fb3d78b46c947d4320503e5211931d6", - "x-ms-request-id": "83064f0e-7114-4bdc-bbaf-63bbdd7fe3e9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1b6a37a433bcc5b450c9ce85a98ddbd1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1b6a37a433bcc5b450c9ce85a98ddbd1", - "x-ms-request-id": "af87070c-c0c7-47a5-94dd-e91faf05786f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9b696f06ba0d3fda92267d4b3534834e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9b696f06ba0d3fda92267d4b3534834e", - "x-ms-request-id": "0aa7e220-0fcd-434d-9bed-552b0f5f68a2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a12bc51c6140585823ee4e00784e9da5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a12bc51c6140585823ee4e00784e9da5", - "x-ms-request-id": "a8316165-16d8-4424-a3b8-fcdc5394db74" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b1df322a96b0e9c85c2b8896b568901c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b1df322a96b0e9c85c2b8896b568901c", - "x-ms-request-id": "e3a9ea26-cb6d-44c6-8a8b-ac3fccdf106e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e4687f453961a4901711781f6bdac743", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e4687f453961a4901711781f6bdac743", - "x-ms-request-id": "47f9f9d5-adb8-4437-b2e2-fb81d3ec9609" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0320d888d254869efd414515d8c2a2ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0320d888d254869efd414515d8c2a2ba", - "x-ms-request-id": "4adba54d-15b1-4942-8a9a-a15b8a7777af" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f8bb325db9e6f144a13b9a9e1ea97e81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f8bb325db9e6f144a13b9a9e1ea97e81", - "x-ms-request-id": "56ced4b1-25e2-4d10-8275-ac2063cf9665" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "dd0d44638d4772c7e0e2e71ff37bcb54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "dd0d44638d4772c7e0e2e71ff37bcb54", - "x-ms-request-id": "1c0a60b3-0592-4ae6-ac22-a335311063c9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "39c1bd6ece1fce5d942f611938ff6754", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "39c1bd6ece1fce5d942f611938ff6754", - "x-ms-request-id": "ad8b897f-67b9-458a-b132-9cf75b755c2a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "94b1c4c3c5b4d0726a481703d224fd25", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "94b1c4c3c5b4d0726a481703d224fd25", - "x-ms-request-id": "b25f2b0b-b679-4e3c-8c90-90e0461aa45b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "602f456f44e79562e63f48172bae3ae0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "602f456f44e79562e63f48172bae3ae0", - "x-ms-request-id": "168e994b-449a-416a-9147-c60d8d323af7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2f5c927b37caa99f4bf1cfd7b65afb70", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2f5c927b37caa99f4bf1cfd7b65afb70", - "x-ms-request-id": "de0d76f1-0a79-452f-9d4c-90cea4431129" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f2a93c3207d07e6c621cad757c5aa4bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f2a93c3207d07e6c621cad757c5aa4bb", - "x-ms-request-id": "2ccffb84-cd85-4e7d-b9d4-409c3c2f1c53" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3f88370dcdc7385ba68615f5758ade8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3f88370dcdc7385ba68615f5758ade8c", - "x-ms-request-id": "b0c59709-d65a-48f7-a350-e819a7624124" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "efe5d8444704731026ddcdae8a2a2df0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "efe5d8444704731026ddcdae8a2a2df0", - "x-ms-request-id": "a87fe88c-d01c-4c0b-8478-4a2db24f7188" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7fc9134cbbd265a8e1714c4af17609d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7fc9134cbbd265a8e1714c4af17609d7", - "x-ms-request-id": "3b794925-c9b5-4fb8-abf1-6d4aa1d886a3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a331203db575c5b7261419e9ffacae7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a331203db575c5b7261419e9ffacae7b", - "x-ms-request-id": "7cba78bb-0632-479c-bb98-724df4468e43" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "62a924585fc188ba2f7f0d93fbc682af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "62a924585fc188ba2f7f0d93fbc682af", - "x-ms-request-id": "ed1ee204-9b95-4e1c-b447-ec49e4b7ff8e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6970f6d489f9977b5b0358bea1be6634", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6970f6d489f9977b5b0358bea1be6634", - "x-ms-request-id": "873c3edc-4855-4393-92a7-6bccab3ab42c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cdf1d0c3a6cdde1566a873f5a824ca60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cdf1d0c3a6cdde1566a873f5a824ca60", - "x-ms-request-id": "f16a9744-a217-4eca-9c78-c7da6eed37f7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "08146a92443cce82a81206bd06fce771", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "08146a92443cce82a81206bd06fce771", - "x-ms-request-id": "84b004e2-bd77-46d0-8374-b7787fdede96" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2bcfd919b4d52ee1e09202511685ef37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2bcfd919b4d52ee1e09202511685ef37", - "x-ms-request-id": "9785ca04-df22-409c-848a-24ed11c52115" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "372bf8385daa7ef84d2224bb9f57d76a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "372bf8385daa7ef84d2224bb9f57d76a", - "x-ms-request-id": "0084c05c-54b9-4c66-9f2f-226eb32324b2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cfdc02c09f54dd8b88e627a94231b823", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cfdc02c09f54dd8b88e627a94231b823", - "x-ms-request-id": "8f2a5aa3-c2ae-45d6-b105-15d34d81bb0c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0e85cf22b0d0bbc6e051ddb290258e88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0e85cf22b0d0bbc6e051ddb290258e88", - "x-ms-request-id": "7b95d444-ad95-442f-b959-6d43db82ede2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "139098ba20a999e36d4eaec3364e3c1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "139098ba20a999e36d4eaec3364e3c1c", - "x-ms-request-id": "8f7bcddf-34df-4bb7-9fde-8b24c5755a9d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d0980169c9d2109a3b21ee02c2d84c62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d0980169c9d2109a3b21ee02c2d84c62", - "x-ms-request-id": "7c9ed8da-2b4c-4cd9-9db7-a9338592ef72" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "aaef9e57a5a00279ebeba08102038591", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "aaef9e57a5a00279ebeba08102038591", - "x-ms-request-id": "40c5b1cf-88ac-4251-a522-0a8c3f7feff2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8f49c015be8df1b6fd7fd78731e0d794", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8f49c015be8df1b6fd7fd78731e0d794", - "x-ms-request-id": "14ac8651-714c-4a27-9b7b-d1466e1abb2f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "976b4b02925fc47b8795e5e728190e38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:19 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "976b4b02925fc47b8795e5e728190e38", - "x-ms-request-id": "4dbdd3b8-007c-40c5-b05c-281015e0a1cd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "01ed5c9cbc8f99d5e8feac20cdf1d10a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:19 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "01ed5c9cbc8f99d5e8feac20cdf1d10a", - "x-ms-request-id": "1dbfaeff-8105-415b-9479-0de83cd73514" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b67e0b13ed978232458408f7d8cec8e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:47:19 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b67e0b13ed978232458408f7d8cec8e4", - "x-ms-request-id": "57aa95a6-c8d0-486a-91fa-bae08dddc8bc" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e3981896-c6b4-4bc9-9dd4-76ef047b1113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d4eb9f71d6f3450575d1ae61e55af795", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 01:47:19 GMT", + "Date": "Wed, 26 Aug 2020 02:06:22 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d4eb9f71d6f3450575d1ae61e55af795", - "x-ms-request-id": "005aed81-6b0d-4155-8b53-a73f7705bc35" + "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", + "x-ms-request-id": "31275fb7-5732-4f56-85d1-a0f920b50c2f" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json index 34612c81327fe..1481cf0432380 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a353c8c84d48d750254927b42874ee69", "x-ms-return-client-request-id": "true" @@ -15,13 +15,13 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "5903", + "Content-Length": "6291", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:57 GMT", + "Date": "Wed, 26 Aug 2020 02:05:19 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a353c8c84d48d750254927b42874ee69", - "x-ms-request-id": "31bc8d56-7bf4-450e-92fe-8dfcef464fdd" + "x-ms-request-id": "0c1daf31-06c0-4fd4-a604-19f3a93eb6c1" }, "ResponseBody": { "value": [ @@ -277,6 +277,22 @@ } ] } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "name": "MyNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "etag": "0500ec90-0000-0100-0000-5f45c3410000", + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + } } ] } @@ -286,10 +302,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8040ac6799ccec4facc3a7fd25c3d1f3-764ff4d627b1fd4b-00", + "traceparent": "00-7fd7ba58fcd1a74ea6827edbd5e78ad7-78308c194fbb0840-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4a0bc19ed1af8774eec1dd87ae8fc195", "x-ms-return-client-request-id": "true" @@ -300,7 +316,7 @@ "Cache-Control": "no-cache", "Content-Length": "1212", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:57 GMT", + "Date": "Wed, 26 Aug 2020 02:05:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -310,8 +326,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4a0bc19ed1af8774eec1dd87ae8fc195", - "x-ms-correlation-request-id": "5669e3bf-1228-4c17-806b-0820fbc1aa0e", - "x-ms-request-id": "371354c7-1d10-4d5d-a1e0-cc5aa3f0398d", + "x-ms-correlation-request-id": "0e0cbaa5-91fa-4e05-b350-f652d81599fb", + "x-ms-request-id": "a9cf26fa-e8b6-4fd8-b293-8d3c65261731", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -373,10 +389,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-118043b0ec557c44ae930277455274a4-dc13731adf4ecc4a-00", + "traceparent": "00-6e644e75131cf047ad6c9561ebe6c0ae-cceef7100ead9b45-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a5ce45d6e1c2bab2e43cbea51f9fa1ea", "x-ms-return-client-request-id": "true" @@ -387,7 +403,7 @@ "Cache-Control": "no-cache", "Content-Length": "666", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:57 GMT", + "Date": "Wed, 26 Aug 2020 02:05:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -397,8 +413,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a5ce45d6e1c2bab2e43cbea51f9fa1ea", - "x-ms-correlation-request-id": "dd2d2eae-1f04-47e9-8e21-8fca7559461e", - "x-ms-request-id": "7d19ba28-5b96-428d-98fb-b1a49904ca9b", + "x-ms-correlation-request-id": "1929dd81-5e83-4b1a-bda4-27b90b365672", + "x-ms-request-id": "af41dd62-9437-423b-99e0-e68e4b035e05", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -442,10 +458,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5b71db9ccc2ffb479f00ab572a1822c2-edd7bb6d2a854149-00", + "traceparent": "00-e8a2b70479503842ac174f1e454a76b3-f22bdc8cac190747-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9afc5697cb4df7be53cbb58670c82995", "x-ms-return-client-request-id": "true" @@ -456,7 +472,7 @@ "Cache-Control": "no-cache", "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Date": "Wed, 26 Aug 2020 02:05:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -466,8 +482,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9afc5697cb4df7be53cbb58670c82995", - "x-ms-correlation-request-id": "0e3af99f-c44c-48d7-85fc-fdbcd19d26b3", - "x-ms-request-id": "8774ca7b-e29d-42f1-8011-abd8daabec0b", + "x-ms-correlation-request-id": "3a1cf75a-6d37-4551-8f9b-27163ecd6a05", + "x-ms-request-id": "e60206e5-0202-4a2d-a5a2-ba4cba9dccc7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -519,10 +535,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0ed53de254f16c4c968630ca59c57a1b-2ca6ebeea9fd3144-00", + "traceparent": "00-f7bd8c6521d29640b61d11fb87ac2bd5-7d39350588616e47-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e3dd918848a6bca70e50667313ce674e", "x-ms-return-client-request-id": "true" @@ -533,7 +549,7 @@ "Cache-Control": "no-cache", "Content-Length": "1101", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Date": "Wed, 26 Aug 2020 02:05:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -543,8 +559,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e3dd918848a6bca70e50667313ce674e", - "x-ms-correlation-request-id": "e9c23d21-5417-4551-aba4-52c1c07ae8f8", - "x-ms-request-id": "5c28277d-0636-44ea-bc46-079fd56d9124", + "x-ms-correlation-request-id": "b68d03ae-f0b0-4ed7-a920-8945ead4cb27", + "x-ms-request-id": "f7bf4566-b57a-42ff-93ba-445ac222c7ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -596,10 +612,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4c97ff8c92b68f4981b67db66cb06d8e-2eb2d1142751594e-00", + "traceparent": "00-047cfe124e4f1f4ab59be0f3a6ef65bf-878d24e7f5b5b843-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "57eff22026920b4787d652f62c2b491b", "x-ms-return-client-request-id": "true" @@ -610,7 +626,7 @@ "Cache-Control": "no-cache", "Content-Length": "547", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Date": "Wed, 26 Aug 2020 02:05:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -620,8 +636,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "57eff22026920b4787d652f62c2b491b", - "x-ms-correlation-request-id": "89ae3480-ced2-433e-b531-d71d190d0013", - "x-ms-request-id": "f723f299-89d2-441c-a9cc-efc1339fe448", + "x-ms-correlation-request-id": "9c54415c-d369-44ff-be53-33b8591c56e3", + "x-ms-request-id": "ea390d66-bb3d-497c-803a-f779dc468d90", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -654,10 +670,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2ea6680fe8c48a4fb5c4693c5411ee62-ef717a736d14bf45-00", + "traceparent": "00-726d7d0eb7617e42a7773392a0090261-866d9327e2cae54d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8e1d2812bec14e44af408bfd654ae484", "x-ms-return-client-request-id": "true" @@ -668,7 +684,7 @@ "Cache-Control": "no-cache", "Content-Length": "1261", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:31:59 GMT", + "Date": "Wed, 26 Aug 2020 02:05:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -678,8 +694,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8e1d2812bec14e44af408bfd654ae484", - "x-ms-correlation-request-id": "fdd0118f-ff1b-40e7-940e-f415c1115711", - "x-ms-request-id": "938e551f-8f53-49ee-a1a2-ccc5cafd5cd4", + "x-ms-correlation-request-id": "1f0a4aa1-122b-484b-88d6-dabe7a79c402", + "x-ms-request-id": "30bffda2-af1f-426f-8db2-bb4a928440f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -737,6 +753,56 @@ }, "etag": "00009f60-0000-0100-0000-5f116cc60000" } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-ed7012c1d853384fbb546021c7cb2160-6b4242988d719c4f-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7d666664d2d9610349d25cd0f6b090e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "387", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:05:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=15724800; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "7d666664d2d9610349d25cd0f6b090e3", + "x-ms-correlation-request-id": "9502e547-660d-4214-9b55-bc6b88441f42", + "x-ms-request-id": "1f2efe88-a3bb-4600-97d2-48f6a809d93a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", + "name": "MyNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "metadata": { + "language_info": { + "name": "Python" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [] + }, + "etag": "0500ec90-0000-0100-0000-5f45c3410000" + } } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json index 0e76190517c3f..58d721cd01ee1 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "765dcd98fbeb2794bc56547da66ebf7d", "x-ms-return-client-request-id": "true" @@ -17,11 +17,11 @@ "ResponseHeaders": { "Content-Length": "6291", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:50 GMT", + "Date": "Wed, 26 Aug 2020 02:06:10 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "765dcd98fbeb2794bc56547da66ebf7d", - "x-ms-request-id": "9be61a9e-40db-4f9e-9db3-0223ce028b1f" + "x-ms-request-id": "6cb529a8-1721-4185-b843-478b1431071b" }, "ResponseBody": { "value": [ @@ -282,7 +282,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", "name": "MyNotebook", "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0900da04-0000-0100-0000-5f3f27820000", + "etag": "05000591-0000-0100-0000-5f45c3870000", "properties": { "metadata": { "language_info": { @@ -302,10 +302,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c72890cb0e5f73429c5d3b312d102384-6d30e9944629604d-00", + "traceparent": "00-b17b8a1d6533174fb4f06d05f98375f4-97a32f7aa3387c44-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8fac1d1f3467c3a7c68b0cee7d692513", "x-ms-return-client-request-id": "true" @@ -316,7 +316,7 @@ "Cache-Control": "no-cache", "Content-Length": "1212", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:50 GMT", + "Date": "Wed, 26 Aug 2020 02:06:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -326,8 +326,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8fac1d1f3467c3a7c68b0cee7d692513", - "x-ms-correlation-request-id": "ecc2373c-13b3-4803-a2bb-d289b740697b", - "x-ms-request-id": "c8fd7cc4-efa0-4259-916b-a791720cff23", + "x-ms-correlation-request-id": "fc92aab2-1d3f-453f-814d-2bcce3062477", + "x-ms-request-id": "737b9fe5-33b4-46ed-a86f-6f28a0b99d5a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -389,10 +389,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b3f252c43ca7674eab39c73cb37004e1-0088c65fe842104c-00", + "traceparent": "00-8e2ef271b35341478686cc2db9b3ddac-f9af93a7838d2c47-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0a2d2b55c619c1c6a5e590fbfec3543a", "x-ms-return-client-request-id": "true" @@ -403,7 +403,7 @@ "Cache-Control": "no-cache", "Content-Length": "666", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:50 GMT", + "Date": "Wed, 26 Aug 2020 02:06:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -413,8 +413,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0a2d2b55c619c1c6a5e590fbfec3543a", - "x-ms-correlation-request-id": "1d208da7-90a3-4ee0-90ca-59e260a8f241", - "x-ms-request-id": "3e0487bf-e3cd-422d-8662-3e025b528216", + "x-ms-correlation-request-id": "fdff45e1-4418-4200-9d95-c20fbe8c8eb0", + "x-ms-request-id": "0d132f51-67ec-4077-8961-1ab2ea8a07f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -458,10 +458,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43abb4143e00904082719e4308f653da-c17ecc3198291547-00", + "traceparent": "00-85d7c428758e6d47bff368495db1e6c2-b8464b48e104d24f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "271e15196f6b6498269aaf5feea6a952", "x-ms-return-client-request-id": "true" @@ -472,7 +472,7 @@ "Cache-Control": "no-cache", "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Date": "Wed, 26 Aug 2020 02:06:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -482,8 +482,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "271e15196f6b6498269aaf5feea6a952", - "x-ms-correlation-request-id": "9ecbaf03-bda2-40bd-9463-e3b321e3c878", - "x-ms-request-id": "031d0499-8804-4994-8559-0f89edb551fa", + "x-ms-correlation-request-id": "bd073cdd-c3e8-45ef-8406-a3c4d39a2229", + "x-ms-request-id": "b8699730-2914-44ba-b9e4-555e402fedef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -535,10 +535,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-60aeeef3b9a06c4d9d99194504eea4f9-c972391398e60645-00", + "traceparent": "00-39776da694dac44cbc73d15e57c9375f-7695489171f7d645-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7a284130b540596357ebea81a3abc502", "x-ms-return-client-request-id": "true" @@ -549,7 +549,7 @@ "Cache-Control": "no-cache", "Content-Length": "1101", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Date": "Wed, 26 Aug 2020 02:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -559,8 +559,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7a284130b540596357ebea81a3abc502", - "x-ms-correlation-request-id": "e53f21e4-31e1-4538-883c-bc5658a2eeaa", - "x-ms-request-id": "ae4762fb-388a-4f31-ac78-cedf50364cbb", + "x-ms-correlation-request-id": "e51aaa8a-b6b9-40ce-8f8d-48ab1a89591c", + "x-ms-request-id": "ee31ca27-d136-42c3-8ab1-f598d131319e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -612,10 +612,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-abdad6fa5719ef409f7937ec19e8bdc2-d40f3b9b2dce874b-00", + "traceparent": "00-85c7262cb47f3649ba1eb887506c742a-93f914cb474c5340-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "68d4d137fe4be5a893c9e47f1667d3fe", "x-ms-return-client-request-id": "true" @@ -626,7 +626,7 @@ "Cache-Control": "no-cache", "Content-Length": "547", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Date": "Wed, 26 Aug 2020 02:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -636,8 +636,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "68d4d137fe4be5a893c9e47f1667d3fe", - "x-ms-correlation-request-id": "697a3e96-e4fc-470b-8dba-7fbb5bad7551", - "x-ms-request-id": "14537b40-643b-4d10-8446-0ec457175fba", + "x-ms-correlation-request-id": "d3fd6b1c-3d32-4dcf-98de-ed5c53b1d4e6", + "x-ms-request-id": "04096c0d-700f-4a0b-8941-d9973b386cac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -670,10 +670,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dfa3695297662f4bbbe1acc8f464abe1-40411f74d2011740-00", + "traceparent": "00-878d161e87c2e44aade170b69b711b41-7ba5c0ddac10e54f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bdcb3d3cd99b64fab1c4d07f8516c07a", "x-ms-return-client-request-id": "true" @@ -684,7 +684,7 @@ "Cache-Control": "no-cache", "Content-Length": "1261", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:51 GMT", + "Date": "Wed, 26 Aug 2020 02:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -694,8 +694,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bdcb3d3cd99b64fab1c4d07f8516c07a", - "x-ms-correlation-request-id": "784ff20e-49f2-4cf3-abdd-47a296595e3d", - "x-ms-request-id": "64231de0-3a7c-413b-98cb-9a63488a3f96", + "x-ms-correlation-request-id": "b87c9d67-a711-4fac-846c-8c496341b9f1", + "x-ms-request-id": "709dfdbb-fb61-4f0d-899c-40ce6dee32c2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -759,10 +759,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6f49af1a78ea554798894fa6afc99fd9-02149fb58711904d-00", + "traceparent": "00-35fccc1249d87f46aa347a84fa55011a-fd27327feec7384b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1c28add440d132079843e677d1e443f0", "x-ms-return-client-request-id": "true" @@ -773,7 +773,7 @@ "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:46:52 GMT", + "Date": "Wed, 26 Aug 2020 02:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -783,8 +783,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1c28add440d132079843e677d1e443f0", - "x-ms-correlation-request-id": "3d64006b-fe1a-48e6-b079-4dbe8c2fde90", - "x-ms-request-id": "732be452-f10e-49f0-bcfb-d08ea9a13638", + "x-ms-correlation-request-id": "336503d8-f948-49e3-a389-a7082284bb22", + "x-ms-request-id": "e53a5f95-9332-47cd-93b8-d1e88d30c9af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -801,7 +801,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "0900da04-0000-0100-0000-5f3f27820000" + "etag": "05000591-0000-0100-0000-5f45c3870000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json index c27478ae85ce5..1062cd9899eb4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-0650270b64275c478157f1f32a5f6d20-5d1313b633c4e34a-00", + "traceparent": "00-5e2d06b7b5efbb409620f45258642047-8aa6d32e053e9b4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6626e1cdfd2e4d364a142a774c10f927", "x-ms-return-client-request-id": "true" @@ -28,35 +28,35 @@ "Location", "Retry-After" ], - "Content-Length": "368", + "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6626e1cdfd2e4d364a142a774c10f927", - "x-ms-request-id": "272996ac-c1d7-423c-b55c-ca93707af4a9" + "x-ms-request-id": "06ec3cfb-461b-406c-b731-123b18823408" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", - "recordId": 202165, + "recordId": 212209, "state": "Creating", - "created": "2020-08-21T01:53:32.76Z", - "changed": "2020-08-21T01:53:32.76Z", + "created": "2020-08-26T02:06:43.4466667Z", + "changed": "2020-08-26T02:06:43.4466667Z", "type": "Pipeline", "name": "MyPipeline", - "operationId": "d0160b90-bcbd-41e7-bbb1-c08de57bbb69" + "operationId": "82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1297e2035eae5172b183464f0409d70d", "x-ms-return-client-request-id": "true" @@ -74,26 +74,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1297e2035eae5172b183464f0409d70d", - "x-ms-request-id": "7959fe28-ada2-4ba5-a333-33cb9ed75e22" + "x-ms-request-id": "c2740b29-9231-4206-ae18-02187f1f70e0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9fe7e2cfcac80d65f615888642f8908a", "x-ms-return-client-request-id": "true" @@ -111,111 +111,37 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:06:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9fe7e2cfcac80d65f615888642f8908a", - "x-ms-request-id": "18263b06-7420-4fa6-83fa-1cb5663d3f89" + "x-ms-request-id": "83339df7-0394-455e-b71a-12ead918b1e9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", - "x-ms-request-id": "03342253-aeb8-4ae3-8fe4-f55d43feaf32" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "da6dacd0d2d739517d891b99d6ec0eb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "da6dacd0d2d739517d891b99d6ec0eb8", - "x-ms-request-id": "451d35e3-184d-4efd-bf30-98e009a4ae2b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d0160b90-bcbd-41e7-bbb1-c08de57bbb69?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f4acbbf36d96e993696641ded55e945a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:33 GMT", + "Date": "Wed, 26 Aug 2020 02:06:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -224,9 +150,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f4acbbf36d96e993696641ded55e945a", - "x-ms-correlation-request-id": "28090880-3266-4271-9eca-ed99a05dfd28", - "x-ms-request-id": "b7bda328-d535-4890-bbe6-2b706961287a", + "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", + "x-ms-correlation-request-id": "61335284-3b66-4c88-8363-3f52b39e86c9", + "x-ms-request-id": "bd8be58e-1fe0-41f3-b17a-a4d2e0d61d84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -234,9 +160,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-21T01:53:33Z" + "lastPublishTime": "2020-08-26T02:06:44Z" }, - "etag": "0900ff05-0000-0100-0000-5f3f291d0000" + "etag": "05002091-0000-0100-0000-5f45c3b40000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json index fb7bf1740ddcf..8d20f01c0f1b0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-c860166c4bc7b14797101be36f7827d3-ee7552767d6ccd4d-00", + "traceparent": "00-3a3a9add73c81f42b285e2891bac0ab3-dec8f55b7e24674f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2ca06a491c48e3d848f1b315763be1de", "x-ms-return-client-request-id": "true" @@ -30,33 +30,33 @@ ], "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2ca06a491c48e3d848f1b315763be1de", - "x-ms-request-id": "a23a2429-903a-4715-b1bc-abade0cacfdc" + "x-ms-request-id": "6be203f0-279f-407e-a450-b293c8b3be91" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", - "recordId": 202167, + "recordId": 212211, "state": "Creating", - "created": "2020-08-21T01:54:04.9333333Z", - "changed": "2020-08-21T01:54:04.9333333Z", + "created": "2020-08-26T02:07:46.3633333Z", + "changed": "2020-08-26T02:07:46.3633333Z", "type": "Pipeline", "name": "MyPipeline", - "operationId": "c60fc4aa-1841-45cc-a52d-5b3e7d4ba572" + "operationId": "07851d4f-9cb1-4b6e-b871-c4cd96d12dba" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "df555f1bc3b8ead5fe567256f9079112", "x-ms-return-client-request-id": "true" @@ -74,26 +74,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "df555f1bc3b8ead5fe567256f9079112", - "x-ms-request-id": "72a6b069-8b09-4d70-ba20-8c1d9365b29c" + "x-ms-request-id": "2d572f07-2b6f-43ae-a7d0-a3c061433966" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aa209ff1052668b497fbe63b01770c38", "x-ms-return-client-request-id": "true" @@ -111,26 +111,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aa209ff1052668b497fbe63b01770c38", - "x-ms-request-id": "5ab03956-14f4-4670-a64a-e8842cc04344" + "x-ms-request-id": "9e625828-85a6-4549-9235-8d89d93037b8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "16fad82701e58a26ba1f7a6d6e7cac3d", "x-ms-return-client-request-id": "true" @@ -148,26 +148,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "16fad82701e58a26ba1f7a6d6e7cac3d", - "x-ms-request-id": "5bc19fa6-3079-44da-becd-7486bb7ca9eb" + "x-ms-request-id": "c74ce0fd-7625-4b95-ac44-736e150fe9a0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3770087b1fef15b4abed48bddc9ae887", "x-ms-return-client-request-id": "true" @@ -185,26 +185,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3770087b1fef15b4abed48bddc9ae887", - "x-ms-request-id": "4fedc38f-9d4f-4b1c-b7d3-ab3859c0506f" + "x-ms-request-id": "f75e9977-2bf1-49a0-92c9-69fee5c7109a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "202f3a497b0cef2d7895ef068b46fa1b", "x-ms-return-client-request-id": "true" @@ -222,26 +222,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "202f3a497b0cef2d7895ef068b46fa1b", - "x-ms-request-id": "f7062450-0c7c-4219-b6e3-5af0974302fb" + "x-ms-request-id": "eb0ba955-9bf1-4890-be70-12c8f1446309" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f9bfa94fd507074924e56af8b969ae1f", "x-ms-return-client-request-id": "true" @@ -259,26 +259,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f9bfa94fd507074924e56af8b969ae1f", - "x-ms-request-id": "39454a71-733e-4faa-9504-34501db2c0e2" + "x-ms-request-id": "8b10a97e-0e90-4a36-9fdb-e05a6ec2518e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3323f2368b4cff30db80be592fad8a65", "x-ms-return-client-request-id": "true" @@ -296,370 +296,37 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3323f2368b4cff30db80be592fad8a65", - "x-ms-request-id": "d9e011a5-6f88-4b9a-a65e-ac4cf9a11ede" + "x-ms-request-id": "553faaf2-8b11-4540-82dc-96c2014b58c6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:06 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", - "x-ms-request-id": "4410e5eb-c4ed-41fc-8acd-9e4f0ad8c785" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "98d0d0e7c623c3ce78bf1e8617efd776", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:06 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "98d0d0e7c623c3ce78bf1e8617efd776", - "x-ms-request-id": "fae53c8f-2b7f-444b-90e7-1a75eb52ed23" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8c05055a7bfb474472af42248f09efa6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:06 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8c05055a7bfb474472af42248f09efa6", - "x-ms-request-id": "5fcc0066-1679-451b-a7ab-46aba7dd5f14" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5f72ae4bf2dd2c425eaabb1bd0fa5c01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:06 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5f72ae4bf2dd2c425eaabb1bd0fa5c01", - "x-ms-request-id": "7bd95809-716f-4c73-a541-7da1457f29c1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0bcd8551a82f6c148b88267383a9346f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:06 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0bcd8551a82f6c148b88267383a9346f", - "x-ms-request-id": "bfc356bf-3b5e-4839-acae-be5e3c8f7de2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "683a78d0777c6899c3d92d50c0297777", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "683a78d0777c6899c3d92d50c0297777", - "x-ms-request-id": "32516c07-0a92-4e0f-9a5e-af7c5d732760" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "09d34053e43ba2769a06d454cccea8b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "09d34053e43ba2769a06d454cccea8b5", - "x-ms-request-id": "6c442584-dcf8-432d-ae25-7bb6c307b2ca" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "584a4c76f3bfd985eb6547567bc3ac62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "584a4c76f3bfd985eb6547567bc3ac62", - "x-ms-request-id": "523129ea-e948-457e-8ade-0a943382be1f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "421fae112ad6ec330198ce76a3449bf4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "421fae112ad6ec330198ce76a3449bf4", - "x-ms-request-id": "c6849515-80e9-4600-bfea-fbe4dfb3713b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c60fc4aa-1841-45cc-a52d-5b3e7d4ba572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "73da78301ede5fb7bbf91ed69c2027d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:08 GMT", + "Date": "Wed, 26 Aug 2020 02:07:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -668,9 +335,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "73da78301ede5fb7bbf91ed69c2027d6", - "x-ms-correlation-request-id": "4183bc4c-5ccf-46ae-860b-59f412a1c0cf", - "x-ms-request-id": "35c1f35b-f8e2-43d7-ad5c-67bae980d707", + "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", + "x-ms-correlation-request-id": "51d115c0-903e-433f-ac07-d99f9eb828d1", + "x-ms-request-id": "dd737670-5177-4a9d-8a0f-34e291ae3402", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -678,9 +345,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-21T01:54:08Z" + "lastPublishTime": "2020-08-26T02:07:48Z" }, - "etag": "09002406-0000-0100-0000-5f3f29400000" + "etag": "05003b91-0000-0100-0000-5f45c3f40000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json index b99c2975d138d..92e348d550a0b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7762095aa6f378428180cf09f1725bf2-9a96adcc277ffb47-00", + "traceparent": "00-b9495ebc5942484eba15cbe65eb06ebf-fb1bb03404c66543-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "031bbc1197fb2d70cbe02899c84e00ad", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "031bbc1197fb2d70cbe02899c84e00ad", - "x-ms-request-id": "169ebc49-9624-4ca9-b795-30e6c2638f52" + "x-ms-request-id": "71fa7c23-cd4a-4dfa-b9c5-6b8da003eed6" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "MyPipeline", - "operationId": "a7a9ebd3-574a-4dc0-8184-bb53c542ed83" + "operationId": "ccfe0689-c928-463c-9734-8c8fd9b127d6" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4862b8ad12b28ef0432e5352d565e9b1", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4862b8ad12b28ef0432e5352d565e9b1", - "x-ms-request-id": "1745bdb3-58a6-4241-9067-b0ee138d8a2f" + "x-ms-request-id": "af286c79-6799-42cc-adb8-9528a962ac2a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9a3c618e61a88b298358f54717201304", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9a3c618e61a88b298358f54717201304", - "x-ms-request-id": "438a111c-ba60-49ba-8191-8deef311cc6c" + "x-ms-request-id": "e346bfcc-6fd1-44c8-b11a-4cf0edc18f3e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "10eb6855b8ebaffa1ec1918932e7eda9", "x-ms-return-client-request-id": "true" @@ -137,26 +137,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "10eb6855b8ebaffa1ec1918932e7eda9", - "x-ms-request-id": "ff07df9b-54f0-4a3b-a530-8e67a870c28e" + "x-ms-request-id": "8f14aa44-45eb-4d15-a5ef-28239dae5eb5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b8c1cecaf0894c178ed7c45a1da97623", "x-ms-return-client-request-id": "true" @@ -174,26 +174,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b8c1cecaf0894c178ed7c45a1da97623", - "x-ms-request-id": "b22c142e-750f-40dc-ad5e-a8a654e2eb66" + "x-ms-request-id": "271022cf-9da2-47aa-b301-ee34c235c744" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6dfc4e1bd979d6c5668d7ce6cfa0589c", "x-ms-return-client-request-id": "true" @@ -211,26 +211,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6dfc4e1bd979d6c5668d7ce6cfa0589c", - "x-ms-request-id": "1879bf2e-8c95-490a-a3f4-96712f402a4d" + "x-ms-request-id": "df6daa24-4461-4089-b9d5-08e8f29572f7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "487d4b6a5a5e657b509f8113f3a09175", "x-ms-return-client-request-id": "true" @@ -248,26 +248,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "487d4b6a5a5e657b509f8113f3a09175", - "x-ms-request-id": "43349184-6e01-42a0-bda2-392ee1f02a07" + "x-ms-request-id": "bdec09b9-def2-4eeb-bea1-c0ab61d04d6f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e46d6e4a80eaf03009eb52fb73307cee", "x-ms-return-client-request-id": "true" @@ -285,39 +285,631 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:54 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:07:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e46d6e4a80eaf03009eb52fb73307cee", - "x-ms-request-id": "53425961-de3e-4651-81d0-eb9549af1b7d" + "x-ms-request-id": "929aee81-4c9e-410a-a016-f5df5e138550" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a7a9ebd3-574a-4dc0-8184-bb53c542ed83?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d1ef287e2e2bc1c5d3961cda57b1e2c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d1ef287e2e2bc1c5d3961cda57b1e2c6", + "x-ms-request-id": "cf5cdb50-e23c-4bb8-a58f-8a122abedc64" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "619c07fc7432eab11b8d3f72077ff220", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "619c07fc7432eab11b8d3f72077ff220", + "x-ms-request-id": "934f0be5-9ecf-4e79-b551-32a4a46e8975" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cb959222c0b11c4aa9ac105463559957", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cb959222c0b11c4aa9ac105463559957", + "x-ms-request-id": "3a6b32fe-bb48-493a-b449-22002636d1b7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6bff8c091b940abc7604b59eee52b953", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6bff8c091b940abc7604b59eee52b953", + "x-ms-request-id": "2b807c34-3f9a-49b1-a1d9-7c7c92fa5027" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c4b8fca4161c3b15bd7fb885635d87c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c4b8fca4161c3b15bd7fb885635d87c6", + "x-ms-request-id": "f002d94d-cd93-4a41-bea1-46ff0646e0e3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7b69e8f3867f068bd68a55ac0aac2e56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7b69e8f3867f068bd68a55ac0aac2e56", + "x-ms-request-id": "e9be3824-86c4-4968-a67e-d07cbb52ba2a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "67afbcf3d49df23a77c3ae156236a618", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "67afbcf3d49df23a77c3ae156236a618", + "x-ms-request-id": "27ed73f6-42fd-4265-9f30-34951c6e5c77" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "05aaef7d3de91ed470b1ee91c1683111", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "05aaef7d3de91ed470b1ee91c1683111", + "x-ms-request-id": "257f5313-e44b-454e-8963-5ed12d932cff" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a69262501fad1f28ad7704bbd775a49f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a69262501fad1f28ad7704bbd775a49f", + "x-ms-request-id": "fc626a96-c51b-4e0c-92be-0d2440e76af5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1a2e3ce42801b56de891f6ece6a9300e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1a2e3ce42801b56de891f6ece6a9300e", + "x-ms-request-id": "e104322d-2d5b-4224-8bb7-20d3b8e2f48d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "00c49d9200a45e6bc78a5771391846fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "00c49d9200a45e6bc78a5771391846fa", + "x-ms-request-id": "722930f7-690d-4137-9466-51a72cd0f0f5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "85ad4e0c1739280ff4dcbd1b283c3904", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "85ad4e0c1739280ff4dcbd1b283c3904", + "x-ms-request-id": "c5fa7d01-cbc7-468b-88ca-d95363a0eb10" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3a29f546a3b1e3fbd1d05377d0fb7cd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3a29f546a3b1e3fbd1d05377d0fb7cd0", + "x-ms-request-id": "3436ee68-8a00-4002-9b55-ff93432c4e44" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "98dffb4baafb7bd48d9c0cc8424f358b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "98dffb4baafb7bd48d9c0cc8424f358b", + "x-ms-request-id": "087b267e-5469-4945-843d-8982704b5f5f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "442a53510cee694952c9b469c39857f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "442a53510cee694952c9b469c39857f8", + "x-ms-request-id": "fc862caf-ec9f-4ed6-8868-bf97b67748f4" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2cd0ed60a05c9c0920aeac149733a181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:07:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2cd0ed60a05c9c0920aeac149733a181", + "x-ms-request-id": "f376b8a5-abdb-4783-90ec-dd1168ead0fb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7d25c79a38d13fe1b2764531f66bb7f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 01:53:54 GMT", + "Date": "Wed, 26 Aug 2020 02:07:34 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d1ef287e2e2bc1c5d3961cda57b1e2c6", - "x-ms-request-id": "5021105d-6bf4-4557-a6ec-b68b0e61efbd" + "x-ms-client-request-id": "7d25c79a38d13fe1b2764531f66bb7f5", + "x-ms-request-id": "2b5919e7-d980-4e6b-992b-f9a1d75d2830" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json index f2307ad24c640..1da5529481f6a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a91834d7a6ce624cbd8fa61367f29cce-f18f53c5c6519e41-00", + "traceparent": "00-a1e651731e80564e8e6a3b1a8eab9e8a-69e8af6eac10d748-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8e3fc6ae697667b8aa3545698df1c49f", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8e3fc6ae697667b8aa3545698df1c49f", - "x-ms-request-id": "8da0ef37-6772-4a11-9e5e-e75000d9ad31" + "x-ms-request-id": "175e7f3a-d01a-438c-bb34-634be53dc7a9" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "MyPipeline", - "operationId": "9964fd00-4294-46f9-9ba5-3f47d3a90ce0" + "operationId": "a9bfc85c-3fa8-45cd-bc61-4288deb58514" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9575055aad89ca71abf297ab32176a0b", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9575055aad89ca71abf297ab32176a0b", - "x-ms-request-id": "91ca8f92-a11b-49be-a3b8-2f131964d731" + "x-ms-request-id": "4c5dd879-44e1-46e7-a187-a0dbae47feda" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1d70a21250593bfff286793ba2c8eb72", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1d70a21250593bfff286793ba2c8eb72", - "x-ms-request-id": "9ac606fe-e22c-4aa3-9d8c-b71b6f92dd23" + "x-ms-request-id": "024fd64e-4009-457f-9f4f-928d2c0bf1e9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "880fffc62e7ba8155527f523dc2887fd", "x-ms-return-client-request-id": "true" @@ -137,26 +137,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "880fffc62e7ba8155527f523dc2887fd", - "x-ms-request-id": "ee27c611-7560-46d7-940b-5327efb540cc" + "x-ms-request-id": "c1318313-83b6-4626-810f-f38b7efc0a31" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "dadcbbd051c709ec053aa303343628e2", "x-ms-return-client-request-id": "true" @@ -174,26 +174,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dadcbbd051c709ec053aa303343628e2", - "x-ms-request-id": "3e402590-0964-4169-8d16-0e3766f0befd" + "x-ms-request-id": "c632c1fc-ad5b-45c8-8f33-09cd87db316e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "32e42407e208e3908cc8c8325bdc5fca", "x-ms-return-client-request-id": "true" @@ -211,39 +211,594 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "32e42407e208e3908cc8c8325bdc5fca", - "x-ms-request-id": "0141dc04-9ed6-4bec-8ac0-d7abb5149a5a" + "x-ms-request-id": "e4c16276-1e87-4c35-a188-ba78cbf79585" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9964fd00-4294-46f9-9ba5-3f47d3a90ce0?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e66b7bff10ec74aa120582418b12731f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e66b7bff10ec74aa120582418b12731f", + "x-ms-request-id": "a040f196-5ea2-4dff-be68-e38e78e47e88" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b71b12fe5444eef52bf84dff89b9ae28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b71b12fe5444eef52bf84dff89b9ae28", + "x-ms-request-id": "c66a826c-9a4e-4b84-b497-f72d715e3676" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b804d9db41cbf7f67a6f1f025f4f587a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b804d9db41cbf7f67a6f1f025f4f587a", + "x-ms-request-id": "2faa3fda-65de-4fe3-8a6d-667ec9ca0281" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4833a954a7c1aa85867cbbf3c2aaeb58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4833a954a7c1aa85867cbbf3c2aaeb58", + "x-ms-request-id": "87397bff-f249-4e83-ae2d-d89095b11e40" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b2655956bb0dbc531c243dd434f28fdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b2655956bb0dbc531c243dd434f28fdc", + "x-ms-request-id": "dc7ca3db-d683-4c1e-8fdc-3be8109ba152" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "dfabd3a0668633675359314e860234cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "dfabd3a0668633675359314e860234cf", + "x-ms-request-id": "299479f2-e603-4951-a4f0-cdfa0b125222" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "05acc683a5e9996c55762b9d6ab07593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "05acc683a5e9996c55762b9d6ab07593", + "x-ms-request-id": "e7b2e02f-3b6c-4f27-b43b-1899873dbffa" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ef52dfed0cffefd2f2315fb389053619", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ef52dfed0cffefd2f2315fb389053619", + "x-ms-request-id": "45f01cce-3c6f-4aab-9e35-71514542c45a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6e516def8946faf266128a0f3bcac9a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6e516def8946faf266128a0f3bcac9a2", + "x-ms-request-id": "a6ae7853-7a1d-46c5-96e4-78fab5949c05" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a7609ee445b077d0f3bc13b746b90f4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a7609ee445b077d0f3bc13b746b90f4f", + "x-ms-request-id": "09debacf-3463-43c9-9ac5-cfcb65cfb3da" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fcad1140075f644cec5788ed81c3b428", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fcad1140075f644cec5788ed81c3b428", + "x-ms-request-id": "827b0916-725a-45ee-807e-d0c24e7a9257" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ebcfbc688ea4aa699dd97a8a763ab4ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ebcfbc688ea4aa699dd97a8a763ab4ad", + "x-ms-request-id": "0dfccbd1-df5e-4055-ad1a-499cc9eb0b23" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "29ce3a02cc1cdc4251fcbb58bce2f530", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "29ce3a02cc1cdc4251fcbb58bce2f530", + "x-ms-request-id": "1dbdee0e-dfdb-426a-bfb4-f8527e29b79c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "894fea0724eab1aba8025e868dc2eeb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "894fea0724eab1aba8025e868dc2eeb1", + "x-ms-request-id": "53f157fd-362e-4cc7-8d5c-9a761bde6395" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "47eadba38bf49c0b7af399a8d311edba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:08:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "47eadba38bf49c0b7af399a8d311edba", + "x-ms-request-id": "b6c27c9c-7190-4067-b4e3-28385604ceb4" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8b8249e32aebdec28f1d80196dbc4e8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 01:54:28 GMT", + "Date": "Wed, 26 Aug 2020 02:08:14 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e66b7bff10ec74aa120582418b12731f", - "x-ms-request-id": "afb85d12-9633-47f7-88cb-dfe97b524ed0" + "x-ms-client-request-id": "8b8249e32aebdec28f1d80196dbc4e8e", + "x-ms-request-id": "aaa13936-10ea-4dd6-b87b-19f8428cbc4d" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json index 68673adf23258..7d26f410fde5b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "33fb91d27c5a3010474b58bf2270acbd", "x-ms-return-client-request-id": "true" @@ -17,11 +17,11 @@ "ResponseHeaders": { "Content-Length": "4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:42 GMT", + "Date": "Wed, 26 Aug 2020 02:07:02 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "33fb91d27c5a3010474b58bf2270acbd", - "x-ms-request-id": "02a7b30d-c2d8-4811-a8e8-78a23af98eef" + "x-ms-request-id": "9f4d3466-051a-4604-be7f-6d658c349ae8" }, "ResponseBody": { "value": [ @@ -172,9 +172,9 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0900ff05-0000-0100-0000-5f3f291d0000", + "etag": "05002091-0000-0100-0000-5f45c3b40000", "properties": { - "lastPublishTime": "2020-08-21T01:53:33Z" + "lastPublishTime": "2020-08-26T02:06:44Z" } } ] @@ -185,10 +185,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bda4e6c46472e34781c9b26d8a8a258b-f058a1bc5ecf0b43-00", + "traceparent": "00-56df02f3f26b89489f58670ae5870984-68636dccc5481040-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "eb51ee2b1608ec5afe9637bbb301e7f3", "x-ms-return-client-request-id": "true" @@ -199,7 +199,7 @@ "Cache-Control": "no-cache", "Content-Length": "652", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Date": "Wed, 26 Aug 2020 02:07:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -209,8 +209,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "eb51ee2b1608ec5afe9637bbb301e7f3", - "x-ms-correlation-request-id": "44f5cec8-0028-437a-9caa-5c8d4dadc5b1", - "x-ms-request-id": "ecca6108-53a7-401e-acf3-60412742d6fb", + "x-ms-correlation-request-id": "f635d60c-56aa-4550-aa1a-dce5a7b4c9d1", + "x-ms-request-id": "0af058df-f145-4c2a-8816-8ac7640f18a4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -250,10 +250,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c61273750791342aa1b692d91e384f9-5075062408cf5248-00", + "traceparent": "00-688cf3abc8ad11418b499cabc3350daa-f8021a7a6dd93040-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5ed53bdd4eb4a73dad230e2ab58d4037", "x-ms-return-client-request-id": "true" @@ -264,7 +264,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Date": "Wed, 26 Aug 2020 02:07:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -274,8 +274,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5ed53bdd4eb4a73dad230e2ab58d4037", - "x-ms-correlation-request-id": "225b1474-00dc-4ce6-94ab-dcec8e1dca04", - "x-ms-request-id": "d8d81b31-93e8-4577-9345-12e10b5ed564", + "x-ms-correlation-request-id": "58f749ba-6a85-4374-b797-59361b1c906e", + "x-ms-request-id": "af397b0c-69a9-4c16-a4a3-df5296d1a2b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -300,10 +300,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0367d6a683da2644bad2bd411eb883c9-14088a605f87ed4a-00", + "traceparent": "00-9fa868370234fa46a2580ccabfa7e7a9-6df27a59614acb46-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a50beeede95ebc2a370e35c344557c46", "x-ms-return-client-request-id": "true" @@ -314,7 +314,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Date": "Wed, 26 Aug 2020 02:07:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -324,8 +324,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a50beeede95ebc2a370e35c344557c46", - "x-ms-correlation-request-id": "49996300-ac95-443e-9355-50f4be238f25", - "x-ms-request-id": "e96b4981-50d8-4e29-97a2-fda9d6555fa5", + "x-ms-correlation-request-id": "c611ba58-92e3-4631-a715-f436a3859144", + "x-ms-request-id": "fbe7d76a-6bac-4a61-bdf2-e4561ea8172f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -350,10 +350,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1539967e7a2d1a4d8fde39a80403d6e9-fb39845a05756743-00", + "traceparent": "00-c4205ea0d3b2e445b4eddcd422e56bba-57ae31bcf3294b4a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e6e265644d9bdc09b0aa3de408303770", "x-ms-return-client-request-id": "true" @@ -364,7 +364,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:43 GMT", + "Date": "Wed, 26 Aug 2020 02:07:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -374,8 +374,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e6e265644d9bdc09b0aa3de408303770", - "x-ms-correlation-request-id": "44f12cbb-6301-4165-8d17-51a0c5ef3805", - "x-ms-request-id": "62d384fc-bf61-4c9e-a37b-3b09a0e50555", + "x-ms-correlation-request-id": "3e4cdeb8-9e60-48e4-a0d9-8332b3c560f0", + "x-ms-request-id": "36aa14f8-9abe-466e-a884-43c64c67658a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -400,10 +400,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2cb89f95e04d6944a157dd3d876ea119-8d7e4aec24a9cd46-00", + "traceparent": "00-7fb106e50eb71946bc568dfd6b18fe12-ce884e9de7411043-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c4ceff5541f5f394111927a5187a6258", "x-ms-return-client-request-id": "true" @@ -414,7 +414,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Date": "Wed, 26 Aug 2020 02:07:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -424,8 +424,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c4ceff5541f5f394111927a5187a6258", - "x-ms-correlation-request-id": "e636ee54-6e65-4013-8179-13a0e7355ccf", - "x-ms-request-id": "d5099f3e-0d25-4dca-8065-c88d59b12511", + "x-ms-correlation-request-id": "6c6b7949-2457-45fa-9cf5-4ea4d1290fb1", + "x-ms-request-id": "b1d7b01c-f4a6-4697-a63f-13b16ee94cff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -450,10 +450,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-108971b3632a964cb72fb8612da355e4-10c24607a8ddfe4f-00", + "traceparent": "00-b9f058b6b9e9434b9707d6167efb26e4-39b5d5e5bec72e48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4fc5c7a75aaa9f9ce52ef4b4ab45b306", "x-ms-return-client-request-id": "true" @@ -464,7 +464,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Date": "Wed, 26 Aug 2020 02:07:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -474,8 +474,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4fc5c7a75aaa9f9ce52ef4b4ab45b306", - "x-ms-correlation-request-id": "b5657d5d-aa6c-40e6-b391-36937740c1a3", - "x-ms-request-id": "16a7ebf7-821a-492f-b0e0-4adf02c3bf8d", + "x-ms-correlation-request-id": "793c5516-c2de-4598-8159-2aeeb5f1d926", + "x-ms-request-id": "2f43e42c-7171-4f51-a327-2c1d774b128e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -500,10 +500,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-02818bae54b0dc42898a4e769a768927-0712c69356111e47-00", + "traceparent": "00-86cf79c598f0d749b5f09570af0b045d-400f93712d29a84a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "446dc4d7b8872251d0eed5812663c436", "x-ms-return-client-request-id": "true" @@ -514,7 +514,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Date": "Wed, 26 Aug 2020 02:07:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -524,8 +524,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "446dc4d7b8872251d0eed5812663c436", - "x-ms-correlation-request-id": "6ef67748-5820-4c6f-a650-21de1d1b3a75", - "x-ms-request-id": "837a069e-1669-4201-b9bf-4edef06a8705", + "x-ms-correlation-request-id": "aafd4f5d-d0bf-43a6-ad8f-a64ad53eda10", + "x-ms-request-id": "00d07e02-1f71-4523-9bfb-eb3841ce7158", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -550,10 +550,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-571aa6260ebf054fbbba9414b7c36631-2912f11222833d4c-00", + "traceparent": "00-89c4d89fca21c040b8cad6c13c3c66e7-444e743e29db734d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "403de547e76bfbc6632edec64cdf48cb", "x-ms-return-client-request-id": "true" @@ -564,7 +564,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:44 GMT", + "Date": "Wed, 26 Aug 2020 02:07:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -574,8 +574,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "403de547e76bfbc6632edec64cdf48cb", - "x-ms-correlation-request-id": "c1f3aaa4-2389-4871-88c7-c91308c255ff", - "x-ms-request-id": "c93624f8-6c6a-477b-a110-5bb612866b93", + "x-ms-correlation-request-id": "ea214bbf-cb79-418a-b46f-ae20b0a174fe", + "x-ms-request-id": "e88ab633-c3e3-4cb6-8030-14b6c225419d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -600,10 +600,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4fa9ceacc1cd354bb2a24f791796b858-84a3873683d0384d-00", + "traceparent": "00-5837cdebbf4dba41918f6442c981a402-48f8c25e26f56548-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "53ce21651d0cefd076a27ebb841a7982", "x-ms-return-client-request-id": "true" @@ -614,7 +614,7 @@ "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:53:45 GMT", + "Date": "Wed, 26 Aug 2020 02:07:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -624,8 +624,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "53ce21651d0cefd076a27ebb841a7982", - "x-ms-correlation-request-id": "952b315f-e5ae-4e04-a181-83a87fa0c6c8", - "x-ms-request-id": "57fba4e9-0bc8-4dcd-bdab-499bd9310cba", + "x-ms-correlation-request-id": "3a4ed417-d135-4661-a651-16c8214969ae", + "x-ms-request-id": "5b7be439-cdac-44c1-ac87-7bbadf4888fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -633,9 +633,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-21T01:53:33Z" + "lastPublishTime": "2020-08-26T02:06:44Z" }, - "etag": "0900ff05-0000-0100-0000-5f3f291d0000" + "etag": "05002091-0000-0100-0000-5f45c3b40000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json index 675cd3d7375d2..a1b8e1750b636 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fdc6e542e37e5e08c973bcea091afcd3", "x-ms-return-client-request-id": "true" @@ -17,11 +17,11 @@ "ResponseHeaders": { "Content-Length": "4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:18 GMT", + "Date": "Wed, 26 Aug 2020 02:07:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fdc6e542e37e5e08c973bcea091afcd3", - "x-ms-request-id": "9733316a-8a46-46be-9bbf-9fa1723c4622" + "x-ms-request-id": "b0d3e924-e3df-463d-8d77-6748f1521082" }, "ResponseBody": { "value": [ @@ -172,9 +172,9 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "09002406-0000-0100-0000-5f3f29400000", + "etag": "05003b91-0000-0100-0000-5f45c3f40000", "properties": { - "lastPublishTime": "2020-08-21T01:54:08Z" + "lastPublishTime": "2020-08-26T02:07:48Z" } } ] @@ -185,10 +185,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-14ae01ac3f3a56459f0caaca956a349b-29495c4ce23b9149-00", + "traceparent": "00-1e6ccd5cb568ea49802c2f46a0ba8493-564c69da8463ce4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6be4bf56645b387ef2a76c787d751108", "x-ms-return-client-request-id": "true" @@ -199,7 +199,7 @@ "Cache-Control": "no-cache", "Content-Length": "652", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:18 GMT", + "Date": "Wed, 26 Aug 2020 02:07:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -209,8 +209,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6be4bf56645b387ef2a76c787d751108", - "x-ms-correlation-request-id": "6f5a1255-e2ca-4d68-b7b2-05343cce9089", - "x-ms-request-id": "9a03ab1c-68ff-41dd-8ae3-aeaf6848c524", + "x-ms-correlation-request-id": "cc2d952b-3820-405a-afa2-51a72701ef22", + "x-ms-request-id": "57c2fb0f-7405-4ab5-a8f2-a446e368b221", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -250,10 +250,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6722449ed897d740a85255d45647c43f-777c5b6980eebc47-00", + "traceparent": "00-0af221dd4203d84fad34847e523cfc9a-814f8eecf251dd4c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "12029322d074c422233f038cde1a41df", "x-ms-return-client-request-id": "true" @@ -264,7 +264,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:18 GMT", + "Date": "Wed, 26 Aug 2020 02:07:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -274,8 +274,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "12029322d074c422233f038cde1a41df", - "x-ms-correlation-request-id": "0f3c71c0-e7b0-4aed-af33-2dde0b05bcc8", - "x-ms-request-id": "fdb69f1c-0b69-4248-8637-1ad3f2ea86a7", + "x-ms-correlation-request-id": "d179d0bd-d73f-4e3a-9ac2-7bf54a34256f", + "x-ms-request-id": "cb94ed61-598c-4171-aac7-c1dfa9fadbdb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -300,10 +300,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fcef7a19b9896e498a3b28733c084813-48fc095204f5c143-00", + "traceparent": "00-1070808efc096f4488a84f2fd2b1c66c-0392156feda53944-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8014551f9366de1e678d0ad7778fe154", "x-ms-return-client-request-id": "true" @@ -314,7 +314,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:18 GMT", + "Date": "Wed, 26 Aug 2020 02:07:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -324,8 +324,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8014551f9366de1e678d0ad7778fe154", - "x-ms-correlation-request-id": "78d67741-b33c-4e3e-ad67-a2d33e55b8b3", - "x-ms-request-id": "7019ad9e-0787-4370-8221-b1d4d91b0437", + "x-ms-correlation-request-id": "2f74292f-55fc-4479-8881-66b51c110385", + "x-ms-request-id": "c635adb5-1078-47e9-89a6-cd9dc83c6f6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -350,10 +350,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a15db855bb07f24ca50eda2c903dfb6d-07c3e0aa88f06440-00", + "traceparent": "00-4f9135fa418e5c41b01530ba810eca7b-64a6d8ef813ea147-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "76c8b462e918855f9c20471b60f159d7", "x-ms-return-client-request-id": "true" @@ -364,7 +364,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Date": "Wed, 26 Aug 2020 02:07:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -374,8 +374,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "76c8b462e918855f9c20471b60f159d7", - "x-ms-correlation-request-id": "6317f1c7-1ae7-4055-9224-47fc686fd854", - "x-ms-request-id": "c37a820b-c0a5-4694-8a2e-16ce5febbc0b", + "x-ms-correlation-request-id": "e2a19586-1f32-4e99-b194-7eca69e5b76a", + "x-ms-request-id": "97d0d030-c192-4c81-affd-ef6adbdb2486", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -400,10 +400,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-de532e959962eb4dad0211780488fee7-9713ee405e7d9942-00", + "traceparent": "00-ab83e1906f08cc49b6610fb5a4fd8578-be1ee10aac532b48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "27598d6591608fa17423abe6c54b4d93", "x-ms-return-client-request-id": "true" @@ -414,7 +414,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Date": "Wed, 26 Aug 2020 02:07:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -424,8 +424,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "27598d6591608fa17423abe6c54b4d93", - "x-ms-correlation-request-id": "e4859317-bbfd-4799-a393-b3d77857da09", - "x-ms-request-id": "27fd5eec-1364-42fb-a468-56cd573388fa", + "x-ms-correlation-request-id": "6c11ac07-fc87-4b46-b265-9b076ed108ef", + "x-ms-request-id": "38cc3b87-071e-4305-9a8e-8307557a116f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -450,10 +450,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0ef077df97e9c48b478aa3334ee2fb4-f7a3717bbe0a3846-00", + "traceparent": "00-fb9c5dfef089a74089b6037cce7fd5ec-b7c62f9c4008c34a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2a2aaf5ecb5235c6f68ee3454b027d76", "x-ms-return-client-request-id": "true" @@ -464,7 +464,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Date": "Wed, 26 Aug 2020 02:07:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -474,8 +474,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2a2aaf5ecb5235c6f68ee3454b027d76", - "x-ms-correlation-request-id": "d1af73fb-b02f-4b16-bf93-46a12e2a1fa6", - "x-ms-request-id": "abaef04c-6d46-4d78-802a-7ffd1a413d04", + "x-ms-correlation-request-id": "e6db1978-caf8-4b56-bf56-bd95fa4953b5", + "x-ms-request-id": "d89b8636-f7ca-46a6-be8b-d7a3247c1469", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -500,10 +500,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f8158598a1246c4d8972151b61a4bddb-f496218bd2fbf544-00", + "traceparent": "00-fdd81d5b8254fc4f925112209c023606-cf13d589f7a4f14e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e9713333b936d0f3123901f43e79c051", "x-ms-return-client-request-id": "true" @@ -514,7 +514,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:19 GMT", + "Date": "Wed, 26 Aug 2020 02:07:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -524,8 +524,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e9713333b936d0f3123901f43e79c051", - "x-ms-correlation-request-id": "7e441d87-4f12-4d36-bfb2-fda7f8c512cc", - "x-ms-request-id": "f507578c-e77d-48c8-a5f1-1d89a6091bea", + "x-ms-correlation-request-id": "bb4dda17-85cd-409e-b97e-9662f96dc354", + "x-ms-request-id": "2e8ef209-6159-462f-b57d-67671a41c3da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -550,10 +550,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-505815690731a44a9548651603884b8b-2b760f9d51bda542-00", + "traceparent": "00-48b283affc9d164b81670c62276f7902-0107d79145843d40-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b1bdb4d32fc69984c62331d2ae5b4372", "x-ms-return-client-request-id": "true" @@ -564,7 +564,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:20 GMT", + "Date": "Wed, 26 Aug 2020 02:07:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -574,8 +574,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b1bdb4d32fc69984c62331d2ae5b4372", - "x-ms-correlation-request-id": "af94b69b-47ee-406c-ac1c-1776c5d6fbd1", - "x-ms-request-id": "7493665b-9c9a-44ce-b0e5-2dbff846ff73", + "x-ms-correlation-request-id": "3488843d-3d21-498f-b15f-5fa276f7c2f7", + "x-ms-request-id": "2a1a6b40-e00a-47c0-9c56-1788160fa390", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -600,10 +600,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bc91f1fcc8321a47a38f6f14cbfcb877-5c96634caa2b0c4d-00", + "traceparent": "00-2c6d0496d8bb1647b5f6411e35cd98ce-05655d56afa46543-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "91b234a663d9a45cbc591719cad2f67c", "x-ms-return-client-request-id": "true" @@ -614,7 +614,7 @@ "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 01:54:20 GMT", + "Date": "Wed, 26 Aug 2020 02:07:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -624,8 +624,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "91b234a663d9a45cbc591719cad2f67c", - "x-ms-correlation-request-id": "cc8f5ba5-8df4-4db8-822e-cd3164ac83fe", - "x-ms-request-id": "ed5eee9a-a956-44ec-8c5b-5cc10c60a6da", + "x-ms-correlation-request-id": "19fcaebc-be5c-417f-abb1-98ca0bd21d05", + "x-ms-request-id": "d66c3762-3a6d-4ebf-b4cd-c680c7a4b19d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -633,9 +633,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-21T01:54:08Z" + "lastPublishTime": "2020-08-26T02:07:48Z" }, - "etag": "09002406-0000-0100-0000-5f3f29400000" + "etag": "05003b91-0000-0100-0000-5f45c3f40000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json index f439d6a34696b..d2f4c1da72284 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "33", "Content-Type": "application/json", - "traceparent": "00-3e58ba4ac0c9a84fb6b03fe02d5ae012-8801c48fd7d6964e-00", + "traceparent": "00-015a0a2dddf4fb43ae8ac92ca31caaa1-8a09cde8f02ae944-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c1d95cced0706a0477a2c5155033e673", "x-ms-return-client-request-id": "true" @@ -32,33 +32,33 @@ ], "Content-Length": "374", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c1d95cced0706a0477a2c5155033e673", - "x-ms-request-id": "a7ee820b-2f61-4430-8726-ea6a14f092cd" + "x-ms-request-id": "59e91859-27bc-4baf-bcce-354a4de07461" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", - "recordId": 202194, + "recordId": 212214, "state": "Creating", - "created": "2020-08-21T02:07:24.5966667Z", - "changed": "2020-08-21T02:07:24.5966667Z", + "created": "2020-08-26T02:08:25.7833333Z", + "changed": "2020-08-26T02:08:25.7833333Z", "type": "Trigger", "name": "MyTrigger", - "operationId": "45ef2269-a8ff-42c5-aca8-300a96cbb942" + "operationId": "46e09d2a-6711-4be8-b00a-8400c98c8395" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "22017afd526e3e3a6025e0d85ebd8bf7", "x-ms-return-client-request-id": "true" @@ -76,26 +76,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "22017afd526e3e3a6025e0d85ebd8bf7", - "x-ms-request-id": "25263b37-b83e-4fd7-8d24-07327ebc7a99" + "x-ms-request-id": "d945bfb9-3dfd-45e2-9030-2c711bd035bb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3de4d122dc23750d26d2678a6c061291", "x-ms-return-client-request-id": "true" @@ -113,26 +113,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3de4d122dc23750d26d2678a6c061291", - "x-ms-request-id": "67d22571-a87c-463a-bf9e-d6310d202e05" + "x-ms-request-id": "db08fdc2-6c97-4181-b209-235c7a46ab7d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d51758b9c4315b05af1ec9ae775da79c", "x-ms-return-client-request-id": "true" @@ -150,26 +150,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d51758b9c4315b05af1ec9ae775da79c", - "x-ms-request-id": "0ec7018f-ede4-4f0e-a898-8be7e76dd87a" + "x-ms-request-id": "d5a33419-0af6-4022-9edb-025c62c53b8f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "86da6b5aaa0121496c8cfb9bebb0d259", "x-ms-return-client-request-id": "true" @@ -187,26 +187,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "86da6b5aaa0121496c8cfb9bebb0d259", - "x-ms-request-id": "3ea927e0-6d94-4c09-a75f-7cdd7638b51e" + "x-ms-request-id": "5439a413-7403-43e4-bbce-76dc21160023" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "061e4e12b5a65ec6cb888d05125ffdc8", "x-ms-return-client-request-id": "true" @@ -224,26 +224,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "061e4e12b5a65ec6cb888d05125ffdc8", - "x-ms-request-id": "c9436b2b-4dfb-44ac-9b4b-f09c4b04300e" + "x-ms-request-id": "66cd92d8-6cbe-4c51-9c28-4c9713122254" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "012fca2b8b2c0f900ef569a5c86a70ff", "x-ms-return-client-request-id": "true" @@ -261,26 +261,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "012fca2b8b2c0f900ef569a5c86a70ff", - "x-ms-request-id": "63bbfc64-ce17-4f9a-bdf0-b437dd6ca8bd" + "x-ms-request-id": "d5abb93c-a39a-4ebd-8cbe-a8a999a00616" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "289b6f4ca13fa5f5a47bbb781c430e0c", "x-ms-return-client-request-id": "true" @@ -298,26 +298,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "289b6f4ca13fa5f5a47bbb781c430e0c", - "x-ms-request-id": "4298fdf8-695f-4b24-bb6d-c1d9352ca9db" + "x-ms-request-id": "b95e7ee7-ea0d-4d7e-8668-d6426a457935" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2070328ed080872cbe0ef7b14b219660", "x-ms-return-client-request-id": "true" @@ -335,26 +335,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2070328ed080872cbe0ef7b14b219660", - "x-ms-request-id": "edce1a6a-5e3b-400d-9e2e-350b855b593a" + "x-ms-request-id": "715283b8-548a-4892-a197-82a3bd7c5427" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a3b98e18d4c38989d48a5cb1d018f2ca", "x-ms-return-client-request-id": "true" @@ -372,26 +372,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a3b98e18d4c38989d48a5cb1d018f2ca", - "x-ms-request-id": "86fc4b7a-b36c-4fc9-bbee-725efc8a38e9" + "x-ms-request-id": "261bc1a9-4894-4554-a855-3be3fa384f0b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "95175ce64ffa7b7f42146a30aa445983", "x-ms-return-client-request-id": "true" @@ -409,26 +409,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "95175ce64ffa7b7f42146a30aa445983", - "x-ms-request-id": "36ec6c7f-7855-44b3-b57e-8597e95f4938" + "x-ms-request-id": "bbde664a-9498-4435-8f8b-95f8112f5a98" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8e5f5ae46b8ab949a9e64bf5747bb7a6", "x-ms-return-client-request-id": "true" @@ -446,222 +446,37 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8e5f5ae46b8ab949a9e64bf5747bb7a6", - "x-ms-request-id": "be010f50-7bb4-437d-9a65-2f719f64efa2" + "x-ms-request-id": "8bee337a-c0ac-4ffa-a590-213bc1c9395d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", - "x-ms-request-id": "85e0212f-a107-416c-a682-e142c833e550" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "75ccd83164b87b40135deb13048907c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "75ccd83164b87b40135deb13048907c6", - "x-ms-request-id": "ccbe23df-6f1c-4248-8037-1616e6815673" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7e13c35d6a7ae379f4977f4d0a9a4e50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7e13c35d6a7ae379f4977f4d0a9a4e50", - "x-ms-request-id": "dbd7dcc2-48b0-483f-8a96-2fb6c0c4b2af" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9bc3bb0742afb8eeec4fdbac1552c485", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9bc3bb0742afb8eeec4fdbac1552c485", - "x-ms-request-id": "43006319-c42f-49a0-a6bb-d94868bed2ce" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a6519a356044c7155fe88020e5f27078", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a6519a356044c7155fe88020e5f27078", - "x-ms-request-id": "9476941d-d793-4bf5-b80c-23a5857f8cc7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/45ef2269-a8ff-42c5-aca8-300a96cbb942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "480c9b0f6cc51b17d55b912a8ecdcea2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:28 GMT", + "Date": "Wed, 26 Aug 2020 02:08:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -670,9 +485,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "480c9b0f6cc51b17d55b912a8ecdcea2", - "x-ms-correlation-request-id": "73f19bb8-8142-4245-95c3-5974dd53d965", - "x-ms-request-id": "6ff0bfa4-192e-4e64-9bf1-6be59993b1c4", + "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", + "x-ms-correlation-request-id": "4d11c49e-11bf-4f73-93f4-b1f17cc230fb", + "x-ms-request-id": "422895eb-43d7-4efc-8726-02ab54ffc130", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -683,7 +498,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "0900c808-0000-0100-0000-5f3f2c600000" + "etag": "05004e91-0000-0100-0000-5f45c41c0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json index fbda186ea7d82..97636ecd171a4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json @@ -7,10 +7,10 @@ "Authorization": "Sanitized", "Content-Length": "33", "Content-Type": "application/json", - "traceparent": "00-a3808aa2d5724e49a2c53da59b941dd4-9441d2d0877c7f41-00", + "traceparent": "00-232258f333c91b4ead629317d6a9115f-a9df811127f10446-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a3d7341deada658f06c9e27495c92b32", "x-ms-return-client-request-id": "true" @@ -30,35 +30,35 @@ "Location", "Retry-After" ], - "Content-Length": "364", + "Content-Length": "374", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a3d7341deada658f06c9e27495c92b32", - "x-ms-request-id": "bb3d230a-7a10-46ef-acf9-0506a1b90aea" + "x-ms-request-id": "d48a0926-280e-453b-af53-fd023113bfbb" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", - "recordId": 202195, + "recordId": 212215, "state": "Creating", - "created": "2020-08-21T02:08:01.43Z", - "changed": "2020-08-21T02:08:01.43Z", + "created": "2020-08-26T02:09:02.2333333Z", + "changed": "2020-08-26T02:09:02.2333333Z", "type": "Trigger", "name": "MyTrigger", - "operationId": "11372813-fce6-4c10-b1bd-62dc79a036a3" + "operationId": "5e7a01b4-8a2f-40f4-ae29-d789f7c4c761" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "34571b62c09c168577ff7f5af4769ae1", "x-ms-return-client-request-id": "true" @@ -76,26 +76,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "34571b62c09c168577ff7f5af4769ae1", - "x-ms-request-id": "7a34f75d-5089-4472-88ae-dc69d7157dac" + "x-ms-request-id": "8e967bdc-6074-4b0d-af2e-9dfffdd1b9e6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6c9fcf7dbbc12dcda02c3f7e253ed013", "x-ms-return-client-request-id": "true" @@ -113,26 +113,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6c9fcf7dbbc12dcda02c3f7e253ed013", - "x-ms-request-id": "8c0e8ac0-2c38-48a1-963d-9a22cd6442d8" + "x-ms-request-id": "86c102e3-c755-41b3-beb8-d2749549cd5f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7911871bf6715996de5b7ef57039b7ed", "x-ms-return-client-request-id": "true" @@ -150,26 +150,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:01 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7911871bf6715996de5b7ef57039b7ed", - "x-ms-request-id": "26c39704-d931-4485-a856-4cb02655f14a" + "x-ms-request-id": "679fbcdc-bb26-44e4-8afc-b2faf610b3db" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c5d3e4c14153a79a4d2993708106f138", "x-ms-return-client-request-id": "true" @@ -187,26 +187,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c5d3e4c14153a79a4d2993708106f138", - "x-ms-request-id": "f8a79ae9-333f-48e0-b347-f077b28229cf" + "x-ms-request-id": "bdd6f25f-7a67-4979-bb2c-4c8b03d84f9a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6c3f6b2e2165866f38468d653dd8bd67", "x-ms-return-client-request-id": "true" @@ -224,26 +224,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6c3f6b2e2165866f38468d653dd8bd67", - "x-ms-request-id": "353bc1ad-69e3-4bf9-8472-a33ad14189a6" + "x-ms-request-id": "a21ad5e5-f706-41e8-95f5-921dbbb69a9e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "40bc51740b6ad9c0ed6a2b486326d8d7", "x-ms-return-client-request-id": "true" @@ -261,26 +261,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "40bc51740b6ad9c0ed6a2b486326d8d7", - "x-ms-request-id": "682e5486-c185-43fc-9f95-e8ce0f8a4f59" + "x-ms-request-id": "20c9d91c-4eec-42e8-b5c0-ea30e85c9588" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "04c6456a4af9a087754c8c0cb4356975", "x-ms-return-client-request-id": "true" @@ -298,26 +298,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "04c6456a4af9a087754c8c0cb4356975", - "x-ms-request-id": "bb0296b8-a7f8-4f01-a1b8-7f1b9b868556" + "x-ms-request-id": "ac9b4191-e23d-49eb-ba8a-7fc38c583b86" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2ffb2c6cb04a23cdab657ffbf5262312", "x-ms-return-client-request-id": "true" @@ -335,26 +335,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2ffb2c6cb04a23cdab657ffbf5262312", - "x-ms-request-id": "ab08b207-08f5-405a-96c4-88a51759848d" + "x-ms-request-id": "b3dc1051-27db-4db3-8c41-1b563fa4a412" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f7fab66eb8112a6ec91ccb1e7fb325b7", "x-ms-return-client-request-id": "true" @@ -372,26 +372,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f7fab66eb8112a6ec91ccb1e7fb325b7", - "x-ms-request-id": "34b72549-6f17-4910-8363-8d422df6a316" + "x-ms-request-id": "5adb0421-58bb-4f83-9aea-03e68ffbe788" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "36dcb600a82bba8d77a35893ca8caa4e", "x-ms-return-client-request-id": "true" @@ -409,37 +409,185 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "36dcb600a82bba8d77a35893ca8caa4e", - "x-ms-request-id": "8530e2ba-c219-4107-8124-dc91eae8403c" + "x-ms-request-id": "94b578d3-9e0b-42b3-834e-9be00825fd85" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/11372813-fce6-4c10-b1bd-62dc79a036a3?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fd9e7a28713ab364bed0662de4afa4f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:09:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fd9e7a28713ab364bed0662de4afa4f8", + "x-ms-request-id": "60f222b9-c89c-4a9f-8ede-f84ef33377e7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "3ffbc740ed4ac6e7293f806e60da603d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:09:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3ffbc740ed4ac6e7293f806e60da603d", + "x-ms-request-id": "d98b8c8d-a211-46e6-9691-8e8f2bcf9af7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "04f57c7127148e7d5129785a425fd6c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:09:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "04f57c7127148e7d5129785a425fd6c7", + "x-ms-request-id": "b390db27-6eec-40b2-8156-a802485da2f9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "025360ff6b903b0493d8d4fbf1f652e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 02:09:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "025360ff6b903b0493d8d4fbf1f652e3", + "x-ms-request-id": "8661531b-5d5e-4a6e-af11-960d7434d566" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "67bb29709fba18e44a6ced20748c83c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:03 GMT", + "Date": "Wed, 26 Aug 2020 02:09:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -448,9 +596,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fd9e7a28713ab364bed0662de4afa4f8", - "x-ms-correlation-request-id": "a1cbbe68-661e-426c-82b0-c7512817efa0", - "x-ms-request-id": "2ea2cebb-4f47-4e1b-9b5f-a1750d720233", + "x-ms-client-request-id": "67bb29709fba18e44a6ced20748c83c9", + "x-ms-correlation-request-id": "94f5f803-e1b3-4b39-8263-f271cde035d0", + "x-ms-request-id": "e5507926-8a83-462a-bb21-1b4c54e42918", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -461,7 +609,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "0900ed08-0000-0100-0000-5f3f2c840000" + "etag": "05005d91-0000-0100-0000-5f45c4420000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json index 38a7b2cff6326..06bb6ec3ce414 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8a673b0bd028004f9fafb9afb20ed357-fa88111b43726f45-00", + "traceparent": "00-b3e1a54e1581c6409bb1449be71d41e9-5f301b7f17c5d24c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2cf56f1296727c20368b90a921519b6f", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2cf56f1296727c20368b90a921519b6f", - "x-ms-request-id": "28f7b771-d264-4eca-9efa-5d2e36bcf785" + "x-ms-request-id": "b6718930-fb73-42e9-9386-a8fc6379a77f" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "MyTrigger", - "operationId": "49169286-680b-4f6e-b1a7-697b6fffd577" + "operationId": "d8ead94c-c088-40d1-9a67-a4e38bf96598" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "66cb0bd79ca58d2311420e7c1bf4410d", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "66cb0bd79ca58d2311420e7c1bf4410d", - "x-ms-request-id": "6a8977d2-c830-45de-9329-82e6d7aa0a2d" + "x-ms-request-id": "2b59439f-b694-434e-8b07-642fbd1c1e0b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e7e6add0c0445d615f912b9b9ea69d37", "x-ms-return-client-request-id": "true" @@ -100,224 +100,39 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:08:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e7e6add0c0445d615f912b9b9ea69d37", - "x-ms-request-id": "7d62a6fb-4d2f-4668-aaa7-a37ed02c40fc" + "x-ms-request-id": "b01d962b-666b-4465-9f89-1053017286d6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:51 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", - "x-ms-request-id": "378bb63b-37ab-4329-b6bb-240c05def53f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "31a9eb958c191777aa6e06137088ef6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "31a9eb958c191777aa6e06137088ef6a", - "x-ms-request-id": "746fb9c6-43ff-49a6-bdcc-9e914012ee03" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4664d7a52b229b86e3ea69713b66b7cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4664d7a52b229b86e3ea69713b66b7cd", - "x-ms-request-id": "11d22c56-5366-4b81-a92b-2281fd82fdeb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b2051f496bfd8b1d5dba6b182db68bf5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b2051f496bfd8b1d5dba6b182db68bf5", - "x-ms-request-id": "85e782fc-092a-47dc-8095-6bb7e9231705" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ce5519e2012d6ae9640d4e2f2205db44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ce5519e2012d6ae9640d4e2f2205db44", - "x-ms-request-id": "79be900d-f0f7-4a43-b43b-313fb2c418ff" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/49169286-680b-4f6e-b1a7-697b6fffd577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "51ca39b63c83396dbad9e868bf6e6d2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 02:07:52 GMT", + "Date": "Wed, 26 Aug 2020 02:08:51 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "51ca39b63c83396dbad9e868bf6e6d2c", - "x-ms-request-id": "ccd68ae6-5ac3-4e98-8aa7-d111a8f3ee1b" + "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", + "x-ms-request-id": "045f98ea-9693-4079-9b2b-0c6cb9f2aac9" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json index cf657e1b43174..42a8c1556ae12 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json @@ -5,10 +5,10 @@ "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3995a9166ae67b4a8d51fc425e1ec483-352c024cd6f3584b-00", + "traceparent": "00-da5dae930d85b748a4bf2cd483e1921a-944fc022189cb240-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f307d265ede81ef426094b5561a18ef1", "x-ms-return-client-request-id": "true" @@ -20,12 +20,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f307d265ede81ef426094b5561a18ef1", - "x-ms-request-id": "e3ccc139-1885-44fe-aa6c-97ae83113845" + "x-ms-request-id": "e25b8a35-259d-4f1e-9820-34ade5a7ab04" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", @@ -35,17 +35,17 @@ "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "MyTrigger", - "operationId": "d8bb8eab-757f-4c0a-af26-9d1dce3dd935" + "operationId": "0fec0fba-08a6-410d-bca9-56bdee8326b2" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "05b441f9ede7956492636c0b7652f1bd", "x-ms-return-client-request-id": "true" @@ -63,26 +63,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "05b441f9ede7956492636c0b7652f1bd", - "x-ms-request-id": "2e2c5436-f42c-44bb-bc78-761678b1c5de" + "x-ms-request-id": "4a2d388c-a42c-49b1-85da-d255d771089d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b0e9ffbd531a950978312932691671f2", "x-ms-return-client-request-id": "true" @@ -100,26 +100,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:22 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b0e9ffbd531a950978312932691671f2", - "x-ms-request-id": "b49db10e-68c0-4b80-a392-c59ce49ffcc6" + "x-ms-request-id": "5ba38336-f635-43fa-9605-b11d3906aa06" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1f5bd22589ec840965eb9e34624e6077", "x-ms-return-client-request-id": "true" @@ -137,26 +137,26 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1f5bd22589ec840965eb9e34624e6077", - "x-ms-request-id": "3eccd83c-a81e-4c14-ba66-e8931d105388" + "x-ms-request-id": "f5b6678a-e4af-48d1-bbda-f3dc5c2ce2ff" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ad20c6c4334aa55f381e8cb6c4322c7c", "x-ms-return-client-request-id": "true" @@ -174,298 +174,39 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 02:09:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ad20c6c4334aa55f381e8cb6c4322c7c", - "x-ms-request-id": "d27a5aac-1843-4abe-8ba4-5213f0148963" + "x-ms-request-id": "580bde71-c7b9-4d13-b0a0-a111dd7b9805" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", - "x-ms-request-id": "c0d02fbf-80cf-4737-a399-2804563ca2fc" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a26db2d0c3f6f2a873b6e7cdfc52c033", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:23 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a26db2d0c3f6f2a873b6e7cdfc52c033", - "x-ms-request-id": "f2bd9469-2d33-4511-929b-45871bdbb82d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e84122bfbc68f280f6ecb7e4e830ef62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e84122bfbc68f280f6ecb7e4e830ef62", - "x-ms-request-id": "0aedbcb1-ce4c-42c1-bc86-555e2d8c2c44" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "11e663eb8ac42f85d1f33140ea0237a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "11e663eb8ac42f85d1f33140ea0237a2", - "x-ms-request-id": "08f03d34-2152-40c9-97ef-f7f44814d170" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "936e17a54a9314c1327aab0a0bc30a42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "936e17a54a9314c1327aab0a0bc30a42", - "x-ms-request-id": "6cf8ab45-7b3d-4292-9a91-241721876fc2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "99e184c6ae6c356e9c1217748b3f08f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:24 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "99e184c6ae6c356e9c1217748b3f08f3", - "x-ms-request-id": "a6d99197-4dc4-43cc-9435-70eef1c45d21" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d03f15b55cc1a1cea1d2df49de7b230d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d03f15b55cc1a1cea1d2df49de7b230d", - "x-ms-request-id": "5eb92414-a3e2-42d9-84b2-f732e23f24a9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8bb8eab-757f-4c0a-af26-9d1dce3dd935?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "657aeee99d20f636a839f781324d88f2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 21 Aug 2020 02:08:26 GMT", + "Date": "Wed, 26 Aug 2020 02:09:26 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "657aeee99d20f636a839f781324d88f2", - "x-ms-request-id": "69c3e4f5-40f8-497c-8357-1f7080688251" + "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", + "x-ms-request-id": "49609370-7139-4064-a72a-535b8dfab5dc" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json index 72a4ba5a8b02b..082ce27918b57 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "73a38e2fe68f17ddca039efee4a24528", "x-ms-return-client-request-id": "true" @@ -17,11 +17,11 @@ "ResponseHeaders": { "Content-Length": "2052", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:42 GMT", + "Date": "Wed, 26 Aug 2020 02:08:39 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "73a38e2fe68f17ddca039efee4a24528", - "x-ms-request-id": "1ca40f9b-bbfb-4841-b28e-a43d88916532" + "x-ms-request-id": "77924898-60a1-42e8-bb62-ae2674bfd36c" }, "ResponseBody": { "value": [ @@ -91,7 +91,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", "name": "MyTrigger", "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0900ce08-0000-0100-0000-5f3f2c640000", + "etag": "05004e91-0000-0100-0000-5f45c41c0000", "properties": { "type": "Trigger", "runtimeState": "Stopped" @@ -105,10 +105,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-26df9c537650e34088df07cca098479d-326ca6287a797e4d-00", + "traceparent": "00-ea658d02f1974948b8617b30af37d4f9-cf1188e13c4f604a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6a2070a865912684dab2e9db0746e2a4", "x-ms-return-client-request-id": "true" @@ -119,7 +119,7 @@ "Cache-Control": "no-cache", "Content-Length": "495", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:42 GMT", + "Date": "Wed, 26 Aug 2020 02:08:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -129,8 +129,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6a2070a865912684dab2e9db0746e2a4", - "x-ms-correlation-request-id": "ba0aa5e7-59b0-4eca-8ae3-d7dddc96905a", - "x-ms-request-id": "b2b98451-efe9-4ee0-adfa-38d0e550697e", + "x-ms-correlation-request-id": "2d006ffe-2051-4a51-aa68-b65cf4278e27", + "x-ms-request-id": "5891d05f-9a49-4cc7-8393-ad9d252c5ed3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -159,10 +159,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1998112a23d2394c9ef81ef57f6891cb-d18dff3b19cad449-00", + "traceparent": "00-1032df402b587f4f9afb09247b86fba9-c817ede1a4b0374e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "84b5abec48d2cddaf75a682005263bac", "x-ms-return-client-request-id": "true" @@ -173,7 +173,7 @@ "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:42 GMT", + "Date": "Wed, 26 Aug 2020 02:08:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -183,8 +183,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "84b5abec48d2cddaf75a682005263bac", - "x-ms-correlation-request-id": "d04d2dba-17b8-44a6-9d09-d7d6d6bb5872", - "x-ms-request-id": "2a162349-2221-4229-b5bc-c565501c8919", + "x-ms-correlation-request-id": "0be9031d-b749-4a6c-871f-6b12dc62fd57", + "x-ms-request-id": "9710fa8d-7fde-432c-9fb3-5a40089aee8d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -215,10 +215,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-253db58315179e4392c20ff163122bac-5efad028e8e3124a-00", + "traceparent": "00-e8b04ce7615aff4ab871fa0237fc44c5-e123f3576740f34d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c3a015e698e3ca50097c98ddfc010f83", "x-ms-return-client-request-id": "true" @@ -229,7 +229,7 @@ "Cache-Control": "no-cache", "Content-Length": "647", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:43 GMT", + "Date": "Wed, 26 Aug 2020 02:08:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -239,8 +239,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c3a015e698e3ca50097c98ddfc010f83", - "x-ms-correlation-request-id": "16f71ddb-e1d2-4622-a233-174f32f8d5e3", - "x-ms-request-id": "f2129b6e-64de-4b86-a41c-714876417bf2", + "x-ms-correlation-request-id": "6c38024f-e457-4276-9048-061f0c53402e", + "x-ms-request-id": "c59e3b72-8aeb-49c6-ba7e-85de4d9fd59b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -269,10 +269,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3700bd4520caf845ba0368072e03d2af-f4b665f463379042-00", + "traceparent": "00-5e2ab454d66dae4aaecd2330c7f96547-c61f6c406ef55b4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3811f921c1ed605596527336fc6320b3", "x-ms-return-client-request-id": "true" @@ -283,7 +283,7 @@ "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:07:43 GMT", + "Date": "Wed, 26 Aug 2020 02:08:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -293,8 +293,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3811f921c1ed605596527336fc6320b3", - "x-ms-correlation-request-id": "d5706be9-50fa-4a31-95ff-94736bc83a4d", - "x-ms-request-id": "0c7c23b2-7600-4d8c-b8b5-11e683f9ce36", + "x-ms-correlation-request-id": "49678778-cea5-4525-8836-d031b777e8fa", + "x-ms-request-id": "229b37f0-e69f-4bcc-bc1b-10aec338d0a4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -305,7 +305,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "0900ce08-0000-0100-0000-5f3f2c640000" + "etag": "05004e91-0000-0100-0000-5f45c41c0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json index 3e175a6a638eb..1a380c50ae85b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a4eb13e827d1a729e656409d1478d4de", "x-ms-return-client-request-id": "true" @@ -17,11 +17,11 @@ "ResponseHeaders": { "Content-Length": "2052", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:13 GMT", + "Date": "Wed, 26 Aug 2020 02:09:16 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a4eb13e827d1a729e656409d1478d4de", - "x-ms-request-id": "c429709f-d283-449d-adea-297e0bb22892" + "x-ms-request-id": "9f8257e0-a0a3-4500-a3b4-2e09b68519d0" }, "ResponseBody": { "value": [ @@ -91,7 +91,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", "name": "MyTrigger", "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0900ed08-0000-0100-0000-5f3f2c840000", + "etag": "05005d91-0000-0100-0000-5f45c4420000", "properties": { "type": "Trigger", "runtimeState": "Stopped" @@ -105,10 +105,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a605bcb8b29cb14fad1476e5cd61277d-6f10e41ab8eb2f4f-00", + "traceparent": "00-2fea9bf8924d6b45b0d76648bfa3cc0f-7ecb41bed5dc2d41-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2f3942e86ee846bb014ad74c0701d99c", "x-ms-return-client-request-id": "true" @@ -119,7 +119,7 @@ "Cache-Control": "no-cache", "Content-Length": "495", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:13 GMT", + "Date": "Wed, 26 Aug 2020 02:09:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -129,8 +129,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2f3942e86ee846bb014ad74c0701d99c", - "x-ms-correlation-request-id": "439ff538-53f9-4a62-be65-7e7be7b39bc2", - "x-ms-request-id": "80c1eee7-b94a-4dc1-b846-ca28b8d047e6", + "x-ms-correlation-request-id": "1fc133b7-0568-4339-80c2-b9d8f07fc81f", + "x-ms-request-id": "07707620-2dd8-4d1e-a893-2decd5345bbe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -159,10 +159,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89554baaf6e61441b41d05548aab4e33-e5734b0a1d748a45-00", + "traceparent": "00-f88b4cd1a26c01468e75590ef1c124af-604aa8b8a2bd5544-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "21b738ca8f9f99a0a29e069dc70e4fc1", "x-ms-return-client-request-id": "true" @@ -173,7 +173,7 @@ "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:14 GMT", + "Date": "Wed, 26 Aug 2020 02:09:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -183,8 +183,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "21b738ca8f9f99a0a29e069dc70e4fc1", - "x-ms-correlation-request-id": "71f8068e-5c3e-4feb-9319-9ded5007f22d", - "x-ms-request-id": "72425cf3-9f23-4ab5-ad6b-f8fedda34a02", + "x-ms-correlation-request-id": "c57795b2-4622-4bab-90b3-08415e0489a9", + "x-ms-request-id": "38ca287d-7ee1-4c69-a6a5-4f5d6a181cde", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -215,10 +215,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-459146c635eb024fae679a8a1ec0d8c9-df346e0af19ea444-00", + "traceparent": "00-5f8b888fc17d794fa0571b90c2dfc1eb-f542845956f8f847-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6452f0db036c79c158a4a2874fdca0e5", "x-ms-return-client-request-id": "true" @@ -229,7 +229,7 @@ "Cache-Control": "no-cache", "Content-Length": "647", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:14 GMT", + "Date": "Wed, 26 Aug 2020 02:09:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -239,8 +239,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6452f0db036c79c158a4a2874fdca0e5", - "x-ms-correlation-request-id": "c0b57317-78bf-4137-a2e8-520585b45182", - "x-ms-request-id": "d04d317a-55bf-4c22-acb4-28e712038c13", + "x-ms-correlation-request-id": "eba9be71-aae9-4228-ada4-9a13c627741c", + "x-ms-request-id": "cf02832a-0d19-4ff8-80f1-f41fcc81c1b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -269,10 +269,10 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-391914cae7bba6498da46e213ae144c0-bdfb8503833ab54f-00", + "traceparent": "00-3a4917b3bf22ee42b86cdcdce3987467-8b8f6cd57acd9247-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200821.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "dbd2a47db2c0593fa1a08c4a671e7ff3", "x-ms-return-client-request-id": "true" @@ -283,7 +283,7 @@ "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 21 Aug 2020 02:08:14 GMT", + "Date": "Wed, 26 Aug 2020 02:09:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -293,8 +293,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "dbd2a47db2c0593fa1a08c4a671e7ff3", - "x-ms-correlation-request-id": "45845041-cf5c-4686-b7cc-75f01c61171c", - "x-ms-request-id": "ce2b66ad-10ed-42c3-81fa-8c347154f0d8", + "x-ms-correlation-request-id": "c0f4f3e7-8e42-4c28-9a4d-bbdccd5ee378", + "x-ms-request-id": "47dd548e-bbfc-44e7-81ec-84e79cbabc5d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -305,7 +305,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "0900ed08-0000-0100-0000-5f3f2c840000" + "etag": "05005d91-0000-0100-0000-5f45c4420000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs new file mode 100644 index 0000000000000..8b93d05580f59 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Analytics.Synapse.Samples; +using Azure.Identity; +using NUnit.Framework; +using Azure.Analytics.Synapse.Artifacts.Models; + +namespace Azure.Analytics.Synapse.Artifacts.Samples +{ + public partial class DataFlowSnippets : SampleFixture + { + private DataFlowClient DataFlowClient; + + [OneTimeSetUp] + public void CreateClient() + { + // Environment variable with the Synapse workspace endpoint. + string workspaceUrl = TestEnvironment.WorkspaceUrl; + + #region Snippet:CreateDataFlowClient + // Create a new DataFlow client using the default credential from Azure.Identity using environment variables previously set, + // including AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, and AZURE_TENANT_ID. + DataFlowClient client = new DataFlowClient(endpoint: new Uri(workspaceUrl), credential: new DefaultAzureCredential()); + #endregion + + this.DataFlowClient = client; + } + + [Test] + public void CreateDataFlow() + { + #region Snippet:CreateDataFlow + var operation = DataFlowClient.StartCreateOrUpdateDataFlow("MyDataFlow", new DataFlowResource(new DataFlow())); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + DataFlowResource dataFlow = operation.Value; + #endregion + } + + [Test] + public void RetrieveDataFlow() + { + #region Snippet:RetrieveDataFlow + DataFlowResource dataFlow = DataFlowClient.GetDataFlow("MyDataFlow"); + #endregion + } + + [Test] + public void ListDataFlows() + { + #region Snippet:ListDataFlows + Pageable dataFlows = DataFlowClient.GetDataFlowsByWorkspace(); + foreach (DataFlowResource dataFlow in dataFlows) + { + System.Console.WriteLine(dataFlow.Name); + } + #endregion + } + + [Test] + public void DeleteDataFlow() + { + #region Snippet:DeleteDataFlow + DataFlowClient.StartDeleteDataFlow("MyDataFlow"); + #endregion + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs new file mode 100644 index 0000000000000..48428cc2e823e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Analytics.Synapse.Samples; +using Azure.Identity; +using NUnit.Framework; +using Azure.Analytics.Synapse.Artifacts.Models; + +namespace Azure.Analytics.Synapse.Artifacts.Samples +{ + public partial class DatasetSnippets : SampleFixture + { + private DatasetClient DatasetClient; + + [OneTimeSetUp] + public void CreateClient() + { + // Environment variable with the Synapse workspace endpoint. + string workspaceUrl = TestEnvironment.WorkspaceUrl; + + #region Snippet:CreateDatasetClient + // Create a new Dataset client using the default credential from Azure.Identity using environment variables previously set, + // including AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, and AZURE_TENANT_ID. + DatasetClient client = new DatasetClient(endpoint: new Uri(workspaceUrl), credential: new DefaultAzureCredential()); + #endregion + + this.DatasetClient = client; + } + + [Test] + public void CreateDataset() + { + #region Snippet:CreateDataset + var operation = DatasetClient.StartCreateOrUpdateDataset("MyDataset", new DatasetResource(new Dataset(new LinkedServiceReference(LinkedServiceReferenceType.LinkedServiceReference, "testsynapseworkspace-WorkspaceDefaultStorage")))); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + DatasetResource dataset = operation.Value; + #endregion + } + + [Test] + public void RetrieveDataset() + { + #region Snippet:RetrieveDataset + DatasetResource dataset = DatasetClient.GetDataset("MyDataset"); + #endregion + } + + [Test] + public void ListDatasets() + { + #region Snippet:ListDatasets + Pageable datasets = DatasetClient.GetDatasetsByWorkspace(); + foreach (DatasetResource dataset in datasets) + { + System.Console.WriteLine(dataset.Name); + } + #endregion + } + + [Test] + public void DeleteDataset() + { + #region Snippet:DeleteDataset + DatasetClient.StartDeleteDataset("MyDataset"); + #endregion + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs new file mode 100644 index 0000000000000..4dc004df28218 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Analytics.Synapse.Samples; +using Azure.Identity; +using NUnit.Framework; +using Azure.Analytics.Synapse.Artifacts.Models; + +namespace Azure.Analytics.Synapse.Artifacts.Samples +{ + public partial class LinkedServiceSnippets : SampleFixture + { + private LinkedServiceClient LinkedServiceClient; + + [OneTimeSetUp] + public void CreateClient() + { + // Environment variable with the Synapse workspace endpoint. + string workspaceUrl = TestEnvironment.WorkspaceUrl; + + #region Snippet:CreateLinkedServiceClient + // Create a new LinkedService client using the default credential from Azure.Identity using environment variables previously set, + // including AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, and AZURE_TENANT_ID. + LinkedServiceClient client = new LinkedServiceClient(endpoint: new Uri(workspaceUrl), credential: new DefaultAzureCredential()); + #endregion + + this.LinkedServiceClient = client; + } + + [Test] + public void CreateLinkedService() + { + #region Snippet:CreateLinkedService + var operation = LinkedServiceClient.StartCreateOrUpdateLinkedService("MyLinkedService", new LinkedServiceResource(new AzureDataLakeStoreLinkedService("adl://test.azuredatalakestore.net/"))); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + LinkedServiceResource linkedService = operation.Value; + #endregion + } + + [Test] + public void RetrieveLinkedService() + { + #region Snippet:RetrieveLinkedService + LinkedServiceResource linkedService = LinkedServiceClient.GetLinkedService("MyLinkedService"); + #endregion + } + + [Test] + public void ListLinkedServices() + { + #region Snippet:ListLinkedServices + Pageable linkedServices = LinkedServiceClient.GetLinkedServicesByWorkspace(); + foreach (LinkedServiceResource linkedService in linkedServices) + { + System.Console.WriteLine(linkedService.Name); + } + #endregion + } + + [Test] + public void DeleteLinkedService() + { + #region Snippet:DeleteLinkedService + LinkedServiceClient.StartDeleteLinkedService("MyLinkedService"); + #endregion + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs index 6514ef2c3e9aa..505ec256d25f4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs @@ -42,7 +42,12 @@ public void CreateNotebook() nbformatMinor: 2, new List() ); - var createdNotebook = notebookClient.StartCreateOrUpdateNotebook("MyNotebook", new NotebookResource(notebook)); + var operation = notebookClient.StartCreateOrUpdateNotebook("MyNotebook", new NotebookResource(notebook)); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + NotebookResource notebookResource = operation.Value; #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs new file mode 100644 index 0000000000000..55c85e1d2a847 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Analytics.Synapse.Samples; +using Azure.Identity; +using NUnit.Framework; +using Azure.Analytics.Synapse.Artifacts.Models; + +namespace Azure.Analytics.Synapse.Artifacts.Samples +{ + public partial class PipelineSnippets : SampleFixture + { + private PipelineClient PipelineClient; + + [OneTimeSetUp] + public void CreateClient() + { + // Environment variable with the Synapse workspace endpoint. + string workspaceUrl = TestEnvironment.WorkspaceUrl; + + #region Snippet:CreatePipelineClient + // Create a new Pipeline client using the default credential from Azure.Identity using environment variables previously set, + // including AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, and AZURE_TENANT_ID. + PipelineClient client = new PipelineClient(endpoint: new Uri(workspaceUrl), credential: new DefaultAzureCredential()); + #endregion + + this.PipelineClient = client; + } + + [Test] + public void CreatePipeline() + { + #region Snippet:CreatePipeline + var operation = PipelineClient.StartCreateOrUpdatePipeline("MyPipeline", new PipelineResource()); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + PipelineResource pipeline = operation.Value; + #endregion + } + + [Test] + public void RetrievePipeline() + { + #region Snippet:RetrievePipeline + PipelineResource pipeline = PipelineClient.GetPipeline("MyPipeline"); + #endregion + } + + [Test] + public void ListPipelines() + { + #region Snippet:ListPipelines + Pageable pipelines = PipelineClient.GetPipelinesByWorkspace(); + foreach (PipelineResource pipeline in pipelines) + { + System.Console.WriteLine(pipeline.Name); + } + #endregion + } + + [Test] + public void DeletePipeline() + { + #region Snippet:DeletePipeline + PipelineClient.StartDeletePipeline("MyPipeline"); + #endregion + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs new file mode 100644 index 0000000000000..366d4fe09e725 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Analytics.Synapse.Samples; +using Azure.Identity; +using NUnit.Framework; +using Azure.Analytics.Synapse.Artifacts.Models; + +namespace Azure.Analytics.Synapse.Artifacts.Samples +{ + public partial class TriggerSnippets : SampleFixture + { + private TriggerClient TriggerClient; + + [OneTimeSetUp] + public void CreateClient() + { + // Environment variable with the Synapse workspace endpoint. + string workspaceUrl = TestEnvironment.WorkspaceUrl; + + #region Snippet:CreateTriggerClient + // Create a new Trigger client using the default credential from Azure.Identity using environment variables previously set, + // including AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, and AZURE_TENANT_ID. + TriggerClient client = new TriggerClient(endpoint: new Uri(workspaceUrl), credential: new DefaultAzureCredential()); + #endregion + + this.TriggerClient = client; + } + + [Test] + public void CreateTrigger() + { + #region Snippet:CreateTrigger + var operation = TriggerClient.StartCreateOrUpdateTrigger("MyTrigger", new TriggerResource(new Trigger())); + while (!operation.HasValue) + { + operation.UpdateStatus(); + } + TriggerResource trigger = operation.Value; + #endregion + } + + [Test] + public void RetrieveTrigger() + { + #region Snippet:RetrieveTrigger + TriggerResource trigger = TriggerClient.GetTrigger("MyTrigger"); + #endregion + } + + [Test] + public void ListTriggers() + { + #region Snippet:ListTriggers + Pageable triggers = TriggerClient.GetTriggersByWorkspace(); + foreach (TriggerResource trigger in triggers) + { + System.Console.WriteLine(trigger.Name); + } + #endregion + } + + [Test] + public void DeleteTrigger() + { + #region Snippet:DeleteTrigger + TriggerClient.StartDeleteTrigger("MyTrigger"); + #endregion + } + } +} From 571e3792676884d9a8790ef6f57ad21cf55fef94 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Wed, 26 Aug 2020 13:56:56 +0800 Subject: [PATCH 3/9] update generator version and rerecord tests --- ...ure.Analytics.Synapse.AccessControl.csproj | 1 - .../src/Generated/AccessControlRestClient.cs | 8 + .../TesGetCallerRoleAssignments.json | 22 +- .../TesGetCallerRoleAssignmentsAsync.json | 22 +- .../TestCreateAndDeleteRoleAssignment.json | 37 +- ...estCreateAndDeleteRoleAssignmentAsync.json | 37 +- .../TestGetRoleAssignment.json | 242 ++++--- .../TestGetRoleAssignmentAsync.json | 242 ++++--- .../TestGetRoleDefinition.json | 50 +- .../TestGetRoleDefinitionAsync.json | 50 +- .../Azure.Analytics.Synapse.Artifacts.csproj | 1 - .../DataFlowDebugSessionRestClient.cs | 6 + .../src/Generated/DataFlowRestClient.cs | 5 + .../src/Generated/DatasetRestClient.cs | 5 + .../src/Generated/LinkedServiceRestClient.cs | 5 + .../src/Generated/NotebookRestClient.cs | 7 + .../src/Generated/PipelineRestClient.cs | 6 + .../src/Generated/PipelineRunRestClient.cs | 4 + .../Generated/SparkJobDefinitionRestClient.cs | 7 + .../src/Generated/SqlScriptRestClient.cs | 5 + .../src/Generated/TriggerRestClient.cs | 10 + .../src/Generated/TriggerRunRestClient.cs | 3 + .../TestCreateDataFlow.json | 153 ++-- .../TestCreateDataFlowAsync.json | 537 ++------------ .../TestDeleteDataFlow.json | 353 ++++++++-- .../TestDeleteDataFlowAsync.json | 260 +------ .../TestGetDataFlow.json | 18 +- .../TestGetDataFlowAsync.json | 18 +- .../TestCreateDataset.json | 143 +--- .../TestCreateDatasetAsync.json | 661 +----------------- .../TestDeleteDataset.json | 165 ++--- .../TestDeleteDatasetAsync.json | 345 +++++++-- .../TestGetDataset.json | 18 +- .../TestGetDatasetAsync.json | 18 +- .../TestCreateLinkedService.json | 301 ++------ .../TestCreateLinkedServiceAsync.json | 553 ++------------- .../TestDeleteLinkedService.json | 479 +------------ .../TestDeleteLinkedServiceAsync.json | 427 ++--------- .../TestGetLinkedService.json | 36 +- .../TestGetLinkedServiceAsync.json | 36 +- .../TestCreateNotebook.json | 516 ++------------ .../TestCreateNotebookAsync.json | 159 +++-- .../TestDeleteNotebook.json | 514 ++------------ .../TestDeleteNotebookAsync.json | 302 +++++++- .../TestGetNotebook.json | 72 +- .../TestGetNotebookAsync.json | 72 +- .../TestCreatePipeline.json | 232 +++++- .../TestCreatePipelineAsync.json | 385 ++++++++-- .../TestDeletePipeline.json | 551 ++------------- .../TestDeletePipelineAsync.json | 295 ++------ .../TestGetPipeline.json | 94 +-- .../TestGetPipelineAsync.json | 94 +-- .../TestCreateTrigger.json | 177 ++--- .../TestCreateTriggerAsync.json | 228 ++---- .../TestDeleteTrigger.json | 516 +++++++++++++- .../TestDeleteTriggerAsync.json | 162 ++++- .../TestGetTrigger.json | 45 +- .../TestGetTriggerAsync.json | 45 +- .../src/Azure.Analytics.Synapse.Spark.csproj | 1 - .../src/Generated/SparkBatchRestClient.cs | 3 + .../src/Generated/SparkSessionRestClient.cs | 7 + .../TestGetSparkBatchJob.json | 315 +++++---- .../TestGetSparkBatchJobAsync.json | 315 +++++---- .../TestGetSparkSession.json | 313 +++++---- .../TestGetSparkSessionAsync.json | 315 +++++---- 65 files changed, 4428 insertions(+), 6596 deletions(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj index 370ea76683abd..1be4299d056fa 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj @@ -13,7 +13,6 @@ CS1591; - true diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Generated/AccessControlRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Generated/AccessControlRestClient.cs index f8701c7b4d394..714018e79073e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Generated/AccessControlRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Generated/AccessControlRestClient.cs @@ -58,6 +58,7 @@ internal HttpMessage CreateCreateRoleAssignmentRequest(RoleAssignmentOptions cre uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(createRoleAssignmentOptions); request.Content = content; @@ -140,6 +141,7 @@ internal HttpMessage CreateGetRoleAssignmentsRequest(string roleId, string princ { request.Headers.Add("x-ms-continuation", continuationToken); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -212,6 +214,7 @@ internal HttpMessage CreateGetRoleAssignmentByIdRequest(string roleAssignmentId) uri.AppendPath(roleAssignmentId, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -280,6 +283,7 @@ internal HttpMessage CreateDeleteRoleAssignmentByIdRequest(string roleAssignment uri.AppendPath(roleAssignmentId, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -339,6 +343,7 @@ internal HttpMessage CreateGetCallerRoleAssignmentsRequest() uri.AppendPath("/rbac/getMyAssignedRoles", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -402,6 +407,7 @@ internal HttpMessage CreateGetRoleDefinitionsRequest() uri.AppendPath("/rbac/roles", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -456,6 +462,7 @@ internal HttpMessage CreateGetRoleDefinitionByIdRequest(string roleId) uri.AppendPath(roleId, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -522,6 +529,7 @@ internal HttpMessage CreateGetRoleDefinitionsNextPageRequest(string nextLink) uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignments.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignments.json index efcada75dee45..cf8027ded6e03 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignments.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignments.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3d2c25bc282aad39c91012ea9e321bc6", "x-ms-return-client-request-id": "true" @@ -17,7 +18,7 @@ "ResponseHeaders": { "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:32 GMT", + "Date": "Wed, 26 Aug 2020 03:49:43 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -25,8 +26,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3d2c25bc282aad39c91012ea9e321bc6", "x-ms-request-id": [ - "3120ee90-e659-49e4-804b-dba500f0397f", - "3120ee90-e659-49e4-804b-dba500f0397f" + "86cca1c5-3122-4646-aa85-891f87606a7e", + "86cca1c5-3122-4646-aa85-891f87606a7e" ] }, "ResponseBody": { @@ -53,11 +54,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/getMyAssignedRoles?api-version=2020-02-01-preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35042a6b4342d9428958533de193ef5e-155c16897c659949-00", + "traceparent": "00-4cdd2bb507158845a8b132b85b63dd88-8f171a8cf6364f4d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "16353bb23649213bc7bdf1d984ac60b2", "x-ms-return-client-request-id": "true" @@ -67,11 +69,11 @@ "ResponseHeaders": { "Content-Length": "118", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:32 GMT", + "Date": "Wed, 26 Aug 2020 03:49:43 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "16353bb23649213bc7bdf1d984ac60b2", - "x-ms-request-id": "160996c9-6fb6-4c91-8469-cf31a6adaa16" + "x-ms-request-id": "d620912b-e2ff-41d7-92b7-3b9bc3af47c6" }, "ResponseBody": "[\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022]" } diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignmentsAsync.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignmentsAsync.json index 2de202453f752..93c1ff9665d13 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignmentsAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TesGetCallerRoleAssignmentsAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "43ee0239d7275c8456f1538df34357a7", "x-ms-return-client-request-id": "true" @@ -17,7 +18,7 @@ "ResponseHeaders": { "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:35 GMT", + "Date": "Wed, 26 Aug 2020 03:49:53 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -25,8 +26,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "43ee0239d7275c8456f1538df34357a7", "x-ms-request-id": [ - "90c44c19-b362-4f26-8706-b3c84ccbc5b7", - "90c44c19-b362-4f26-8706-b3c84ccbc5b7" + "152b3ae4-a4db-481f-936d-229d2335dfb8", + "152b3ae4-a4db-481f-936d-229d2335dfb8" ] }, "ResponseBody": { @@ -53,11 +54,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/getMyAssignedRoles?api-version=2020-02-01-preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f225c0429ccb944fa5d23d32a5ae5f92-e9493764cd7c4c40-00", + "traceparent": "00-89c57b27b6c85c44babf27b20eaa9dcd-f07670e758c1bc41-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a512669bc97ab3448e55b7b7cfaf26c2", "x-ms-return-client-request-id": "true" @@ -67,11 +69,11 @@ "ResponseHeaders": { "Content-Length": "118", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:35 GMT", + "Date": "Wed, 26 Aug 2020 03:49:53 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a512669bc97ab3448e55b7b7cfaf26c2", - "x-ms-request-id": "9743aa2e-6390-4bc8-b559-6c217e7ed90f" + "x-ms-request-id": "0874cfd1-7320-4918-a235-593d5530f96e" }, "ResponseBody": "[\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022]" } diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignment.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignment.json index efbc588ed1daa..7113b269ab4af 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignment.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignment.json @@ -4,13 +4,14 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments?api-version=2020-02-01-preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-e8d0396dbfe04142b922749f050cbcf9-d4f9df0027a40d43-00", + "traceparent": "00-e92996f3ec785f4cab194e7338a4b984-ca1ab7ed166d0a48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e2dff03ce48183bd49a6a31e22a23495", "x-ms-return-client-request-id": "true" @@ -23,11 +24,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 09 Jun 2020 06:02:25 GMT", + "Date": "Wed, 26 Aug 2020 03:49:45 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e2dff03ce48183bd49a6a31e22a23495", - "x-ms-request-id": "593439f5-d0a2-40d2-9c97-582a744e39b3" + "x-ms-request-id": "deac342a-ce18-4d44-8133-76417b34a07f" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-02416857-9fe0-7bc3-6ae6-54f6bd999c12", @@ -39,11 +40,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-02416857-9fe0-7bc3-6ae6-54f6bd999c12?api-version=2020-02-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-42f9b90dcaedef4bbe18fd78c4616e57-81f8f9e9af84a64f-00", + "traceparent": "00-302cf4eb53a87340b8595d7a87130c7e-57ecb04500297141-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bb2b862d33e9dca343d3fd2cfe727ac9", "x-ms-return-client-request-id": "true" @@ -52,11 +54,11 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 09 Jun 2020 06:02:25 GMT", + "Date": "Wed, 26 Aug 2020 03:49:45 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bb2b862d33e9dca343d3fd2cfe727ac9", - "x-ms-request-id": "5d03cb78-520d-48a1-b9b5-b22709f63de0" + "x-ms-request-id": "8b3a0fe2-1504-4de9-9e28-c6fda3b28a9e" }, "ResponseBody": [] }, @@ -64,11 +66,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8ced2bf8f9c7ee478df48da29400766a-c13b835aad957e4d-00", + "traceparent": "00-56512381114c0c4d88bb6238700c4e6b-4ce4fe2373814a4c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "caff1e60aa2f72a6aabdb939fca459c7", "x-ms-return-client-request-id": "true" @@ -76,16 +79,16 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2761", + "Content-Length": "3129", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 09 Jun 2020 06:02:25 GMT", + "Date": "Wed, 26 Aug 2020 03:49:45 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "caff1e60aa2f72a6aabdb939fca459c7", "x-ms-continuation": "", - "x-ms-request-id": "795eb4b4-2273-491e-a7a6-48ec1432fa63" + "x-ms-request-id": "53facf5a-8741-4b37-976e-9ec31378c4ab" }, - "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022}]" + "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00224d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u002266a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022}]" } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignmentAsync.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignmentAsync.json index af5a41c822923..eb5fe40767376 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignmentAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestCreateAndDeleteRoleAssignmentAsync.json @@ -4,13 +4,14 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments?api-version=2020-02-01-preview", "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "102", "Content-Type": "application/json", - "traceparent": "00-72bca7313828064a932a6a2a4421bff3-e3e056f65a8d5043-00", + "traceparent": "00-7d2639f34fcad443bd85e4e54e3bfc00-384e25420e7d2344-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8c8430fdda9285d522dd5c4867bb7865", "x-ms-return-client-request-id": "true" @@ -23,11 +24,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 09 Jun 2020 06:02:26 GMT", + "Date": "Wed, 26 Aug 2020 03:49:55 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8c8430fdda9285d522dd5c4867bb7865", - "x-ms-request-id": "e28b0ee9-09ef-460c-9ce4-6b801041ae71" + "x-ms-request-id": "10f76cac-700f-4b0a-8f3d-abbbc0387a9a" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-02ed50e4-d1b3-1e3e-286e-52763c7ed103", @@ -39,11 +40,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-02ed50e4-d1b3-1e3e-286e-52763c7ed103?api-version=2020-02-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-85c2e1a9646e8c41a884ca0bd289f06c-6008b83c5341b34e-00", + "traceparent": "00-dbd6e4abb9b19f4d93844ed31d06958c-9762a46c370b1642-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1acf3e4ce5541304c5cf300b3d286947", "x-ms-return-client-request-id": "true" @@ -52,11 +54,11 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 09 Jun 2020 06:02:26 GMT", + "Date": "Wed, 26 Aug 2020 03:49:55 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1acf3e4ce5541304c5cf300b3d286947", - "x-ms-request-id": "c60fb66a-171b-4e9a-8770-de574e6eec9d" + "x-ms-request-id": "450b950e-92d5-47af-9988-f786b2cc57f3" }, "ResponseBody": [] }, @@ -64,11 +66,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0ee887cbc6dddf418965ec70ce47393a-0c4eab456d47704c-00", + "traceparent": "00-c904ae6fc985af4eb133fa06f812182f-43ce27d095842d4e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200608.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "071f0737f3550a387a67e0d674f6b76c", "x-ms-return-client-request-id": "true" @@ -76,16 +79,16 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2761", + "Content-Length": "3129", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 09 Jun 2020 06:02:26 GMT", + "Date": "Wed, 26 Aug 2020 03:49:55 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "071f0737f3550a387a67e0d674f6b76c", "x-ms-continuation": "", - "x-ms-request-id": "08ce5321-4e22-4cd8-b5bb-3a839c3d75b9" + "x-ms-request-id": "ae773461-254d-4f60-9fcf-dd8602ee5a72" }, - "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022}]" + "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00224d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u002266a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022}]" } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignment.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignment.json index 844146165bd7b..fcb692fd17e29 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignment.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignment.json @@ -4,11 +4,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-424aa816363df744a621af69f7295f99-c472d22bba820d42-00", + "traceparent": "00-996ef6282f1c784eaac0056dda0371b5-e7d722c7b454c947-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1becccee8c3a69bb246e33a04c5e0308", "x-ms-return-client-request-id": "true" @@ -16,26 +17,27 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2761", + "Content-Length": "3129", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:47 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1becccee8c3a69bb246e33a04c5e0308", "x-ms-continuation": "", - "x-ms-request-id": "0b04efb3-45cd-4777-9b50-0b0ac931c798" + "x-ms-request-id": "fcdd64aa-7e0e-4005-9e6e-b680cb6e8a82" }, - "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022}]" + "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00224d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u002266a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022}]" }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-48f18ef8d56107418f2ede969720d3ba-177db142f05cec46-00", + "traceparent": "00-ffed1cef04c0f3449c7e12e93a4f7bf3-59d72e2b71d3044f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8ff3a533bfc98a870e11b89e0a79614c", "x-ms-return-client-request-id": "true" @@ -45,11 +47,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:47 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8ff3a533bfc98a870e11b89e0a79614c", - "x-ms-request-id": "66f11d07-c807-4ff4-8eeb-741209ddfa76" + "x-ms-request-id": "e60ee695-e1bb-47e3-b69d-079065387d1c" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a", @@ -61,11 +63,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0473b2a682d43d4e8bcd7f0dc9bc62e9-89b1fd9fb0b0e645-00", + "traceparent": "00-126a3b3495b89b4e8f4cd11788b3178f-6c781574b43dff42-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "36156f365e1678d051e664f60e9f09d1", "x-ms-return-client-request-id": "true" @@ -75,11 +78,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:47 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "36156f365e1678d051e664f60e9f09d1", - "x-ms-request-id": "5a633e79-dd98-4f02-983d-511aedee5603" + "x-ms-request-id": "143d6a47-d3ee-423b-aac4-8daec8b92688" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e", @@ -91,11 +94,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-683da92a2d5ef74ca319a2ce657e7955-f393d79a58398b41-00", + "traceparent": "00-ce7ca2014f3a1846ac70e4a22077a6f5-f1f0eb5789abfc4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e57bbd2e301c2e0a44610c29d31c5eaa", "x-ms-return-client-request-id": "true" @@ -105,11 +109,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:47 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e57bbd2e301c2e0a44610c29d31c5eaa", - "x-ms-request-id": "a5ec2b1d-5eb9-43ef-abda-f2efe5d8b263" + "x-ms-request-id": "2cf15bf9-be12-445c-99bc-b1b88eddbb2e" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645", @@ -121,11 +125,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b369c5f199fa4b43966e93d96c6706d9-e28546ea81b47646-00", + "traceparent": "00-b0eb2a0c01c9594f840d5b19f8c32c88-ee43c5c9610fe043-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "dc6ae70ccd49d4f2d47b3de25b907b6f", "x-ms-return-client-request-id": "true" @@ -135,11 +140,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:47 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dc6ae70ccd49d4f2d47b3de25b907b6f", - "x-ms-request-id": "f1cd8fc5-e34c-45be-8d1f-ef305232fadd" + "x-ms-request-id": "a328f999-2def-4caf-9639-8868092849f5" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e", @@ -151,11 +156,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5bedfa7e76c65f49bf1d9ce2e0f2c44d-e9c8148997b7b44b-00", + "traceparent": "00-059e5b0e4523814889ac496303372713-a38e5729788e1f49-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4d6fe7077cfe053064e6f1b451a7a534", "x-ms-return-client-request-id": "true" @@ -165,11 +171,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:48 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4d6fe7077cfe053064e6f1b451a7a534", - "x-ms-request-id": "b7f5c332-9c9b-4454-925e-d54e487f1f9e" + "x-ms-request-id": "85d4f312-fd78-4ba8-96ca-7dabf851351f" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a", @@ -181,11 +187,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0f1e65b27d5990489a83dbdcebbc5bbb-41de23c2db7ef84e-00", + "traceparent": "00-ef9cd6d45cd1f34dbfd005699ae4da71-a13da28a036ccf45-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "27eab9872d356188cba610a1f227d3b3", "x-ms-return-client-request-id": "true" @@ -195,11 +202,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:48 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "27eab9872d356188cba610a1f227d3b3", - "x-ms-request-id": "25a0aaf8-a64b-4557-8a4b-5d6b10cafe90" + "x-ms-request-id": "6cbd18b6-f285-46fe-85ee-54d872e9f7d6" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7", @@ -211,11 +218,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fa1f26a6da32ac49826707ac20ff7ac3-3e4ff6c08623084c-00", + "traceparent": "00-70d994e3d2160a41a5171dc6e10e7c01-a125d849965c9247-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ec229de611ad90acb7647862db3e822d", "x-ms-return-client-request-id": "true" @@ -225,11 +233,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:48 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ec229de611ad90acb7647862db3e822d", - "x-ms-request-id": "6121d0a6-890f-497f-b744-5173e529d334" + "x-ms-request-id": "f55e4ad8-2e16-49d1-8725-5d1852cb23b2" }, "ResponseBody": { "id": "c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7", @@ -241,11 +249,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b979d26fbbeb9549a9cd63fa34b13868-6d5c651914bc3a4b-00", + "traceparent": "00-b25372f7b815db4e912548e67d8cb00c-414fae3b3cefed4a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a25b09d554a6da395e0e81586b8f133c", "x-ms-return-client-request-id": "true" @@ -255,11 +264,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:33 GMT", + "Date": "Wed, 26 Aug 2020 03:49:48 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a25b09d554a6da395e0e81586b8f133c", - "x-ms-request-id": "2d301d99-b2c2-4c71-92b0-7ab7a309ae7b" + "x-ms-request-id": "9e032295-3179-4e6e-8334-6c9d7405663f" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7", @@ -271,11 +280,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-006120d5ba8f53439d2aac0d38869a31-969627840cd4f54e-00", + "traceparent": "00-0bcc4979bd4f8d499d524a427e8cc800-dd70f0f1f206d741-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b4cd3e13b98575870c5970d0b526868d", "x-ms-return-client-request-id": "true" @@ -285,11 +295,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:48 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b4cd3e13b98575870c5970d0b526868d", - "x-ms-request-id": "856978a8-36ad-4346-8430-fe8d9cf94457" + "x-ms-request-id": "0e3abe69-6fca-437a-9d50-53a3f3aca080" }, "ResponseBody": { "id": "c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549", @@ -301,11 +311,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c7f4386c3bee554780a84977ab1ab1af-9a5d571c4b6c344d-00", + "traceparent": "00-8d540fd0ab292f469d2720ed853bc48a-eac876b30003dd49-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e9cbe32330cc910c64488d9e8f542427", "x-ms-return-client-request-id": "true" @@ -315,11 +326,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:49 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e9cbe32330cc910c64488d9e8f542427", - "x-ms-request-id": "4da8d55d-b72f-49c4-821b-b6f95d363167" + "x-ms-request-id": "8da52386-2e22-428b-91c4-a5f351ae5a7b" }, "ResponseBody": { "id": "c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e", @@ -331,11 +342,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ca9f1c019e5db34993ca158d3466ea71-8c86e769a9316b48-00", + "traceparent": "00-3b734b4dc8b6bb4390cfb6745f3a784d-4ae65a6c5947d34a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9d4e3b51ce701ca881e5954ce4682438", "x-ms-return-client-request-id": "true" @@ -345,11 +357,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:49 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9d4e3b51ce701ca881e5954ce4682438", - "x-ms-request-id": "65b86684-7fbf-45f5-a73b-bdc440b28eb7" + "x-ms-request-id": "61e889b8-ddc0-45ee-b019-832c8b165946" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e", @@ -361,11 +373,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-aadffdb92bf10440805c56aeb0a50926-59e525c46c5d1b40-00", + "traceparent": "00-0373027e44b0d64b9b1aa426c645c559-f2298d3878b86743-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8835f4882ac3e270313c4f3c2be8e5b8", "x-ms-return-client-request-id": "true" @@ -375,11 +388,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:49 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8835f4882ac3e270313c4f3c2be8e5b8", - "x-ms-request-id": "dcfbcd32-f634-48f5-89bc-c546e57a1dd6" + "x-ms-request-id": "022a413f-2326-4d18-b32a-8b43c11fdb95" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549", @@ -391,11 +404,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2a10fa73cca3114ab07440a60840beb4-33b0ec1d4f13af49-00", + "traceparent": "00-3a0877adb057964cb984a0cb1000a6fa-d20d37123d0a9e42-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7a7f4835e8d7541d3baf67e79bc0adfb", "x-ms-return-client-request-id": "true" @@ -405,11 +419,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:49 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7a7f4835e8d7541d3baf67e79bc0adfb", - "x-ms-request-id": "c71ef781-a929-4f19-950d-3b4c8fe100f7" + "x-ms-request-id": "ba9e299e-43b7-405e-87c5-df55a14a3d6d" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549", @@ -421,11 +435,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-df9e5959a85cf34f9168387291ff8e1f-3615b0f5182ceb49-00", + "traceparent": "00-35a1629f09370c4b999fe97b9d852e06-5196cc8671c7fb4f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9b1654239c1f2764ca6b6b337e6bf098", "x-ms-return-client-request-id": "true" @@ -435,11 +450,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:49 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9b1654239c1f2764ca6b6b337e6bf098", - "x-ms-request-id": "37b11d74-55ee-493a-bc75-f688958b3da5" + "x-ms-request-id": "728f000b-392e-4563-93c0-5f4a7d49b66e" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311", @@ -451,11 +466,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3cd6e0fc27bd9241b988e7b0c15da866-7c1001bb61acb741-00", + "traceparent": "00-c70836e25cce5d4d8a409fa7c7f20238-36c8484546d93145-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9c17dcffaae99f61d7e04c14c2894771", "x-ms-return-client-request-id": "true" @@ -465,17 +481,79 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:50 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9c17dcffaae99f61d7e04c14c2894771", - "x-ms-request-id": "2423d76e-e259-477b-a781-61ace46253ad" + "x-ms-request-id": "cb6b588d-59df-4ec3-bb33-12a17e5f85bf" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055", "roleId": "7af0c69a-a548-47d6-aea3-d00e69bd83aa", "principalId": "1424271a-af44-4fb2-9c34-4da0cd9e2055" } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419?api-version=2020-02-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ac3fe913c1a5c047ab6b7f56e737d2c3-2c0727c0b20d6c4d-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d619548f4ad29899e458af6c7ce9d5d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "183", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:49:50 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d619548f4ad29899e458af6c7ce9d5d0", + "x-ms-request-id": "309392db-048b-4410-a8f9-c164f2ae77a3" + }, + "ResponseBody": { + "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419", + "roleId": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78", + "principalId": "4d54f02c-07b8-48aa-8d8f-b9a5104eb419" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b?api-version=2020-02-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-0e252d558ff19b42852d52ef3edb4b5a-2cb5084f261bcf41-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "bfe7cebe11a87811f376c33e4f4f6441", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "183", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:49:50 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "bfe7cebe11a87811f376c33e4f4f6441", + "x-ms-request-id": "efc18a6d-965e-4b2c-916b-b650f535b07f" + }, + "ResponseBody": { + "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b", + "roleId": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78", + "principalId": "66a1901a-ffb3-4f46-bec6-79a421f50c4b" + } } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignmentAsync.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignmentAsync.json index 59afbf64ce39c..5ba125f8b06c9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignmentAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleAssignmentAsync.json @@ -4,11 +4,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cb3d6e586f8fc54d868a3c2d5c64f398-b980eb4a23cadb4c-00", + "traceparent": "00-249fae9d5ecd8648bb3c9397b573a9fe-49a73ede6659fc4f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "abc7b72b7f1159665dfd31a0862c31eb", "x-ms-return-client-request-id": "true" @@ -16,26 +17,27 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "2761", + "Content-Length": "3129", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:56 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "abc7b72b7f1159665dfd31a0862c31eb", "x-ms-continuation": "", - "x-ms-request-id": "a1007dab-b32b-46dd-bf41-4bc95934caab" + "x-ms-request-id": "e324760c-6a05-415e-a3f1-6ed59af9d4bc" }, - "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022}]" + "ResponseBody": "[{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00228f51e348-1fa6-4194-8d13-8e0368e3298a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022f63e7747-5fce-43a9-bd12-fb382caa5b7e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00226ece8f98-43d0-41c6-bb9a-7a0172e5a645\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022b71a874a-f1a8-4811-b06d-6748316e45a7\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u0022c3a6d2f1-a26f-4810-9b0f-591308d5cbf1\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022ca728363-7297-4e35-a9c3-c6400837883e\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u0022e3688378-4440-43dc-9c10-8b8250fbd549\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00223e537dfe-8cfd-4b17-b9e3-ae366f099311\u0022},{\u0022id\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055\u0022,\u0022roleId\u0022:\u00227af0c69a-a548-47d6-aea3-d00e69bd83aa\u0022,\u0022principalId\u0022:\u00221424271a-af44-4fb2-9c34-4da0cd9e2055\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u00224d54f02c-07b8-48aa-8d8f-b9a5104eb419\u0022},{\u0022id\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022,\u0022roleId\u0022:\u00226e4bf58a-b8e1-4cc3-bbf9-d73143322b78\u0022,\u0022principalId\u0022:\u002266a1901a-ffb3-4f46-bec6-79a421f50c4b\u0022}]" }, { "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-90d85f5168fb124dbd2f545fc6c59868-eb79b4d26394a041-00", + "traceparent": "00-45559cd5f5982342bac48d0a0407138f-eec3c8ad19b9614e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4097d8b47c7292412ac801ffbab07c83", "x-ms-return-client-request-id": "true" @@ -45,11 +47,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:56 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4097d8b47c7292412ac801ffbab07c83", - "x-ms-request-id": "de2b8a05-dc57-4be2-89ec-db46aa27e273" + "x-ms-request-id": "4eb130aa-4b49-4bf3-81c9-ae2ecc247d66" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-8f51e348-1fa6-4194-8d13-8e0368e3298a", @@ -61,11 +63,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-925f292ae1db074c91a108841f8ca8db-03ec7990fdf63043-00", + "traceparent": "00-4e8446cfbac96746bb330cb18b9317cd-69bb221e7f1b004e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c3181ab98ed96ef2eb008a6961c81fe5", "x-ms-return-client-request-id": "true" @@ -75,11 +78,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:56 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c3181ab98ed96ef2eb008a6961c81fe5", - "x-ms-request-id": "23efb0cb-c1a4-41b5-bb16-5054c2d46a0d" + "x-ms-request-id": "8c1683a6-7051-4e61-b536-4c56f31e3c96" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-f63e7747-5fce-43a9-bd12-fb382caa5b7e", @@ -91,11 +94,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6ed08a209ea413428699e1095f16b433-075d414e7a2af342-00", + "traceparent": "00-15177d8e963b32428ad1128dcadd1a00-cdcb69cc25c9784b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "775afa537d2cae1b753481487e679ead", "x-ms-return-client-request-id": "true" @@ -105,11 +109,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:56 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "775afa537d2cae1b753481487e679ead", - "x-ms-request-id": "5e7d78a7-7cc1-4f36-8301-5dd8a1c56379" + "x-ms-request-id": "389ff544-77f2-4ec6-a426-3ce0ce0ed478" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-6ece8f98-43d0-41c6-bb9a-7a0172e5a645", @@ -121,11 +125,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35770d3f0e0227459cd34b3d7669a973-7542ce80317c5c4f-00", + "traceparent": "00-703648ed0d9e1f40be2b0f016b4ae23f-22eea2cd8dcf0a49-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6be6ae806e132512e6295571f2d83162", "x-ms-return-client-request-id": "true" @@ -135,11 +140,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:56 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6be6ae806e132512e6295571f2d83162", - "x-ms-request-id": "33a77662-aca5-44af-b82e-5aff28186d3a" + "x-ms-request-id": "f5f2033b-8f4b-45ef-9782-efc64d7c3874" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ca728363-7297-4e35-a9c3-c6400837883e", @@ -151,11 +156,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3cad611c5dc2b049893b188226876339-67ee61c0b1642f43-00", + "traceparent": "00-7772e818fdce58489fc8d016ca83d27f-13da29fec53e044b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bfab1ba804553b56fe694da50da9ef83", "x-ms-return-client-request-id": "true" @@ -165,11 +171,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bfab1ba804553b56fe694da50da9ef83", - "x-ms-request-id": "8087b835-c0a6-4b4e-986a-03a11c902da0" + "x-ms-request-id": "f962f0fc-f8fd-4113-8268-b39893b58969" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-ed3c5c21-4f5d-4476-b9f6-f0c4bb404e1a", @@ -181,11 +187,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d482eb3cddd08e449772e9c4e440f0f3-3f54dbf60ef06d4e-00", + "traceparent": "00-dcae380d070fef4a94a2212babef8bf5-e56e9d85985cc74e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b3e8dc61b3e1e5d1e835910328a9bc9d", "x-ms-return-client-request-id": "true" @@ -195,11 +202,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b3e8dc61b3e1e5d1e835910328a9bc9d", - "x-ms-request-id": "388bdd07-0b98-47b2-b5fd-ae31cb1c369b" + "x-ms-request-id": "affa3603-c32a-4c0a-9f9f-3508148e39fc" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-b71a874a-f1a8-4811-b06d-6748316e45a7", @@ -211,11 +218,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-23a5882195b65e48b3cbbe16a9242d6c-1475ad1096e13e46-00", + "traceparent": "00-50fc1753b2715540a5c65f6cb1e28e50-0481ffd0358c1344-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "629f1f03dfbb7c5757aa6ca9206c183c", "x-ms-return-client-request-id": "true" @@ -225,11 +233,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "629f1f03dfbb7c5757aa6ca9206c183c", - "x-ms-request-id": "5a36ce81-7621-4a54-86ca-08289515b39d" + "x-ms-request-id": "aa37b3d1-d7e2-4bc8-bde4-7807e07e9dd4" }, "ResponseBody": { "id": "c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-b71a874a-f1a8-4811-b06d-6748316e45a7", @@ -241,11 +249,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-07f6d777638fb7449a618d0fa580e236-80eb77a41c07cb4e-00", + "traceparent": "00-7006997fa036f74ab08efda97cc6235a-e274ee4da2341d4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1510d1397df0f58049c6d62072531355", "x-ms-return-client-request-id": "true" @@ -255,11 +264,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:36 GMT", + "Date": "Wed, 26 Aug 2020 03:49:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1510d1397df0f58049c6d62072531355", - "x-ms-request-id": "2348eab4-e29f-45bf-9a55-cb674c34a03f" + "x-ms-request-id": "b7370b19-a76a-4c06-b039-2c725e34d8f4" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-b71a874a-f1a8-4811-b06d-6748316e45a7", @@ -271,11 +280,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d99a1de4b32cbc49b1d394af6b511683-a4db1316beee4d48-00", + "traceparent": "00-5de96b8243d4384982f428e7329e19c0-1f6a6a5a09686e4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "eea2b0ad8c0981c7846c5c374627c57b", "x-ms-return-client-request-id": "true" @@ -285,11 +295,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:58 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "eea2b0ad8c0981c7846c5c374627c57b", - "x-ms-request-id": "ef6a1a4b-d988-4dd6-9520-e93c755a8f9d" + "x-ms-request-id": "a8193c5b-49cf-4ad0-9059-467016452d82" }, "ResponseBody": { "id": "c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-e3688378-4440-43dc-9c10-8b8250fbd549", @@ -301,11 +311,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-46c962ff426b92448e038940313f0497-4d714d8db4214946-00", + "traceparent": "00-a32b3e6bd48e174cb641b6a94c8d41b6-d7d093e368b3bd47-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "57c9551ca69885ad9faa19f509370903", "x-ms-return-client-request-id": "true" @@ -315,11 +326,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:58 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "57c9551ca69885ad9faa19f509370903", - "x-ms-request-id": "0c59d625-36be-47ac-91e8-7ca23b777c1f" + "x-ms-request-id": "17f23dd7-418b-48e5-bce9-1fc94af0c9fa" }, "ResponseBody": { "id": "c3a6d2f1-a26f-4810-9b0f-591308d5cbf1-ca728363-7297-4e35-a9c3-c6400837883e", @@ -331,11 +342,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-562552116a083e43a635474324d81a3f-8b4e9741270ad948-00", + "traceparent": "00-50b1adf920a0bd4c9c7b320d2b5edc02-f538e2052a55bd43-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6ffc17972acaac32098e90832048ae21", "x-ms-return-client-request-id": "true" @@ -345,11 +357,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:58 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ffc17972acaac32098e90832048ae21", - "x-ms-request-id": "c71d481c-841a-455e-82b2-d64e53bcb456" + "x-ms-request-id": "d0488b28-cbca-4531-b5e8-eff2ce53324a" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-ca728363-7297-4e35-a9c3-c6400837883e", @@ -361,11 +373,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0c93bacf0b92a04f879523547d853efc-43219264fb0a994c-00", + "traceparent": "00-a3b888d5bb930043a847bfa2c3217d1a-63794bfa90309747-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1d035a01bb8a06bc031c4e5f73d2784d", "x-ms-return-client-request-id": "true" @@ -375,11 +388,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:58 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1d035a01bb8a06bc031c4e5f73d2784d", - "x-ms-request-id": "7438fa9f-3131-4b50-b547-8c06d6b19f7b" + "x-ms-request-id": "d4c81dcf-d26c-4494-9ccf-bef39a443646" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-e3688378-4440-43dc-9c10-8b8250fbd549", @@ -391,11 +404,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4aab3cfc2faddf45b13e99c634a822f9-870885f2f3d2904e-00", + "traceparent": "00-3876dce9cfdae24cbd3353eb820dbcfe-13d0dbb9102c3e40-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2f9f5863552bf2b1231c4d0915296456", "x-ms-return-client-request-id": "true" @@ -405,11 +419,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:58 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2f9f5863552bf2b1231c4d0915296456", - "x-ms-request-id": "ac758ae9-0715-49dc-aed4-98f84e64cce3" + "x-ms-request-id": "a08b40d4-ce12-4f22-beb9-968dedc6b2ba" }, "ResponseBody": { "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-e3688378-4440-43dc-9c10-8b8250fbd549", @@ -421,11 +435,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d33ea99840b5a543822d1a8958a70f6b-1e966681a9a15341-00", + "traceparent": "00-6b1dfe95b4cd0e46971a586d314ae27e-705a7724e9324d43-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "aef4f7fceb33db795af56baedbd33837", "x-ms-return-client-request-id": "true" @@ -435,11 +450,11 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:59 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aef4f7fceb33db795af56baedbd33837", - "x-ms-request-id": "f42968be-e510-47ee-8533-20575912dcea" + "x-ms-request-id": "731b0d87-271d-42a1-b379-56d4a704a80b" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-3e537dfe-8cfd-4b17-b9e3-ae366f099311", @@ -451,11 +466,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/7af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-afff6d21d539d8408f44fbde7be695be-86d65dff24fe5440-00", + "traceparent": "00-5aac302819db7d46b671ce579d3f7dc5-1ff34c95244bfa4e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c72043167ea8abf6a811fa6d6eb2f0da", "x-ms-return-client-request-id": "true" @@ -465,17 +481,79 @@ "ResponseHeaders": { "Content-Length": "183", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:49:59 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c72043167ea8abf6a811fa6d6eb2f0da", - "x-ms-request-id": "8d450f8e-bc2a-4d7d-977a-64d6c222ce73" + "x-ms-request-id": "e5db7979-adf0-4420-aa40-5549efe31412" }, "ResponseBody": { "id": "7af0c69a-a548-47d6-aea3-d00e69bd83aa-1424271a-af44-4fb2-9c34-4da0cd9e2055", "roleId": "7af0c69a-a548-47d6-aea3-d00e69bd83aa", "principalId": "1424271a-af44-4fb2-9c34-4da0cd9e2055" } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419?api-version=2020-02-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9242d13cd17cfa4094cd68ff1cb917e3-ee7329e341412e49-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "7c62f8b7c9dd7719dfc4d536ea03164f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "183", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:49:59 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7c62f8b7c9dd7719dfc4d536ea03164f", + "x-ms-request-id": "8fdd5c36-ff3f-4067-9204-b19e69bb9645" + }, + "ResponseBody": { + "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-4d54f02c-07b8-48aa-8d8f-b9a5104eb419", + "roleId": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78", + "principalId": "4d54f02c-07b8-48aa-8d8f-b9a5104eb419" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roleAssignments/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b?api-version=2020-02-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-54dc8c8bed83844892200e81730f4ea5-579c3caafaaa9f44-00", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d2f316e49d087dad01490521f10b6da7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "183", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:49:59 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d2f316e49d087dad01490521f10b6da7", + "x-ms-request-id": "e689a7cd-a17e-4e22-ac3e-e60fb14b9ba1" + }, + "ResponseBody": { + "id": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78-66a1901a-ffb3-4f46-bec6-79a421f50c4b", + "roleId": "6e4bf58a-b8e1-4cc3-bbf9-d73143322b78", + "principalId": "66a1901a-ffb3-4f46-bec6-79a421f50c4b" + } } ], "Variables": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinition.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinition.json index c9bf0af792d94..1f61d934e8d40 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinition.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinition.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "8f88c26ee61806225a35fe3b5a364eb0", "x-ms-return-client-request-id": "true" @@ -17,7 +18,7 @@ "ResponseHeaders": { "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:52 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -25,8 +26,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8f88c26ee61806225a35fe3b5a364eb0", "x-ms-request-id": [ - "7ebf2237-a9ff-45d6-9298-baa31b24bb5a", - "7ebf2237-a9ff-45d6-9298-baa31b24bb5a" + "dbc96ed9-e869-41b3-b88e-0fb028c2f017", + "dbc96ed9-e869-41b3-b88e-0fb028c2f017" ] }, "ResponseBody": { @@ -53,11 +54,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9470ca7f91961c48854b07760d8a37cd-f83b351f1679b448-00", + "traceparent": "00-0753095c83de9444b3f98f2d84cf5b16-10d38557ce26874c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "49019b07a50e04483777cee9802600f4", "x-ms-return-client-request-id": "true" @@ -67,7 +69,7 @@ "ResponseHeaders": { "Content-Length": "87", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:34 GMT", + "Date": "Wed, 26 Aug 2020 03:49:52 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -75,8 +77,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "49019b07a50e04483777cee9802600f4", "x-ms-request-id": [ - "9a3bcca4-b149-42c0-b474-7c2f3c609943", - "9a3bcca4-b149-42c0-b474-7c2f3c609943" + "8b8204cf-4d84-4271-91cd-3a296cd24506", + "8b8204cf-4d84-4271-91cd-3a296cd24506" ] }, "ResponseBody": { @@ -89,11 +91,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bd8702a4e2cf964594be282d8d45a55e-c8326ed5dbc31344-00", + "traceparent": "00-c3bcdae9970ba44caeb7c1db206d8199-1bd9011b00d1284d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2d13906b7980ff470efa84d09d2e4a2c", "x-ms-return-client-request-id": "true" @@ -103,7 +106,7 @@ "ResponseHeaders": { "Content-Length": "90", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:35 GMT", + "Date": "Wed, 26 Aug 2020 03:49:52 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -111,8 +114,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2d13906b7980ff470efa84d09d2e4a2c", "x-ms-request-id": [ - "22ea4671-6a44-4b15-bfff-142423847029", - "22ea4671-6a44-4b15-bfff-142423847029" + "5bd9fabd-18d7-4699-9fca-96c1f66bc3eb", + "5bd9fabd-18d7-4699-9fca-96c1f66bc3eb" ] }, "ResponseBody": { @@ -125,11 +128,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles/7af0c69a-a548-47d6-aea3-d00e69bd83aa?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dce74ce3eaac5c47af5bb063e85c1cbe-13091ea6f80fb240-00", + "traceparent": "00-2cc4496b7f102d43b339ee1058446e5f-8e018402057e854f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a415bc2966d3c8fb7a8457a017388533", "x-ms-return-client-request-id": "true" @@ -139,7 +143,7 @@ "ResponseHeaders": { "Content-Length": "81", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:35 GMT", + "Date": "Wed, 26 Aug 2020 03:49:52 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -147,8 +151,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a415bc2966d3c8fb7a8457a017388533", "x-ms-request-id": [ - "b9465d1f-b603-4230-af65-c3bcd10cd345", - "b9465d1f-b603-4230-af65-c3bcd10cd345" + "edf8ef55-e5a9-4699-9670-8817b0e03140", + "edf8ef55-e5a9-4699-9670-8817b0e03140" ] }, "ResponseBody": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinitionAsync.json b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinitionAsync.json index 7f60d0bc1b316..a8c2148d9c79c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinitionAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/tests/SessionRecords/AccessControlClientLiveTests/TestGetRoleDefinitionAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e35a3d49af69d045432ec763c800e2b5", "x-ms-return-client-request-id": "true" @@ -17,7 +18,7 @@ "ResponseHeaders": { "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:50:01 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -25,8 +26,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e35a3d49af69d045432ec763c800e2b5", "x-ms-request-id": [ - "d17e4081-462b-46d5-868f-d37f1a88b76f", - "d17e4081-462b-46d5-868f-d37f1a88b76f" + "2ed3f3ac-fd93-4690-a1ec-4b5ac7d2379b", + "2ed3f3ac-fd93-4690-a1ec-4b5ac7d2379b" ] }, "ResponseBody": { @@ -53,11 +54,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles/6e4bf58a-b8e1-4cc3-bbf9-d73143322b78?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-88298788dc2ca249b6d408e2875727e0-1afab985b023d843-00", + "traceparent": "00-283d6026f897224bbb56725b3152699c-dd6c84875f647d4d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "70a97fc50dd05a4ffceacb3aad23af51", "x-ms-return-client-request-id": "true" @@ -67,7 +69,7 @@ "ResponseHeaders": { "Content-Length": "87", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:50:01 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -75,8 +77,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "70a97fc50dd05a4ffceacb3aad23af51", "x-ms-request-id": [ - "9a6224be-86be-41d4-98c8-75ff1c33a58c", - "9a6224be-86be-41d4-98c8-75ff1c33a58c" + "797d82d7-23ef-4367-b3a3-515959e8355e", + "797d82d7-23ef-4367-b3a3-515959e8355e" ] }, "ResponseBody": { @@ -89,11 +91,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles/c3a6d2f1-a26f-4810-9b0f-591308d5cbf1?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-405ef6ed1defe04ea9a0d18ac197fda1-4696f3f061362142-00", + "traceparent": "00-6e55b4b7f5468f4e855ba4493b918cb9-6f2bb5d895e21347-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "88de35ed1e70c9c8c05e0764ea890bd5", "x-ms-return-client-request-id": "true" @@ -103,7 +106,7 @@ "ResponseHeaders": { "Content-Length": "90", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:50:01 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -111,8 +114,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "88de35ed1e70c9c8c05e0764ea890bd5", "x-ms-request-id": [ - "6f64fad1-8a51-424d-b23a-b501a1574c1b", - "6f64fad1-8a51-424d-b23a-b501a1574c1b" + "d549b47a-b2b7-4237-89fd-f21fec430aa6", + "d549b47a-b2b7-4237-89fd-f21fec430aa6" ] }, "ResponseBody": { @@ -125,11 +128,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/rbac/roles/7af0c69a-a548-47d6-aea3-d00e69bd83aa?api-version=2020-02-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-28dcd453d7a62643a9d654d0211ca06c-d006277cd756ce40-00", + "traceparent": "00-b172d5d96d4e1b45b6ac3c81e26c4dd5-822869f1ce592a43-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.AccessControl/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "dd928f27b3c63c3bed00e67ee30b231f", "x-ms-return-client-request-id": "true" @@ -139,7 +143,7 @@ "ResponseHeaders": { "Content-Length": "81", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:53:37 GMT", + "Date": "Wed, 26 Aug 2020 03:50:01 GMT", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -147,8 +151,8 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dd928f27b3c63c3bed00e67ee30b231f", "x-ms-request-id": [ - "65354f1d-ff01-4874-b2e0-383ad4821b2a", - "65354f1d-ff01-4874-b2e0-383ad4821b2a" + "13642375-6750-4843-b3dc-b6e1c1dad8f7", + "13642375-6750-4843-b3dc-b6e1c1dad8f7" ] }, "ResponseBody": { diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj index 313dfb772dbdc..c3603751979fb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj @@ -13,7 +13,6 @@ CS1591; - true diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs index 23060c57636be..d59163d7dc38f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs @@ -57,6 +57,7 @@ internal HttpMessage CreateCreateDataFlowDebugSessionRequest(CreateDataFlowDebug uri.AppendQuery("api-version", apiVersion, true); request0.Uri = uri; request0.Headers.Add("Content-Type", "application/json"); + request0.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(request); request0.Content = content; @@ -121,6 +122,7 @@ internal HttpMessage CreateQueryDataFlowDebugSessionsByWorkspaceRequest() uri.AppendPath("/queryDataFlowDebugSessions", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -175,6 +177,7 @@ internal HttpMessage CreateAddDataFlowRequest(DataFlowDebugPackage request) uri.AppendQuery("api-version", apiVersion, true); request0.Uri = uri; request0.Headers.Add("Content-Type", "application/json"); + request0.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(request); request0.Content = content; @@ -246,6 +249,7 @@ internal HttpMessage CreateDeleteDataFlowDebugSessionRequest(DeleteDataFlowDebug uri.AppendQuery("api-version", apiVersion, true); request0.Uri = uri; request0.Headers.Add("Content-Type", "application/json"); + request0.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(request); request0.Content = content; @@ -307,6 +311,7 @@ internal HttpMessage CreateExecuteCommandRequest(DataFlowDebugCommandRequest req uri.AppendQuery("api-version", apiVersion, true); request0.Uri = uri; request0.Headers.Add("Content-Type", "application/json"); + request0.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(request); request0.Content = content; @@ -370,6 +375,7 @@ internal HttpMessage CreateQueryDataFlowDebugSessionsByWorkspaceNextPageRequest( uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs index 728d7db224505..5c5656835f1ec 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs @@ -62,6 +62,7 @@ internal HttpMessage CreateCreateOrUpdateDataFlowRequest(string dataFlowName, Da request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(dataFlow); request.Content = content; @@ -141,6 +142,7 @@ internal HttpMessage CreateGetDataFlowRequest(string dataFlowName, string ifNone { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -211,6 +213,7 @@ internal HttpMessage CreateDeleteDataFlowRequest(string dataFlowName) uri.AppendPath(dataFlowName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -272,6 +275,7 @@ internal HttpMessage CreateGetDataFlowsByWorkspaceRequest() uri.AppendPath("/dataflows", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -324,6 +328,7 @@ internal HttpMessage CreateGetDataFlowsByWorkspaceNextPageRequest(string nextLin uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs index 86eaa8fbb8b41..83ca49a7db214 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs @@ -56,6 +56,7 @@ internal HttpMessage CreateGetDatasetsByWorkspaceRequest() uri.AppendPath("/datasets", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -115,6 +116,7 @@ internal HttpMessage CreateCreateOrUpdateDatasetRequest(string datasetName, Data request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(dataset); request.Content = content; @@ -194,6 +196,7 @@ internal HttpMessage CreateGetDatasetRequest(string datasetName, string ifNoneMa { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -268,6 +271,7 @@ internal HttpMessage CreateDeleteDatasetRequest(string datasetName) uri.AppendPath(datasetName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -328,6 +332,7 @@ internal HttpMessage CreateGetDatasetsByWorkspaceNextPageRequest(string nextLink uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs index a58a5f4c093e1..25b2e5e1ab4c7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs @@ -56,6 +56,7 @@ internal HttpMessage CreateGetLinkedServicesByWorkspaceRequest() uri.AppendPath("/linkedservices", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -115,6 +116,7 @@ internal HttpMessage CreateCreateOrUpdateLinkedServiceRequest(string linkedServi request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(linkedService); request.Content = content; @@ -194,6 +196,7 @@ internal HttpMessage CreateGetLinkedServiceRequest(string linkedServiceName, str { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -268,6 +271,7 @@ internal HttpMessage CreateDeleteLinkedServiceRequest(string linkedServiceName) uri.AppendPath(linkedServiceName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -328,6 +332,7 @@ internal HttpMessage CreateGetLinkedServicesByWorkspaceNextPageRequest(string ne uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs index c89ee54ddb9ee..f7bfeb4988d36 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs @@ -56,6 +56,7 @@ internal HttpMessage CreateGetNotebooksByWorkspaceRequest() uri.AppendPath("/notebooks", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -109,6 +110,7 @@ internal HttpMessage CreateGetNotebookSummaryByWorkSpaceRequest() uri.AppendPath("/notebooks/summary", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -168,6 +170,7 @@ internal HttpMessage CreateCreateOrUpdateNotebookRequest(string notebookName, No request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(notebook); request.Content = content; @@ -247,6 +250,7 @@ internal HttpMessage CreateGetNotebookRequest(string notebookName, string ifNone { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -321,6 +325,7 @@ internal HttpMessage CreateDeleteNotebookRequest(string notebookName) uri.AppendPath(notebookName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -381,6 +386,7 @@ internal HttpMessage CreateGetNotebooksByWorkspaceNextPageRequest(string nextLin uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -447,6 +453,7 @@ internal HttpMessage CreateGetNotebookSummaryByWorkSpaceNextPageRequest(string n uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs index 16c6410d87f64..746022bfd5c1e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs @@ -57,6 +57,7 @@ internal HttpMessage CreateGetPipelinesByWorkspaceRequest() uri.AppendPath("/pipelines", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -116,6 +117,7 @@ internal HttpMessage CreateCreateOrUpdatePipelineRequest(string pipelineName, Pi request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(pipeline); request.Content = content; @@ -195,6 +197,7 @@ internal HttpMessage CreateGetPipelineRequest(string pipelineName, string ifNone { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -269,6 +272,7 @@ internal HttpMessage CreateDeletePipelineRequest(string pipelineName) uri.AppendPath(pipelineName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -345,6 +349,7 @@ internal HttpMessage CreateCreatePipelineRunRequest(string pipelineName, string } request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); if (parameters != null) { var content = new Utf8JsonRequestContent(); @@ -431,6 +436,7 @@ internal HttpMessage CreateGetPipelinesByWorkspaceNextPageRequest(string nextLin uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs index 279f8d744b904..f37f8c9f55046 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs @@ -57,6 +57,7 @@ internal HttpMessage CreateQueryPipelineRunsByWorkspaceRequest(RunFilterParamete uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(filterParameters); request.Content = content; @@ -128,6 +129,7 @@ internal HttpMessage CreateGetPipelineRunRequest(string runId) uri.AppendPath(runId, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -200,6 +202,7 @@ internal HttpMessage CreateQueryActivityRunsRequest(string pipelineName, string uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(filterParameters); request.Content = content; @@ -296,6 +299,7 @@ internal HttpMessage CreateCancelPipelineRunRequest(string runId, bool? isRecurs } uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs index 494e30c0ee11b..2a7beac1b1656 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs @@ -56,6 +56,7 @@ internal HttpMessage CreateGetSparkJobDefinitionsByWorkspaceRequest() uri.AppendPath("/sparkJobDefinitions", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -115,6 +116,7 @@ internal HttpMessage CreateCreateOrUpdateSparkJobDefinitionRequest(string sparkJ request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(sparkJobDefinition); request.Content = content; @@ -202,6 +204,7 @@ internal HttpMessage CreateGetSparkJobDefinitionRequest(string sparkJobDefinitio { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -276,6 +279,7 @@ internal HttpMessage CreateDeleteSparkJobDefinitionRequest(string sparkJobDefini uri.AppendPath(sparkJobDefinitionName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -337,6 +341,7 @@ internal HttpMessage CreateExecuteSparkJobDefinitionRequest(string sparkJobDefin uri.AppendPath("/execute", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -397,6 +402,7 @@ internal HttpMessage CreateDebugSparkJobDefinitionRequest(SparkJobDefinitionReso uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(sparkJobDefinitionAzureResource); request.Content = content; @@ -458,6 +464,7 @@ internal HttpMessage CreateGetSparkJobDefinitionsByWorkspaceNextPageRequest(stri uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs index dccae6dcf9da3..0179b61c550db 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs @@ -56,6 +56,7 @@ internal HttpMessage CreateGetSqlScriptsByWorkspaceRequest() uri.AppendPath("/sqlScripts", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -115,6 +116,7 @@ internal HttpMessage CreateCreateOrUpdateSqlScriptRequest(string sqlScriptName, request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(sqlScript); request.Content = content; @@ -202,6 +204,7 @@ internal HttpMessage CreateGetSqlScriptRequest(string sqlScriptName, string ifNo { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -276,6 +279,7 @@ internal HttpMessage CreateDeleteSqlScriptRequest(string sqlScriptName) uri.AppendPath(sqlScriptName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -334,6 +338,7 @@ internal HttpMessage CreateGetSqlScriptsByWorkspaceNextPageRequest(string nextLi uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs index a4eaacb01a699..7c78cca45caf8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs @@ -56,6 +56,7 @@ internal HttpMessage CreateGetTriggersByWorkspaceRequest() uri.AppendPath("/triggers", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -115,6 +116,7 @@ internal HttpMessage CreateCreateOrUpdateTriggerRequest(string triggerName, Trig request.Headers.Add("If-Match", ifMatch); } request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(trigger); request.Content = content; @@ -194,6 +196,7 @@ internal HttpMessage CreateGetTriggerRequest(string triggerName, string ifNoneMa { request.Headers.Add("If-None-Match", ifNoneMatch); } + request.Headers.Add("Accept", "application/json"); return message; } @@ -268,6 +271,7 @@ internal HttpMessage CreateDeleteTriggerRequest(string triggerName) uri.AppendPath(triggerName, true); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -331,6 +335,7 @@ internal HttpMessage CreateSubscribeTriggerToEventsRequest(string triggerName) uri.AppendPath("/subscribeToEvents", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -392,6 +397,7 @@ internal HttpMessage CreateGetEventSubscriptionStatusRequest(string triggerName) uri.AppendPath("/getEventSubscriptionStatus", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -461,6 +467,7 @@ internal HttpMessage CreateUnsubscribeTriggerFromEventsRequest(string triggerNam uri.AppendPath("/unsubscribeFromEvents", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -522,6 +529,7 @@ internal HttpMessage CreateStartTriggerRequest(string triggerName) uri.AppendPath("/start", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -581,6 +589,7 @@ internal HttpMessage CreateStopTriggerRequest(string triggerName) uri.AppendPath("/stop", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -637,6 +646,7 @@ internal HttpMessage CreateGetTriggersByWorkspaceNextPageRequest(string nextLink uri.AppendRaw(endpoint, false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs index 0f54f44eb64e2..9da6afde68b9c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs @@ -60,6 +60,7 @@ internal HttpMessage CreateRerunTriggerInstanceRequest(string triggerName, strin uri.AppendPath("/rerun", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -131,6 +132,7 @@ internal HttpMessage CreateCancelTriggerInstanceRequest(string triggerName, stri uri.AppendPath("/cancel", false); uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -199,6 +201,7 @@ internal HttpMessage CreateQueryTriggerRunsByWorkspaceRequest(RunFilterParameter uri.AppendQuery("api-version", apiVersion, true); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(filterParameters); request.Content = content; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json index 350a278838101..5e786b4452f24 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlow.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-78590f72935f5646847601f6763f942c-dff5b40a8719c741-00", + "traceparent": "00-51045b48b54d81498e0fb872f7da5be9-2fcf97d289869b46-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -30,29 +31,29 @@ "Location", "Retry-After" ], - "Content-Length": "368", + "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ba0c2727fc774ce00fb8aab491a397ce", - "x-ms-request-id": "b9d129fe-4868-4d42-aac3-fe6c64831fd3" + "x-ms-request-id": "7aedc922-7428-4c35-aab3-f7dde5b09a3e" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", - "recordId": 212201, + "recordId": 212310, "state": "Creating", - "created": "2020-08-26T02:00:18.09Z", - "changed": "2020-08-26T02:00:18.09Z", + "created": "2020-08-26T03:36:33.4133333Z", + "changed": "2020-08-26T03:36:33.4133333Z", "type": "DataFlow", "name": "MyDataFlow", - "operationId": "4b928cd2-bfa5-4974-97ed-cb9231302ea2" + "operationId": "51858e13-cd71-4030-9766-9a02ae64a113" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -76,20 +77,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0a890b355eb158ec0e21e0b78d8790ea", - "x-ms-request-id": "e5474575-2f81-4d12-a160-7cb39ac4414e" + "x-ms-request-id": "ac9395b8-5ceb-4a53-84b8-fe128e02318b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -113,20 +114,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "120ccd9036bb1ed93e26d3cb0f57adff", - "x-ms-request-id": "87be62cd-f489-4d3f-9ad8-c8f1fdb67436" + "x-ms-request-id": "04c9f467-0589-4fa5-9ea6-7aae3efbfeaf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -150,20 +151,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "857f9b118c1a581c5748fb6429315860", - "x-ms-request-id": "efa22b1c-0767-4ad1-af35-b55c9f7461a9" + "x-ms-request-id": "c93ed652-8496-40fd-bf80-891a9cf76cc1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -187,20 +188,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d1f8021c9404fe52326bcc8b8b2049b7", - "x-ms-request-id": "0197da1c-0c2d-409f-b8de-da55bae1f3e5" + "x-ms-request-id": "167c9df8-bf61-485e-b31e-93a523e13ec4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -224,20 +225,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f1a6e0730a0804cfb0b4ba733a74f40c", - "x-ms-request-id": "bbcb554b-27a0-4fde-b165-2cd506280a4b" + "x-ms-request-id": "c67de852-9023-4338-976c-108aec81ccd5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -261,20 +262,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0caf73cddb5e7cfb498053afbf91cc37", - "x-ms-request-id": "8fc13898-e126-4a4f-a466-9a6b619d0464" + "x-ms-request-id": "9de53dae-f6d8-46ca-83b5-0c7e6e1526df" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/51858e13-cd71-4030-9766-9a02ae64a113?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -286,86 +287,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "48f043ff678b115832f4214fdadfc4bd", - "x-ms-request-id": "a3f0c175-775d-420d-88be-1abeb6df1195" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "18bec0763c719759e529a787b720441f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:19 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "18bec0763c719759e529a787b720441f", - "x-ms-request-id": "cb70ee77-4c09-4e22-bd73-479e91f3b323" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4b928cd2-bfa5-4974-97ed-cb9231302ea2?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f77383e8ab8365811b9dda69baaba16a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "309", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:19 GMT", + "Date": "Wed, 26 Aug 2020 03:36:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -374,9 +301,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f77383e8ab8365811b9dda69baaba16a", - "x-ms-correlation-request-id": "594bb392-82d0-4e87-888c-803614e0a16f", - "x-ms-request-id": "4afacc5a-7bc4-4385-af91-2a2586f28b15", + "x-ms-client-request-id": "48f043ff678b115832f4214fdadfc4bd", + "x-ms-correlation-request-id": "924870c3-6bda-4941-b86f-ef814e7976e8", + "x-ms-request-id": "c003eb2a-392a-45b8-8891-87cf9acb2c37", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -386,7 +313,7 @@ "properties": { "type": null }, - "etag": "05006b90-0000-0100-0000-5f45c2340000" + "etag": "05009ec8-0000-0100-0000-5f45d8c50000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json index a467d42ae531a..ac5d635b03f5a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestCreateDataFlowAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-6da631be1cb06f45b9a748b033ba8306-01b47c9aec324b43-00", + "traceparent": "00-97bedd58a6c7d343bba4314c82911553-ba395fddbffd0744-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -32,27 +33,27 @@ ], "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0dbb967a5235415ce40b904aa6b28905", - "x-ms-request-id": "92f121d7-d286-4b06-a743-143ca0262685" + "x-ms-request-id": "310971c9-ef62-4fdb-9651-302691847d32" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", - "recordId": 212200, + "recordId": 212312, "state": "Creating", - "created": "2020-08-26T01:59:34.2366667Z", - "changed": "2020-08-26T01:59:34.2366667Z", + "created": "2020-08-26T03:37:10.3533333Z", + "changed": "2020-08-26T03:37:10.3533333Z", "type": "DataFlow", "name": "MyDataFlow", - "operationId": "c5c82ff7-d689-476c-aa68-f01d8b40123d" + "operationId": "2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -76,20 +77,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "73aefffdc0df36b252ec99f1fd43e249", - "x-ms-request-id": "c77c371f-b802-4e1e-8c9a-468fa454682f" + "x-ms-request-id": "3c8462a5-fa94-4df0-8f89-519b0c833f40" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -113,20 +114,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "48b1981b1b8d390730bcbf6e4700bd60", - "x-ms-request-id": "7bb24afc-32aa-4fe9-b33d-e0354bd0a1cb" + "x-ms-request-id": "787a4fba-8257-47b6-a897-13bf4a1d8e35" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -150,20 +151,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:35 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a64dfda215033d254635941ea774010a", - "x-ms-request-id": "c233321a-43a2-4a35-a0ed-8ea996d479cb" + "x-ms-request-id": "45dd6a06-c79d-49e8-b97b-5e1458e38f98" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -187,20 +188,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:35 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "eb40c1e420d2e106f87542220044ee52", - "x-ms-request-id": "0483890a-f9de-4e96-ac8f-049dc9f24c72" + "x-ms-request-id": "00113745-5733-4aca-86db-0542eac28d5a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -224,20 +225,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:35 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ff4e392e3bf605457273015787e891bc", - "x-ms-request-id": "dbb1f759-1109-4629-8029-67ff8997c1af" + "x-ms-request-id": "f8e838e4-61d4-482d-9b2a-467dd74cf4f6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -261,20 +262,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:35 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "868ab5bbd2bf828df76cae8ed3033c02", - "x-ms-request-id": "087f9806-8336-4461-befc-a3a726947e85" + "x-ms-request-id": "69f70d3f-cf23-448b-8e46-8667cea302a2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -298,20 +299,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:35 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ef042470125a8137b3b795e1fae590f", - "x-ms-request-id": "f6d6a2d0-d66c-44a3-a381-326b3b9a63db" + "x-ms-request-id": "fa41486b-b1c9-458b-84a2-170f6b26f9c5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -335,20 +336,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:36 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4b6785e368b95c93abcc08898db7316e", - "x-ms-request-id": "b1da2965-4bdd-4955-9c20-44de6d2a878c" + "x-ms-request-id": "66c27fbf-1e05-4eed-9a8a-e79f985b91b2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2cd2a97b-c02d-4be4-b5a6-2aea8c4868a5?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -360,456 +361,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:36 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4510fe3723f8ba96a1e10a83582e6248", - "x-ms-request-id": "c9298b31-9b81-4289-b9eb-21cf29f7a4c0" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4eaa9e12f19cde49af94c259f88a1bc4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:36 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4eaa9e12f19cde49af94c259f88a1bc4", - "x-ms-request-id": "7f4dd445-c375-44f5-aa4c-59f01efa66b7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "20270a09149dc017efaca9d85e0f037c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:36 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "20270a09149dc017efaca9d85e0f037c", - "x-ms-request-id": "a1c1ba1e-2179-45cb-b61d-a8431ab35447" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ee76c069e30d46d2b5319663603dc117", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:36 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ee76c069e30d46d2b5319663603dc117", - "x-ms-request-id": "94ad19ab-98c0-4cdf-83a8-8f8bbb6a1717" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4e7a46c54207feaa86e95fef477080a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:37 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4e7a46c54207feaa86e95fef477080a0", - "x-ms-request-id": "09d557cd-4f36-422d-b808-abd52970200d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "38f045912d1325b737e16a6c7eb460b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:37 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "38f045912d1325b737e16a6c7eb460b2", - "x-ms-request-id": "f6ee84ba-210c-493c-9cbc-2ce217a298c3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "181292ebb49426751578672384e3fe45", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:37 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "181292ebb49426751578672384e3fe45", - "x-ms-request-id": "19626825-9487-43c8-9eb6-34886b223ef7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1ad2f5b1894c98048e551625d83e7fd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:37 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1ad2f5b1894c98048e551625d83e7fd2", - "x-ms-request-id": "82c9de44-20d7-449d-afba-fbec6a10b6c2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b504ad89685edc0bd0c9239ac593a054", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:37 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b504ad89685edc0bd0c9239ac593a054", - "x-ms-request-id": "08b28585-4e5e-41e2-9c9e-617bc266e222" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "88bb25e345e161658e7a893f9d4f4ed6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "88bb25e345e161658e7a893f9d4f4ed6", - "x-ms-request-id": "c869217b-9c4e-4ee0-895e-63eb239d08e0" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d79995f849de48e6eaf64a836569d2fb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d79995f849de48e6eaf64a836569d2fb", - "x-ms-request-id": "f651ff96-c7f3-48f2-b436-135bee3a9009" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b242c2b4f78344f147a227e3dfcc3e80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b242c2b4f78344f147a227e3dfcc3e80", - "x-ms-request-id": "4b40c7a8-8af1-45b7-87e4-6c9b8c5f8700" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5c82ff7-d689-476c-aa68-f01d8b40123d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "30a14c7bc9fa9a753e729eebfbe2fb24", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "309", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:38 GMT", + "Date": "Wed, 26 Aug 2020 03:37:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -818,9 +375,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "30a14c7bc9fa9a753e729eebfbe2fb24", - "x-ms-correlation-request-id": "61ad27d9-a29c-44e7-8c6b-391d308eab15", - "x-ms-request-id": "aa8f2097-8270-467f-8a2e-37db9c5a0587", + "x-ms-client-request-id": "4510fe3723f8ba96a1e10a83582e6248", + "x-ms-correlation-request-id": "9401e185-27f2-48d7-a97b-54cae3220588", + "x-ms-request-id": "9b985ca5-d317-4648-afb7-cdaad6063233", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -830,7 +387,7 @@ "properties": { "type": null }, - "etag": "05005490-0000-0100-0000-5f45c20b0000" + "etag": "0500adc8-0000-0100-0000-5f45d8e80000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json index 6bd3afab0d30e..9a64f7d386873 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlow.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fdfa10a2e4f03e4a9798cf9786d9a75f-566e6d81ee2ffc4d-00", + "traceparent": "00-4b50a6ec35776e4b98417f8675223a26-9524de1556e53b4e-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0ba137a0276ce7d951a56a850162704c", - "x-ms-request-id": "e6005289-21e7-4b8f-9b74-bc70f12df2dd" + "x-ms-request-id": "4d5efd69-e730-4ddb-b249-933d4c2868b9" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "MyDataFlow", - "operationId": "07aca10e-e62b-4ae2-a8dd-54963535a029" + "operationId": "02f9cffa-f328-4113-b016-51ea580d98b8" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fd2c9ecb8cfc982b6412d39d45f15090", - "x-ms-request-id": "639ea40e-5325-4a6d-8f34-52768583cf91" + "x-ms-request-id": "ace16455-d4ed-41ec-9b63-2eda9e095afc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5f1d7b2c92149e309ba65c0525301494", - "x-ms-request-id": "af4b3977-c8e2-4283-b0c7-2ced74d49815" + "x-ms-request-id": "ff736d23-8634-4a1f-b488-5af465a2bdd4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "63b9a0a672359d5098652da52efeb5be", - "x-ms-request-id": "ce85f22e-e5f8-46ee-8631-9e64545b5eda" + "x-ms-request-id": "b43c38f2-7945-4517-89ad-6ad3a01434f2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "577c70179f9f38b66d8d615630267334", - "x-ms-request-id": "23b95799-b9e5-45d8-8547-99cb8a342654" + "x-ms-request-id": "74cc16d3-6736-45e9-966e-785d8558f284" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a5f73efdec37b95b2b80c6ae658b709c", - "x-ms-request-id": "81c74caa-2db9-498c-9ce7-9db4f26cc0e5" + "x-ms-request-id": "20e33e6b-f2f0-4456-962e-0f2a4ed540e7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b4ee9ef0bdb306f5ea80f6a711f96c72", - "x-ms-request-id": "59db211d-e591-4ef8-b721-3fd870636607" + "x-ms-request-id": "9070faab-64d2-45db-862e-194f22c0f5ad" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "efa7f8f210072a8615c32b1ed907d3e1", - "x-ms-request-id": "16bd878f-d600-4c93-81bc-f040ba5e3fe7" + "x-ms-request-id": "389cb137-528a-4589-8870-843f9b0101bb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9266c41dbe38408148f0bab7f6b3a831", - "x-ms-request-id": "3c20fec2-2df0-4a7d-ad99-cd2f58fcd134" + "x-ms-request-id": "c74ff568-cdfa-43c6-a89c-14b146d40bcd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6cbb541380e4df9417c39ef091d72de2", - "x-ms-request-id": "24463e29-4173-4f79-83a5-f65836d1852d" + "x-ms-request-id": "59019cf8-a5e3-4b89-bbbe-8949f66ff7a9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -396,20 +397,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4c8914adda9333397767a61755ce3461", - "x-ms-request-id": "a4079635-6de1-4cad-bc61-d3f226016de8" + "x-ms-request-id": "11a30cd1-5339-4eab-8eed-975d5975ae53" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -433,20 +434,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "850afa1a664c9cfd2f867a752090ae71", - "x-ms-request-id": "f515a7f8-c485-4e97-828a-15174d18f8e8" + "x-ms-request-id": "0e0a1392-f86c-4e51-905e-3f78b73a18eb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -470,20 +471,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e109d8c35b29399d1b88f57cd97d8949", - "x-ms-request-id": "7c25de53-2121-4ee1-b274-b1070074ba32" + "x-ms-request-id": "c921c1f1-d25a-4bba-9a88-f5e8983a50b6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -507,20 +508,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "97d53c8fa7cd469617ec1c0d5fc413e6", - "x-ms-request-id": "41faebfb-7196-45b1-b0b1-43fbca8a8e69" + "x-ms-request-id": "e7c9d908-343c-4e2c-acee-de8404220309" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -544,20 +545,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:36:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7d5335b853c4be375cd06ac37180c3b2", - "x-ms-request-id": "50f75d77-8662-45cf-bdb1-1d9615306e39" + "x-ms-request-id": "be44da0a-1c78-4590-a17a-24b81ccc737c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07aca10e-e62b-4ae2-a8dd-54963535a029?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -569,14 +570,236 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:36:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e3e531fc17bb1ba441c3c93c3f90d957", + "x-ms-request-id": "ff1cef3b-4d5e-4fe7-97bf-eb69d296b22d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a4c30e740c293c8405163afc3dd2d596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:36:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a4c30e740c293c8405163afc3dd2d596", + "x-ms-request-id": "e72dff5f-1be6-4df9-a705-7d2f79910ddd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2e106a2930dea12b91383b0189fb7fcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:36:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2e106a2930dea12b91383b0189fb7fcc", + "x-ms-request-id": "24b248d5-fb99-49fe-97c4-bb159ea03782" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "624e12f61ebcf088ada9dea4dca7dd6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:36:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "624e12f61ebcf088ada9dea4dca7dd6e", + "x-ms-request-id": "4bcea3b7-846a-482a-8b0e-37e4d5c0d56f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "d41332edab7f4478e32112f1d082b209", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:36:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d41332edab7f4478e32112f1d082b209", + "x-ms-request-id": "542d9c5e-0557-45b5-a4dc-c4f71e8cb55f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "2b056e9772840ad9e22080345286c5ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:36:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2b056e9772840ad9e22080345286c5ea", + "x-ms-request-id": "2ceee7ae-4077-4042-8006-4ac39542dde9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/02f9cffa-f328-4113-b016-51ea580d98b8?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5614cd5aaae74b4d9a097f9a0c971f2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:00:43 GMT", + "Date": "Wed, 26 Aug 2020 03:36:58 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e3e531fc17bb1ba441c3c93c3f90d957", - "x-ms-request-id": "bca45df5-15dc-4b6e-b995-5560a52c00bc" + "x-ms-client-request-id": "5614cd5aaae74b4d9a097f9a0c971f2b", + "x-ms-request-id": "025b656d-9081-430b-b2b9-5a39a1b03dcb" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json index 880e78913ec2c..b589f48c70e61 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestDeleteDataFlowAsync.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4e0e5dd64dc9b348885fd3d62f5a34ab-e9b32fc447e8ea47-00", + "traceparent": "00-61e36fff50c1264e94bdd77fe606ac48-7313e33ffb95d242-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3db6a67720856e5c89d6dbf7c56318f2", - "x-ms-request-id": "08e7d99a-9e7b-41d8-8a47-7bb2e838cdd9" + "x-ms-request-id": "67786c9c-8d27-4769-875f-292bb30fb2a1" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "MyDataFlow", - "operationId": "c062a76f-4c2e-44c0-9197-abbbd575427e" + "operationId": "46d0ff06-e91b-4bba-b418-d0913e5c111c" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "81b37d8c3aa039f934d8d33c4115ef36", - "x-ms-request-id": "d8745a76-6ba5-4ac4-b686-6976852e1ab3" + "x-ms-request-id": "3d627665-2b4c-4b3c-a2c0-d3a617a65b64" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e383c7e3f6345574b479702e4c0f7f0b", - "x-ms-request-id": "debd8dd8-bc3a-419d-a911-d48b09f386d8" + "x-ms-request-id": "f53682f2-789d-490d-9df8-8d8a07911ca9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "486aa55697b0635231d3aa314eb5fbb7", - "x-ms-request-id": "d2086976-d425-495b-8ace-b09a1b0bc54e" + "x-ms-request-id": "0718dce7-296a-4d9c-a216-262ce47567e1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "27699d679dfa9601095dcd26c9cbec24", - "x-ms-request-id": "f581897a-628d-4cca-b5a6-8b76d9b7b83c" + "x-ms-request-id": "acb605ff-b5e3-4774-b7c6-128ff5767d10" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9be6c858a7aa4c867520b1604b4307ff", - "x-ms-request-id": "494ac31d-6d51-42eb-a38f-5d796cb1af15" + "x-ms-request-id": "781077ee-7368-43ba-90fe-8da22033aca5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "afc6b97e58a5b910a4d33f52c92c9966", - "x-ms-request-id": "0b06c7ff-0922-4a95-905e-c156a92dfce2" + "x-ms-request-id": "fc634b57-c731-4b99-b4af-7de1ab14edd9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "85d886e760cfc00c161db1d9eba04bc5", - "x-ms-request-id": "0b067d59-227a-49be-a1f3-71e54e9aa655" + "x-ms-request-id": "aa2ce0c5-dd62-47fb-a78b-12e98155a5b9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46d0ff06-e91b-4bba-b418-d0913e5c111c?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -310,199 +311,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "10a7ce563d04007fb72cf6d668348249", - "x-ms-request-id": "dd19425a-dff5-4ad7-bdb1-51d83dbf319f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c5794a87816a1e30ad059987a636cd04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c5794a87816a1e30ad059987a636cd04", - "x-ms-request-id": "20d942ec-ff14-4443-990a-2ce0befadfcd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "fbfb79888984a96106d7cea2693558e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fbfb79888984a96106d7cea2693558e2", - "x-ms-request-id": "d22dbe65-b1bb-4f07-9cc3-2f06a9ca6daf" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a052689b8626d55a9e8962fea4f85a80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a052689b8626d55a9e8962fea4f85a80", - "x-ms-request-id": "7f7f60f1-483b-417c-b495-47e343f16220" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ee4ef15e8638fdc4e9cfbe93b38db477", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ee4ef15e8638fdc4e9cfbe93b38db477", - "x-ms-request-id": "9fe006dc-2213-4edc-8abb-e6f22da43b53" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c062a76f-4c2e-44c0-9197-abbbd575427e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3debb6ad2de401de1e265dfb2663050e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:00:05 GMT", + "Date": "Wed, 26 Aug 2020 03:37:31 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3debb6ad2de401de1e265dfb2663050e", - "x-ms-request-id": "55b71343-d077-4525-adf1-5e5c97689ab5" + "x-ms-client-request-id": "10a7ce563d04007fb72cf6d668348249", + "x-ms-request-id": "29881dea-2033-48e8-ab2e-bc4431201612" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json index 9e1f471955a41..4bf2c79d5aea5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlow.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "321", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:29 GMT", + "Date": "Wed, 26 Aug 2020 03:36:45 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5df0540fcaf2780acef4bf30a508f780", - "x-ms-request-id": "6123ea86-d2af-4909-91c1-5ea4fbb85945" + "x-ms-request-id": "c503a024-0cd4-470e-8b98-fb2d7de1d48b" }, "ResponseBody": { "value": [ @@ -29,7 +30,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", "name": "MyDataFlow", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "05006b90-0000-0100-0000-5f45c2340000", + "etag": "05009ec8-0000-0100-0000-5f45d8c50000", "properties": { "type": null } @@ -41,8 +42,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4c71ee7f83a0ca479910060b48afc256-312d510da27b3447-00", + "traceparent": "00-5f56fa8528538144ac4d8e7f7cabb4a8-6c3116fe081e6748-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -56,7 +58,7 @@ "Cache-Control": "no-cache", "Content-Length": "309", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:00:30 GMT", + "Date": "Wed, 26 Aug 2020 03:36:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -66,8 +68,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8848bd95be6593a42fee8e42ee8d6c88", - "x-ms-correlation-request-id": "ed0c2719-1f2c-4deb-b6a5-7b0ce6dd6b06", - "x-ms-request-id": "c6a82e6d-4d66-44fa-8d5f-4a7bfd5006d2", + "x-ms-correlation-request-id": "8ac53d78-11d6-4493-b035-6800aa9ef782", + "x-ms-request-id": "91c1b6d3-0197-41f8-8617-c61acce12de6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -77,7 +79,7 @@ "properties": { "type": null }, - "etag": "05006b90-0000-0100-0000-5f45c2340000" + "etag": "05009ec8-0000-0100-0000-5f45d8c50000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json index 4d898823dd691..325905fab324f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/TestGetDataFlowAsync.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "321", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:52 GMT", + "Date": "Wed, 26 Aug 2020 03:37:20 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0e77f33cbf700f7fbc5ec5a213c7b644", - "x-ms-request-id": "31e6a290-2014-49ab-b350-aae7f402aa73" + "x-ms-request-id": "9941b56f-d6cb-41d9-aee3-3228f18e3bf7" }, "ResponseBody": { "value": [ @@ -29,7 +30,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/MyDataFlow", "name": "MyDataFlow", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "05005490-0000-0100-0000-5f45c20b0000", + "etag": "0500adc8-0000-0100-0000-5f45d8e80000", "properties": { "type": null } @@ -41,8 +42,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/MyDataFlow?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-29bf122af3bccd459ad082e793884724-06cf0ec2401e4948-00", + "traceparent": "00-060b037c0b80ca49b50b89973e015e63-463f3ee384f9e14a-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -56,7 +58,7 @@ "Cache-Control": "no-cache", "Content-Length": "309", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 01:59:52 GMT", + "Date": "Wed, 26 Aug 2020 03:37:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -66,8 +68,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "910299dd1c4d8c35b96dd1487ed72400", - "x-ms-correlation-request-id": "a35c79da-7943-4b85-abcf-e84d478ba39e", - "x-ms-request-id": "094b6010-ae69-4995-8845-944377d3e359", + "x-ms-correlation-request-id": "f23e6188-283e-4df1-b138-367734f5b6f2", + "x-ms-request-id": "772a8eb4-b2e2-4250-b62b-a56829ffa407", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -77,7 +79,7 @@ "properties": { "type": null }, - "etag": "05005490-0000-0100-0000-5f45c20b0000" + "etag": "0500adc8-0000-0100-0000-5f45d8e80000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json index 6a3fc33d4a100..047bb7a20cff9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-2c351f64d940934d8eff0b119f8cc288-3916fc810fb6f349-00", + "traceparent": "00-48faa18dfc781748ae3731a6bf94001c-0872f88e0a2e3e4d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -36,27 +37,27 @@ ], "Content-Length": "374", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "72549d5e724db0f9e4ccca8d1a3d48ef", - "x-ms-request-id": "0f83396f-ffa4-4277-bdcf-66e78a194e12" + "x-ms-request-id": "f3470501-f108-4614-ac29-c178d1666f5f" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", - "recordId": 212202, + "recordId": 212313, "state": "Creating", - "created": "2020-08-26T02:01:03.8666667Z", - "changed": "2020-08-26T02:01:03.8666667Z", + "created": "2020-08-26T03:37:42.3366667Z", + "changed": "2020-08-26T03:37:42.3366667Z", "type": "Dataset", "name": "MyDataset", - "operationId": "21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad" + "operationId": "c28e57e7-b170-406c-b68c-23228d1905a9" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -80,20 +81,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9eb2cd4c99f5f610dac40d4594964749", - "x-ms-request-id": "9561dea5-f9c0-4324-acbe-6a3d0ff27354" + "x-ms-request-id": "6395a479-79de-48a1-aa40-accbf90627f8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -117,20 +118,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3f9255f8996f27c777717407d7097f8f", - "x-ms-request-id": "3cae9412-6cdc-4c9c-881f-47ffe0dd29b1" + "x-ms-request-id": "9f0a6bd6-d63a-4aff-b501-1e92131c6c6b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -154,20 +155,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4c41067caa8a70f92adc23c92ae04e67", - "x-ms-request-id": "fbdc60e6-3d07-4aae-b438-b97e817ea39f" + "x-ms-request-id": "03ea0d7b-4c05-4301-bf9b-606f52ce8e73" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -191,20 +192,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "daf751ff10c2b354068b278424081ed1", - "x-ms-request-id": "a04d6a48-7b13-4bfc-9dba-fa390e6ef2bf" + "x-ms-request-id": "f5ef8f47-e4f9-4c46-a383-7899c3c911c7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -228,20 +229,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:37:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8ec87e44fa554ebe5c22149275fdfc96", - "x-ms-request-id": "b92cb14d-0552-42b1-b6b5-f58788796067" + "x-ms-request-id": "ee1a498d-6185-4259-998a-55c439633017" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c28e57e7-b170-406c-b68c-23228d1905a9?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -253,86 +254,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "86080c23a4116bcdb28e45ff82754c21", - "x-ms-request-id": "2eeb4e57-f8e1-4b33-bb29-5ae343185675" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ac8551bec017041293a87ea0fcc13d08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ac8551bec017041293a87ea0fcc13d08", - "x-ms-request-id": "6362a958-7cd8-47ac-a7d8-e56ba8a84630" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/21acbe9d-4e88-4e22-9ffd-9cbf9536d7ad?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1860908e97009fbfb15ddcc6b5becce7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "427", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:05 GMT", + "Date": "Wed, 26 Aug 2020 03:37:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -341,9 +268,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1860908e97009fbfb15ddcc6b5becce7", - "x-ms-correlation-request-id": "3e468f37-33f3-4a3d-88d5-6d381d703ff2", - "x-ms-request-id": "360170b9-1576-4083-b347-9876f20c1926", + "x-ms-client-request-id": "86080c23a4116bcdb28e45ff82754c21", + "x-ms-correlation-request-id": "f2e86012-2ab8-42a1-8874-01dd8703f447", + "x-ms-request-id": "de61a46c-7201-49cd-8f86-cb3664afb2ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -357,7 +284,7 @@ "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "05007d90-0000-0100-0000-5f45c2610000" + "etag": "0500bdc8-0000-0100-0000-5f45d9070000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json index 8d008f1afe8b1..8484161d6a296 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-7d7f1300dd6a7a439eee994a7d4a88c5-9078b9a0073eae40-00", + "traceparent": "00-6e9a22281b85cd47b13c940ed10f9a5b-67c0d78b605f3a43-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -36,27 +37,27 @@ ], "Content-Length": "374", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "01ad924e620e9cdbf0994d2dcb6841ee", - "x-ms-request-id": "3269066e-82f9-442e-bb85-2f05ddf2ef36" + "x-ms-request-id": "e4a8e4b6-f8b8-4cb5-b09d-85129ba21c70" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", - "recordId": 212204, + "recordId": 212317, "state": "Creating", - "created": "2020-08-26T02:01:43.5733333Z", - "changed": "2020-08-26T02:01:43.5733333Z", + "created": "2020-08-26T03:38:15.6466667Z", + "changed": "2020-08-26T03:38:15.6466667Z", "type": "Dataset", "name": "MyDataset", - "operationId": "670b3f22-21f4-4352-867f-b6ba92d584be" + "operationId": "0a43abbe-8f28-4779-8ee8-f562c0cac961" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -80,20 +81,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8f517cf043cd64a7420830f4f4859eaf", - "x-ms-request-id": "c90e304d-3876-447f-bc40-cbd998f4ada7" + "x-ms-request-id": "e4b395ac-e4e8-4f77-b13b-1009b8f8a08e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -117,20 +118,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aeddaa2fbb42462a2bed69560467197e", - "x-ms-request-id": "b2e761bf-78fd-454b-9d5c-f88cec6c85d9" + "x-ms-request-id": "b8d14e77-cf18-43e2-ae0b-59e15d2d6b53" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -154,20 +155,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4e3c1716b117dd20af702cdad872cb12", - "x-ms-request-id": "c9b0d8c3-88d3-40f4-8519-f39c00ef1bdc" + "x-ms-request-id": "8f21b913-b132-4602-bb84-d3b4e79497c3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -191,20 +192,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d745ae19d49435f3520b63e0d95060da", - "x-ms-request-id": "9f57434f-fc3f-47a6-a50f-fc2db3940a88" + "x-ms-request-id": "1577dcfe-7a48-4c3f-9dac-3cb07394bd7d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -228,20 +229,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dcddb1ef4f497d988afffed18f4f6db9", - "x-ms-request-id": "f4da53d7-27c8-49ee-b8d1-c7fb8fe2f457" + "x-ms-request-id": "26bd212a-0b4b-4a69-bf76-308c452f1a84" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0a43abbe-8f28-4779-8ee8-f562c0cac961?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -253,604 +254,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "553c5622412241ea2306fc0b4e40045e", - "x-ms-request-id": "f42d2844-5500-4a06-af69-ff5cd1611347" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "26eb5110ee94cac916c84d95d622a602", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "26eb5110ee94cac916c84d95d622a602", - "x-ms-request-id": "170bd4c0-50ab-476b-bd63-a63fdd4695da" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "83bdaa9d0a14adb8c79cb842528c2e4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "83bdaa9d0a14adb8c79cb842528c2e4a", - "x-ms-request-id": "e32d0b8f-846a-46fd-a38d-de894a5eeec3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3dc0a0fb476433248d713f59f4556b01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3dc0a0fb476433248d713f59f4556b01", - "x-ms-request-id": "d0017657-0594-4151-bda2-6d940d56225b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a36efa608082064a983e5ff835877789", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a36efa608082064a983e5ff835877789", - "x-ms-request-id": "045eb426-f6d5-40ac-b48a-e944a4c8ec5f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "359a02996861569d8589f5a2cb5eb871", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "359a02996861569d8589f5a2cb5eb871", - "x-ms-request-id": "e7785982-2edd-4d69-bb21-8feb81e3af02" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "58e2b7308a1e7ac855baa426e72cfe06", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "58e2b7308a1e7ac855baa426e72cfe06", - "x-ms-request-id": "660c28e7-52d1-40ab-b927-c9307885c16f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f2c0b5fa35bbf79f5c181df88aa73b3a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f2c0b5fa35bbf79f5c181df88aa73b3a", - "x-ms-request-id": "a8b56e43-2861-4064-90ce-8821ebc68af1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7ec7ed851ea40e6b3a1fe0a7c3776e59", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7ec7ed851ea40e6b3a1fe0a7c3776e59", - "x-ms-request-id": "dedfc0ba-f8cc-4d18-9eff-4e9b26ae9eec" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "15a7ef8bc69efbb618eafb066ccfefad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "15a7ef8bc69efbb618eafb066ccfefad", - "x-ms-request-id": "c5c7534f-33dd-41c6-84f2-364b1ef262f1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f9a06a7e7f64db6149b1b79b55f733e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f9a06a7e7f64db6149b1b79b55f733e5", - "x-ms-request-id": "fbdd1446-f690-4dfa-93ac-d96a904967a5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9b6cc4a925ffbf9c37cc66ba2365a16a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9b6cc4a925ffbf9c37cc66ba2365a16a", - "x-ms-request-id": "c027cf83-5db1-4fd0-a8f3-0332eebb0d62" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5929323074d60bf58eccccec0e1ba620", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5929323074d60bf58eccccec0e1ba620", - "x-ms-request-id": "d8b2a409-761b-4b10-9101-1e7f45531efb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a85c16b7546359aecee1c29819a7b8e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a85c16b7546359aecee1c29819a7b8e3", - "x-ms-request-id": "c7eef048-eab0-4d7c-bdf4-9272afcb1386" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "226a4d10dace350ece600c3359afb01b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "226a4d10dace350ece600c3359afb01b", - "x-ms-request-id": "8803b189-efb5-438f-b9c7-c8f311a8d6b2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0d024525f809dc0784cf8af5b25cf2e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0d024525f809dc0784cf8af5b25cf2e7", - "x-ms-request-id": "2fde632e-aee1-4464-ab4a-a1ccb9bda82e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/670b3f22-21f4-4352-867f-b6ba92d584be?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c0dce81383b0dd520727d902477a001e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "427", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:48 GMT", + "Date": "Wed, 26 Aug 2020 03:38:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -859,9 +268,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c0dce81383b0dd520727d902477a001e", - "x-ms-correlation-request-id": "b80d4f10-edff-4a05-a31f-db18c17d9324", - "x-ms-request-id": "9290b1d2-0cb4-40c2-87cc-d05eed1f6864", + "x-ms-client-request-id": "553c5622412241ea2306fc0b4e40045e", + "x-ms-correlation-request-id": "039c7771-78ee-43ed-a12a-cd61fb8abfd2", + "x-ms-request-id": "dabdca2c-6549-4d72-8788-7fc419581533", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -875,7 +284,7 @@ "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "05009d90-0000-0100-0000-5f45c28c0000" + "etag": "0500cbc8-0000-0100-0000-5f45d9280000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json index c968e535fc20e..2698fe6a106ac 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4ef080eac3d9444484478dc4cb5a8acd-765c230aee781b43-00", + "traceparent": "00-fd9393212eb50d439ad852d8dc516192-3cb3a9fcd96cf649-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "51fb24a3864fb4a578bf7b040953a207", - "x-ms-request-id": "b140cc16-7f2e-43bb-bb92-182f8f767a89" + "x-ms-request-id": "18dfe3ed-2a70-4d58-a48b-5726bc9741e1" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Dataset", "name": "MyDataset", - "operationId": "672bf803-bb5d-45fe-8848-dab4684a283a" + "operationId": "60c823f8-8feb-4804-9cda-25f13fbd1122" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e59c6ddc5011d6337e9231078309c526", - "x-ms-request-id": "7fba095b-7827-4eaa-94f3-b69ee22eebfe" + "x-ms-request-id": "430f0cd0-1a94-427c-a4de-fa0e70252daa" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "caa7cdf6aaad7e4e8092148c4dc8e47f", - "x-ms-request-id": "f9183202-e270-4883-9da9-8ab0d50e8a32" + "x-ms-request-id": "b6fe53a0-faf2-4b4f-aefb-0fe20bff083e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9b28aa41bdb63df6cefb1873f49de533", - "x-ms-request-id": "3512aa69-168f-459f-a6ca-5fdf0dc35a4c" + "x-ms-request-id": "e7930f17-189a-47f5-a874-be84e04af5f0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "02e611fdb25131231f1d657e3ca688b5", - "x-ms-request-id": "40d2ae86-66f0-4cf1-aaca-45427b0af5b6" + "x-ms-request-id": "ddcd4c3f-cb9c-44cd-981b-df2123814517" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d9c5b1ad2ae13970d66afbb192da8ae2", - "x-ms-request-id": "123f5340-9a2b-4f8f-80e4-47b4431b8e2d" + "x-ms-request-id": "3646da0a-8578-4a2e-9020-7c69d5edb402" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3c8fe0ace1e28f2d86f67b9858770127", - "x-ms-request-id": "0e765144-b888-4824-b2cc-f385d381cc2f" + "x-ms-request-id": "3a118860-51ba-4278-b1ca-547d7955fd07" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "42c562720cd8d252a1ad2ce6b7719f45", - "x-ms-request-id": "fc9d0d11-b331-48ac-9362-7630a871add1" + "x-ms-request-id": "95f17cd0-e3c1-437b-bad4-f993a6262635" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5bd282934c17ccd3843652ebafd7e15e", - "x-ms-request-id": "df25fa40-3a2b-4b01-a9c0-9a439fbeae47" + "x-ms-request-id": "9b71a0f8-303b-4843-8b6d-ae8afe01ab8b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "303ed3694715a00a8ebd9a35b546d714", - "x-ms-request-id": "12964a11-5cda-4156-9707-e4c6349234d8" + "x-ms-request-id": "9ce26684-dde9-46c3-b433-0e431272f433" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/60c823f8-8feb-4804-9cda-25f13fbd1122?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -384,88 +385,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d5053657a5a526108ff8bea1ba6623ca", - "x-ms-request-id": "516c1160-2364-4ed7-b140-9fe47723f22d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e37dcdcc6f324b2f7731cc5ab19d163d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e37dcdcc6f324b2f7731cc5ab19d163d", - "x-ms-request-id": "a17a396d-19f4-4375-8691-89a65608e84b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/672bf803-bb5d-45fe-8848-dab4684a283a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "78933d5e0bd2c3b9c318a01c8969e627", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:01:27 GMT", + "Date": "Wed, 26 Aug 2020 03:38:03 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "78933d5e0bd2c3b9c318a01c8969e627", - "x-ms-request-id": "69798c82-88cd-413a-99ae-204cf955cccd" + "x-ms-client-request-id": "d5053657a5a526108ff8bea1ba6623ca", + "x-ms-request-id": "b1d589ca-0ea4-4f35-97d9-de2ff7ea924f" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json index f3581c3432f65..dd13e5644e9f6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a1dcf9e93d883b47874e6537ad5ad353-ce0bca350aac3e4e-00", + "traceparent": "00-5cbc0a8073f728458fe709d1d3d65f0e-b61cda12cfd4cc46-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a66ec3d1105e44c92ba427058beb6a21", - "x-ms-request-id": "d5c3a54c-fb42-4027-8ece-6c6f12900a2b" + "x-ms-request-id": "0292255d-1524-44f1-a453-2a980eba3fb0" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Dataset", "name": "MyDataset", - "operationId": "6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4" + "operationId": "e7740d0d-4e89-4ec5-bea4-eb5daee303d1" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "94507fb1e6cc08c1c7cc7a1975cfeed1", - "x-ms-request-id": "0daaa198-4001-4711-823e-ef832e764b0d" + "x-ms-request-id": "cbf994d5-2dd4-4afa-8005-730ec3f72b2f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "94d2433706e4a2543ddc510e9a03ca8d", - "x-ms-request-id": "c5399ccc-a02f-493f-ac43-25748d3138dd" + "x-ms-request-id": "2abbd4a0-7068-490e-a154-d9f0c8f51fa9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:08 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0b53051dd59a7f55e66c0d9fb46c1d86", - "x-ms-request-id": "9993e59a-e405-4670-b422-dec5522f27a0" + "x-ms-request-id": "c8add1dd-9285-49fe-a016-82fec116947c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "378da461f3cbaa3d2aae57f094b36ec3", - "x-ms-request-id": "655240fc-3004-44e6-853b-f82e490279bf" + "x-ms-request-id": "d9cf9899-70ab-42d3-b978-e9682a2272ce" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ffced02e27b6136ee52ae77f8b5edd0", - "x-ms-request-id": "5a1b5a3f-8836-4bae-acaf-49ebb3451e19" + "x-ms-request-id": "0420ee4e-7a5c-46be-84e3-0055ff06b02c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f5adcabf93752ac2c7a9e0ec7e65ea32", - "x-ms-request-id": "59e61888-5c8d-4337-8bf4-949abf0aa864" + "x-ms-request-id": "dfd1b88d-5e6c-4e65-9fad-7cf5704b9b9e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c79d49fdad6f7e0b6d2c487844c5b175", - "x-ms-request-id": "e2f3d511-027a-4b89-88d4-004cdbde6174" + "x-ms-request-id": "847f0443-5c60-4a16-a96c-1ecfc2328877" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ca3186c079056f4d2ad2a8d1014ae388", - "x-ms-request-id": "e0b728ae-435f-4249-a37f-1f49724c6a28" + "x-ms-request-id": "4663e841-80c4-4e00-9a7c-78380ba1e937" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "af7a7b6726171261be2f87494a49e501", - "x-ms-request-id": "8ac0aa10-ccd3-4e16-9dc7-a50b94a70134" + "x-ms-request-id": "a239507d-38aa-4cf1-b5ea-2b659a3b756c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -396,20 +397,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f82b6bf72034842dfb2e9c9d04397c23", - "x-ms-request-id": "bfe702ca-f57c-4b5b-a3f1-2b063e7bc008" + "x-ms-request-id": "34a054bc-0a6f-4376-9e24-54a6d0d0cea6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -433,20 +434,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c911bf48024b995e251e0bd6f20324e0", - "x-ms-request-id": "b8384b7e-75d7-4b65-ab4a-8b1ef8f5432d" + "x-ms-request-id": "095ae361-4356-4601-b083-72cc07b83fbd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -470,20 +471,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "96daa6eceb1f47544df6b3e989c30d85", - "x-ms-request-id": "09728b52-4ba0-4372-8a2f-3ddd0fd964ca" + "x-ms-request-id": "f103d52b-c84d-442b-8501-98def040cd33" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -507,20 +508,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8a0064b21c38f4b60d91d215145791f7", - "x-ms-request-id": "0d4b1d85-7ea3-453a-bc05-4cc97b5e07cd" + "x-ms-request-id": "cc999cde-cf5c-4214-9581-472972b19ad7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6c6a94cb-eedc-49e9-b301-b9cbdf5d9bb4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -532,14 +533,236 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:38:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5eb0bb09e55f5d046bc97b554f740f61", + "x-ms-request-id": "1deb91ca-0a01-4a4d-a8f6-4660c3e33239" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8e2386119a03d0a8f0e5898d183f33f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:38:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8e2386119a03d0a8f0e5898d183f33f6", + "x-ms-request-id": "812d9558-d3a0-4813-b90b-c2e0cd64b774" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "cedfbb64af13cc255fa31f6ea160a598", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:38:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cedfbb64af13cc255fa31f6ea160a598", + "x-ms-request-id": "0e642434-d579-47d1-b7c7-16db8697e659" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8d03718103346ef413df6d795c76442b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:38:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8d03718103346ef413df6d795c76442b", + "x-ms-request-id": "59abb52a-e3fc-433e-a20c-ec76388151a8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "93f184964195624e60562e5f7b392f90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:38:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "93f184964195624e60562e5f7b392f90", + "x-ms-request-id": "4d3e2a30-6d15-4487-8161-40e24487b76e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a70bf140a53b60c2c670ba3341ac70e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:38:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a70bf140a53b60c2c670ba3341ac70e9", + "x-ms-request-id": "afe09ad8-5186-4cba-bd8c-b356450384a1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e7740d0d-4e89-4ec5-bea4-eb5daee303d1?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "1cd7f35e116f3f0222a02cddd595f3d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:02:12 GMT", + "Date": "Wed, 26 Aug 2020 03:38:38 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5eb0bb09e55f5d046bc97b554f740f61", - "x-ms-request-id": "897eb6ca-7399-465e-9d02-56127faf569b" + "x-ms-client-request-id": "1cd7f35e116f3f0222a02cddd595f3d9", + "x-ms-request-id": "b0e46cb8-5a93-412e-879c-d08fd9e420ff" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json index 3f3d1dde2cd9b..1d311261515a0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:15 GMT", + "Date": "Wed, 26 Aug 2020 03:37:52 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5dda9dee22ae9ed3b1b3fd69aa5abe37", - "x-ms-request-id": "2903c52f-69f1-4fcc-a481-91a901ac4ecf" + "x-ms-request-id": "394af195-b020-42b9-b8a4-90797212b5c5" }, "ResponseBody": { "value": [ @@ -29,7 +30,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", "name": "MyDataset", "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "05007d90-0000-0100-0000-5f45c2610000", + "etag": "0500bdc8-0000-0100-0000-5f45d9070000", "properties": { "type": "Dataset", "linkedServiceName": { @@ -45,8 +46,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4a3fca55a1a2d243af1f93b636685277-f415b14563ad7442-00", + "traceparent": "00-ddf4c59c4cbf3f45b8ec7fed27cc494f-9d16f13a2c9f0d41-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -60,7 +62,7 @@ "Cache-Control": "no-cache", "Content-Length": "427", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:01:15 GMT", + "Date": "Wed, 26 Aug 2020 03:37:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -70,8 +72,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7c4156424b19661771f430b0090d20aa", - "x-ms-correlation-request-id": "3b722b99-2a40-4f16-9ec9-3d6a55b0b12e", - "x-ms-request-id": "1963fd14-f2d9-44b4-901d-eb13aba22153", + "x-ms-correlation-request-id": "91882f4d-2cd1-499b-ac23-6a4ac5144abc", + "x-ms-request-id": "c62e9c6e-131b-4c6f-a3ad-ac7963e4c6d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -85,7 +87,7 @@ "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "05007d90-0000-0100-0000-5f45c2610000" + "etag": "0500bdc8-0000-0100-0000-5f45d9070000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json index 77d245978ad78..29467aee1ebbf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:00 GMT", + "Date": "Wed, 26 Aug 2020 03:38:24 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3c29caab6a22a96ab1c8031454b65ec9", - "x-ms-request-id": "491535e6-ce8d-421b-b950-a2d7227a0224" + "x-ms-request-id": "da962bc8-02ab-41a7-aa3f-54f44ebd4fb6" }, "ResponseBody": { "value": [ @@ -29,7 +30,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/MyDataset", "name": "MyDataset", "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "05009d90-0000-0100-0000-5f45c28c0000", + "etag": "0500cbc8-0000-0100-0000-5f45d9280000", "properties": { "type": "Dataset", "linkedServiceName": { @@ -45,8 +46,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/MyDataset?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6898bfc4ba98c048babda5161712bb8c-7d604f923d41c14f-00", + "traceparent": "00-16f0d75d8ac1a445add26dc5e04658b1-e28609203fe0e447-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -60,7 +62,7 @@ "Cache-Control": "no-cache", "Content-Length": "427", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:00 GMT", + "Date": "Wed, 26 Aug 2020 03:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -70,8 +72,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "57ed498cd0c79fa570b7e670c47a1504", - "x-ms-correlation-request-id": "2ec7274e-f006-4519-a4b4-b027ded726df", - "x-ms-request-id": "366006f1-e016-47e6-b744-12b101746768", + "x-ms-correlation-request-id": "764c424c-6baf-4279-9894-fa16e92c1068", + "x-ms-request-id": "880eaba5-c619-4302-915f-e03ba0d619de", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -85,7 +87,7 @@ "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "05009d90-0000-0100-0000-5f45c28c0000" + "etag": "0500cbc8-0000-0100-0000-5f45d9280000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json index dafbf0cc027ac..d3840ead30157 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedService.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-e0806eaadb3515418dcbf3d7274711e2-3d76bfad7a1eae40-00", + "traceparent": "00-5d77c9d3e2fb8a4ca0bccbaec3c169b0-8d596fabb7077e4d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -33,29 +34,29 @@ "Location", "Retry-After" ], - "Content-Length": "398", + "Content-Length": "388", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c26d24e313c2cbe3c7c442461e8e9b17", - "x-ms-request-id": "0cf48599-f895-43a7-9d0c-e24afc2a83d4" + "x-ms-request-id": "33aa63d1-c015-4551-b352-1db678b36327" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", - "recordId": 212205, + "recordId": 212318, "state": "Creating", - "created": "2020-08-26T02:02:30.8166667Z", - "changed": "2020-08-26T02:02:30.8166667Z", + "created": "2020-08-26T03:38:49.86Z", + "changed": "2020-08-26T03:38:49.86Z", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "3d0ff784-4dce-4df0-abc6-67ffef2f633c" + "operationId": "d03f098f-b124-48fe-a5b8-c2f762c6d585" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -79,20 +80,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f34059ecb14977491b7cd10d8da02a07", - "x-ms-request-id": "a71401ad-28ce-4994-91ce-e46c00ddcc50" + "x-ms-request-id": "21dc7e58-732f-48db-abe3-c2250afce476" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -116,20 +117,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "caadb6eae0e0a638228f2ec2b9cee40b", - "x-ms-request-id": "766eb521-5999-401d-8135-ee268b2af77e" + "x-ms-request-id": "ca34bbe8-8e0e-42a6-9569-44983d0ff99d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -153,20 +154,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:31 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c55a52e3a84e3ace1d511d766cf54ff2", - "x-ms-request-id": "5d06f20f-1036-42bd-bc23-edafa1a84c32" + "x-ms-request-id": "30d6ca2a-dc82-4b25-b50e-96239df910b8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -190,20 +191,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:31 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "302a53d5160e0c0e209ad0b98287be4c", - "x-ms-request-id": "ab863817-3c84-4de8-8b8f-9ae8c0887d8a" + "x-ms-request-id": "18145518-8822-4ffb-ad25-39a10ac2ecaa" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -227,20 +228,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:31 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3b29c697654641b8e773ac8fc2c1392c", - "x-ms-request-id": "c59b3cf4-aed5-4bb7-83a5-769be85d92c2" + "x-ms-request-id": "d94ce2ac-e64d-4a75-b604-b790ee2da3ba" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -264,20 +265,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:31 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:38:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "65ec3c40b4a3cdfd434ea4b4d715b796", - "x-ms-request-id": "b73c03e3-4f93-4694-a483-13d7c9f78472" + "x-ms-request-id": "3a011ab7-b3a6-4b99-94aa-0e739c83e90a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d03f098f-b124-48fe-a5b8-c2f762c6d585?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -289,234 +290,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a6dfd19214cb6fac9ae9489a697f495f", - "x-ms-request-id": "7761bc16-6a13-4036-8ac2-b81385883b68" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4679a460589ae3a9c95bf7f7c10469d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4679a460589ae3a9c95bf7f7c10469d2", - "x-ms-request-id": "b17a8517-e422-4e42-a425-70eb475972e7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f1fc15bb93e22b618f7dcbb96b6263c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f1fc15bb93e22b618f7dcbb96b6263c4", - "x-ms-request-id": "8f342414-7d43-4631-b58e-4b76e15c07de" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "33534405719c39fc27fbdc701db4ad96", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "33534405719c39fc27fbdc701db4ad96", - "x-ms-request-id": "70acd1f1-4f43-47e3-bafb-b86d24781dfa" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "53df75805782cc7c424db61c8def7866", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "53df75805782cc7c424db61c8def7866", - "x-ms-request-id": "42726dad-4c35-4b3f-93aa-97919d5a6b06" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7cf233f735b04a3619c2c9e6b6f00eda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7cf233f735b04a3619c2c9e6b6f00eda", - "x-ms-request-id": "f5478b9e-381a-4f9c-8ac9-156cc7d88ec1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3d0ff784-4dce-4df0-abc6-67ffef2f633c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:33 GMT", + "Date": "Wed, 26 Aug 2020 03:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -525,9 +304,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f53935cf0f83ad41c887f04ebadfac38", - "x-ms-correlation-request-id": "c48c1140-e598-4214-a678-653fc345bd7e", - "x-ms-request-id": "49ab2259-a497-49fc-97b4-382dd970575e", + "x-ms-client-request-id": "a6dfd19214cb6fac9ae9489a697f495f", + "x-ms-correlation-request-id": "04e008f5-fcb2-4d7a-9994-ee18d28899ef", + "x-ms-request-id": "66840eed-1190-4caa-8c95-392b3ed3a771", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -540,7 +319,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0500ae90-0000-0100-0000-5f45c2b90000" + "etag": "0500dac8-0000-0100-0000-5f45d94b0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json index e0ca62c6d3dd2..921899b3e523c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestCreateLinkedServiceAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-aa8f1aa688a1be4fbd6e17ea777944f1-80b58b2bd5130d41-00", + "traceparent": "00-86df2cfd6136df41a0a08dfd40589d6b-04527221bd4b0145-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -35,27 +36,27 @@ ], "Content-Length": "398", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "49efb50fe48eaecfbfdfddeeff0b94da", - "x-ms-request-id": "5fb1993f-01ae-46dd-bab1-d462852ae080" + "x-ms-request-id": "1ad0a615-d5f5-405c-9718-15e6360f5220" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", - "recordId": 212206, + "recordId": 212319, "state": "Creating", - "created": "2020-08-26T02:03:25.3433333Z", - "changed": "2020-08-26T02:03:25.3433333Z", + "created": "2020-08-26T03:39:19.3733333Z", + "changed": "2020-08-26T03:39:19.3733333Z", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "22255e3a-7267-4b28-b66c-d57ede0a72ca" + "operationId": "31144038-bfe0-411b-9c3d-20cf635b0499" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -79,20 +80,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1768d9107ee1c1f5c5c65fb6e0f7a89d", - "x-ms-request-id": "e4668d76-2c12-47f6-9d6d-0332f6691bc2" + "x-ms-request-id": "fadbf18b-7a7c-481a-9bb5-4d7b341b0aec" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -116,20 +117,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "320493ada358a7a902d799a6ffc3729d", - "x-ms-request-id": "b77e28bd-5bfa-44fc-8f4e-79923d0bf076" + "x-ms-request-id": "f2c03eb4-1ec0-41ab-a081-19f496657cba" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -153,20 +154,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "26de679c7da36cf88df32f0e08fd37b8", - "x-ms-request-id": "708ad377-459c-46a5-9e52-f0f9ef4fbec0" + "x-ms-request-id": "4151cce3-5573-4b52-adc3-89fa7e9c000b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -190,20 +191,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a85e473f0f1d6d1c2fc1150ae44ec101", - "x-ms-request-id": "6170e7ca-4c6a-4c58-b084-10ee221383fe" + "x-ms-request-id": "42fa8a71-6b5f-40b3-a2ec-da928530defe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -227,20 +228,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7819c154811930f99b97a564749b9f05", - "x-ms-request-id": "00658b57-9b44-45fc-b47f-fca955be6844" + "x-ms-request-id": "da3f32ec-9c7f-422d-bd45-a0e602325ad7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -264,20 +265,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b866e1a0ca648d804a71f7e268ee873e", - "x-ms-request-id": "1190127c-5698-432d-98b3-e40b208049de" + "x-ms-request-id": "8acae999-2086-404c-bc9b-88204331f38a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -301,20 +302,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "46ba2d31bee3bd9e4d2e0d856ab8f994", - "x-ms-request-id": "bab1714a-7a61-4605-93c9-a6559d40d739" + "x-ms-request-id": "67f69684-1c6a-40cb-aa58-6a7f66b2341d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -338,20 +339,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "03690f2108e88a9c418c2da88a17c8ac", - "x-ms-request-id": "09437118-bbec-4faa-b97c-04213ac13628" + "x-ms-request-id": "3073af36-9667-40a3-9a2d-8fa37c0c31d4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -375,20 +376,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4632660f59e1e12142a86b36bdfa2292", - "x-ms-request-id": "48329f02-2036-40ef-9055-0db30b934247" + "x-ms-request-id": "fc11a8ba-6475-4a6c-8dcb-d679dea1ea1e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -412,20 +413,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "58c0627884852956902f045790f63335", - "x-ms-request-id": "90b5d47c-d8b9-45f2-a8da-d8bfd9595b64" + "x-ms-request-id": "8524b636-40be-4401-9c02-1c4eda477494" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31144038-bfe0-411b-9c3d-20cf635b0499?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -437,456 +438,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "04766066b285c8b3ee87c13f9c66cd47", - "x-ms-request-id": "45747bb9-8695-408a-8231-fdbd2277b061" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "27309b696f578b270f09b6b155c9514b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "27309b696f578b270f09b6b155c9514b", - "x-ms-request-id": "22c9e64c-1e9e-4022-a6df-43d6d28c250f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5cd036751e84c50daff869fdc2178c29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5cd036751e84c50daff869fdc2178c29", - "x-ms-request-id": "2c4bc1a2-6e4d-4847-87ce-5301d81750f3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f5eebc620bc6f6de39eaf57bfb017225", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f5eebc620bc6f6de39eaf57bfb017225", - "x-ms-request-id": "8142dff0-240f-42e2-b414-733b3fa5c56b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "66c9753670964bc38d6a775e0629c9f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "66c9753670964bc38d6a775e0629c9f7", - "x-ms-request-id": "2c7439b7-6a54-4c77-b0dd-d98c9f837628" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "984f8c7c5bdb698558d922992992c9ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "984f8c7c5bdb698558d922992992c9ae", - "x-ms-request-id": "4adf6e2e-b543-473c-9954-fad0e6093235" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4cc74385264df193f8a2675b937fef0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4cc74385264df193f8a2675b937fef0f", - "x-ms-request-id": "24519537-eb51-40ab-b68f-78340de1324f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6ffefd21d9b2da4af0600ebc4d2922fb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6ffefd21d9b2da4af0600ebc4d2922fb", - "x-ms-request-id": "a8cdc25e-afe9-4d08-ad71-30298dec96f3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c2d8c9a07c6256a9f85da038f429d5d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c2d8c9a07c6256a9f85da038f429d5d8", - "x-ms-request-id": "00f28e55-6688-4a55-b36b-9ef9a05d2080" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2b7812e95a93acfbf9ed5ced17d7a3ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2b7812e95a93acfbf9ed5ced17d7a3ce", - "x-ms-request-id": "ed9ae973-14c3-4e36-bcc1-af25e7d26080" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cabb6c802ca6a4ad53a776553911e6c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cabb6c802ca6a4ad53a776553911e6c6", - "x-ms-request-id": "15996290-1f4f-4cd6-b608-619271db6ed0" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3bd2368af6b14668ce2cc9751fbc3f21", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3bd2368af6b14668ce2cc9751fbc3f21", - "x-ms-request-id": "d5a5f37c-92d9-4607-b285-de86bb602988" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/22255e3a-7267-4b28-b66c-d57ede0a72ca?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "87b8d1b90b6ebc3165d4d7ebe3a672e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:03:31 GMT", + "Date": "Wed, 26 Aug 2020 03:39:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -895,9 +452,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "87b8d1b90b6ebc3165d4d7ebe3a672e7", - "x-ms-correlation-request-id": "198b4f7f-361d-4607-9665-b4ece9f78a89", - "x-ms-request-id": "2bfb03f4-e113-4c90-b6e4-6d45a0a958d6", + "x-ms-client-request-id": "04766066b285c8b3ee87c13f9c66cd47", + "x-ms-correlation-request-id": "ac500fb0-ec93-441b-a5b2-585088b6be14", + "x-ms-request-id": "c98cccb1-d3cb-4431-aa43-56d50231517e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -910,7 +467,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0500d690-0000-0100-0000-5f45c2f20000" + "etag": "0500e4c8-0000-0100-0000-5f45d96a0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json index 67f7b5eac66b3..4a4e91dcb1d60 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6f0ff2c960fe3d41870cd0fadb79daff-5ef0de070869c948-00", + "traceparent": "00-09393bf4828ef6479cc53fa7a68baf93-15e88636530c814b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "375", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:52 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ea5894fe-7047-47ed-a108-facf3b01c6db?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b29a26d5114ab6a7c035149b4a1dad89", - "x-ms-request-id": "0e97350d-b99f-4e13-9591-45b1d638a3df" + "x-ms-request-id": "3c4af880-34db-4658-ad45-08be93bbad07" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "40961cdf-5a25-4089-a489-16f7095aa520" + "operationId": "ea5894fe-7047-47ed-a108-facf3b01c6db" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ea5894fe-7047-47ed-a108-facf3b01c6db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ea5894fe-7047-47ed-a108-facf3b01c6db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ecd5272aae8fc00eca190888f47c3df1", - "x-ms-request-id": "c7e74d60-35c4-4a0c-9fd0-d7f5782f63ac" + "x-ms-request-id": "4354b08c-60e8-4280-ae62-421782655b56" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ea5894fe-7047-47ed-a108-facf3b01c6db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ea5894fe-7047-47ed-a108-facf3b01c6db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6554ea43b687de6ec28fd5010e4a1a50", - "x-ms-request-id": "465f6c14-be3c-4814-94cf-d452bfb6f092" + "x-ms-request-id": "cc2d4daa-f13e-47cc-892c-2bcf3f213a0e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ea5894fe-7047-47ed-a108-facf3b01c6db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -125,458 +126,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2271470ac04808f9e7d82390eedb1660", - "x-ms-request-id": "11727d8e-ed5a-4648-ab58-e5f61db96f2b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b119110bc51b7345b9f62900d90db180", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:53 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b119110bc51b7345b9f62900d90db180", - "x-ms-request-id": "5a8c27cd-0f63-4e76-9c86-6ae4d7b78d0c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ac7db7ff1a0a82a9f04c7daf93deefe7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:54 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ac7db7ff1a0a82a9f04c7daf93deefe7", - "x-ms-request-id": "1ad6a1d9-d729-4a67-a707-feda14a64bf5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "fdf674796930453502fe695197f92fda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:54 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fdf674796930453502fe695197f92fda", - "x-ms-request-id": "182aca8c-77e5-4ca4-9130-1b065e045637" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3691a226695ef0556797c0cf4896dfdb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:54 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3691a226695ef0556797c0cf4896dfdb", - "x-ms-request-id": "5af011bd-c4eb-4205-9457-c223b9c8aa41" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "65864206b416964f8237aa0cb158ebf7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:54 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "65864206b416964f8237aa0cb158ebf7", - "x-ms-request-id": "24db8df8-01dc-47bc-a47e-a1b5bd19daa2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:54 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f089a31cb84c10891e069599a865fc6b", - "x-ms-request-id": "307c437b-fc1a-47a2-a6eb-47212e57e2ca" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "554a8e1eca7271c453fbb426be493e0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:55 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "554a8e1eca7271c453fbb426be493e0f", - "x-ms-request-id": "16ab142c-6f39-49c1-8f7c-7dff4211eb6c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a5b2c9abee0c4d8eb876460f1fb6ed1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:55 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a5b2c9abee0c4d8eb876460f1fb6ed1c", - "x-ms-request-id": "90bf914a-33b2-4177-9715-12d477b42068" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "23ed3f3b960d5284de189d51046351d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:55 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "23ed3f3b960d5284de189d51046351d5", - "x-ms-request-id": "a923de37-4163-434f-b4d3-076371de731e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "dfed86c857b32f5efffd9cfc83b4529c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:55 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "dfed86c857b32f5efffd9cfc83b4529c", - "x-ms-request-id": "38d51ea3-be10-4cd0-b8a3-148bac12131f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7feb980d1b5b1501445fc6f4513c4955", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:55 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7feb980d1b5b1501445fc6f4513c4955", - "x-ms-request-id": "011b9ae8-d2ed-42d3-b4da-5ce0a7d585e9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/40961cdf-5a25-4089-a489-16f7095aa520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "984770240dc8e368e0be2310f988cf2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:02:57 GMT", + "Date": "Wed, 26 Aug 2020 03:39:08 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "984770240dc8e368e0be2310f988cf2a", - "x-ms-request-id": "a107830f-c36d-4ee0-bea4-84d6077ca97b" + "x-ms-client-request-id": "2271470ac04808f9e7d82390eedb1660", + "x-ms-request-id": "8464ed51-f241-46af-a458-506660c2c388" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json index 184d39741ace5..fe4b0e89fd06e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-aad02445aee8164fab26ea5ae724fabb-ebeb0b08b7ba634b-00", + "traceparent": "00-f32c895bd87e4d428910c9c126d5097f-789bb5f3f8392440-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "375", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e3ef9fb39e592ce2f53e789b7d8e07cf", - "x-ms-request-id": "d7889db5-8ae3-4bec-81a9-42ee49d3670b" + "x-ms-request-id": "9961a1d4-4c75-4586-b574-2100504bafbf" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/MyLinkedService", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "MyLinkedService", - "operationId": "18d6ad67-def8-42dd-aba4-7b056b7981e1" + "operationId": "c5d3ee3b-cba9-4df3-8c01-62098bc250b6" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "788013e52eb87bac786784b7a8dc7455", - "x-ms-request-id": "fc103130-8b08-4e56-9d9d-099a9985c41a" + "x-ms-request-id": "6e700c0e-df5d-4d16-a9ab-085d26eee09a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "685384454affd31878eb0675dbf4fb4e", - "x-ms-request-id": "97586861-bf9a-4db1-8f51-6e60c87fac46" + "x-ms-request-id": "a10fd0cf-b92c-4f4b-8d24-8fe03399ba9e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ab639628f0de61751b60dde5a6f5c00", - "x-ms-request-id": "6bf27109-1b2e-4ab1-a1b2-2afc3e784a62" + "x-ms-request-id": "9a3357d8-fe70-43b9-b4c9-ad6722a8df5e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aba96c6f73539a3ffaac00cc27379f83", - "x-ms-request-id": "fae8c68d-2727-446b-89c6-9fb7e0d2918b" + "x-ms-request-id": "573201b0-08e9-4717-a71c-ba4ae35dcbb0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6e55366c0a26b6476d6c17483c3a7808", - "x-ms-request-id": "f19c7a8c-03ae-4711-9f6d-a4327b2ef9fd" + "x-ms-request-id": "a84f00cb-088b-40ba-b8e7-36924c8bc492" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6e05068f504beffaf91b70618f4bbf19", - "x-ms-request-id": "934fad25-0c48-4eb4-b8dd-103d93907267" + "x-ms-request-id": "5484f409-5d16-4f15-9ba5-bd78bd3909ae" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "24728916ed1964d925f23ee75bf75ebf", - "x-ms-request-id": "620635ec-17a2-4a5a-8c3d-65c860297241" + "x-ms-request-id": "f427d7f1-7865-476f-a263-91a15ec14777" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "213df73330311b383b66750b99e52722", - "x-ms-request-id": "b6bb9578-f78b-4262-b832-3355239336a7" + "x-ms-request-id": "ff9e7c6c-dba6-458f-8ab0-cd039164b7d2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b331fdad54c7a1ef2ca1495811139301", - "x-ms-request-id": "ad863f8e-042e-4359-bfcb-9c1cecd85e87" + "x-ms-request-id": "9bad4be6-a212-4b58-97e3-ff8c2062dfcb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -396,20 +397,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:15 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "972eb0bd9e0de6e75056e8b277cecb3f", - "x-ms-request-id": "5e558e26-b3da-431d-b564-fd85f3b01a27" + "x-ms-request-id": "30ac0423-8c21-4b5a-a0b6-b200e9cf24f0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -433,20 +434,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5e391ccbaac5dff8079bf490e7e00928", - "x-ms-request-id": "1f4596ad-35d2-43ec-a652-2ac65d336bec" + "x-ms-request-id": "725def9e-ce33-46e4-a4a4-028ff09e602f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -470,20 +471,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e94e73d38fb70f14154b62706b3c2a5d", - "x-ms-request-id": "97378b56-0adf-4118-afb2-e884d7cc5a5e" + "x-ms-request-id": "266f68b6-975c-4d78-bad4-45dadce86f3d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -507,20 +508,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f58c09d534d9123cb84f9071a957fe70", - "x-ms-request-id": "07e5b252-22d2-4b15-8cb8-e3cd7f162f84" + "x-ms-request-id": "231a862f-ea4b-4d11-9a37-fc6cc0cbdd3a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -544,20 +545,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:16 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "03dfbf4ce1803c87072a4879488773ca", - "x-ms-request-id": "0f5264ad-43df-4b2d-aa3e-e949882f55b8" + "x-ms-request-id": "a456c76d-f654-42d9-a570-88a308aa269d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c5d3ee3b-cba9-4df3-8c01-62098bc250b6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -569,310 +570,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ddba977114549e4f373b3168ffa365be", - "x-ms-request-id": "b302fe62-1d04-434c-9d2c-f7eddb2dcaf5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ab23f24c275df4dd814fedaeecc2ca30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ab23f24c275df4dd814fedaeecc2ca30", - "x-ms-request-id": "614e505d-163b-43da-bce1-967c380ac553" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1200c5db219c381b6f40cb44b01f3d64", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1200c5db219c381b6f40cb44b01f3d64", - "x-ms-request-id": "5a08cf22-e855-4fc0-9123-69117a8784a4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "552d89c5c8634a6db9c65b0427a1b174", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "552d89c5c8634a6db9c65b0427a1b174", - "x-ms-request-id": "b619d592-2710-4d48-baba-111278984128" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "398d007153a22b22d6eb3b1d5b984362", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:17 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "398d007153a22b22d6eb3b1d5b984362", - "x-ms-request-id": "66ea6c32-9ad3-44a9-9480-8aacf8c86d79" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "63e98812749513cc58b658d5c61711ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "63e98812749513cc58b658d5c61711ce", - "x-ms-request-id": "212f9e7b-6416-426c-943a-8df85487a4b6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b0d3578e039271c266027e788c4fef21", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b0d3578e039271c266027e788c4fef21", - "x-ms-request-id": "2f26e1b8-d38e-485e-8b74-56170350fbea" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9ef1f8834eb8fcdf337ae1ecfb4c64bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:18 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9ef1f8834eb8fcdf337ae1ecfb4c64bf", - "x-ms-request-id": "c7cc6ecf-3fb9-4a87-930e-ee93efa11d1a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/18d6ad67-def8-42dd-aba4-7b056b7981e1?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "038f6dd992c40ed0c677fc93f6538608", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:04:18 GMT", + "Date": "Wed, 26 Aug 2020 03:39:43 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "038f6dd992c40ed0c677fc93f6538608", - "x-ms-request-id": "2a185338-fd15-42c7-8220-5f12f19fb7c7" + "x-ms-client-request-id": "ddba977114549e4f373b3168ffa365be", + "x-ms-request-id": "35a8d057-515a-4640-9e15-056cfc8096be" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json index 279e755c897ce..2c8f8519c0289 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "1487", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:43 GMT", + "Date": "Wed, 26 Aug 2020 03:39:00 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4ca5e4e26d4da61b2ae657a3a1808a3c", - "x-ms-request-id": "3efbd4fe-19c9-48f7-8042-eb1110093deb" + "x-ms-request-id": "b4f9176a-dab4-4c6a-af32-7e1a2522c949" }, "ResponseBody": { "value": [ @@ -58,7 +59,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", "name": "MyLinkedService", "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0500ae90-0000-0100-0000-5f45c2b90000", + "etag": "0500dac8-0000-0100-0000-5f45d94b0000", "properties": { "type": "AzureDataLakeStore", "typeProperties": { @@ -73,8 +74,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4f7aae9ee3bf6c498ba8ef89b4884abd-9e83b31816848445-00", + "traceparent": "00-999cd79d41af6f4aa6fa9dda4d1500e9-b7e38554bf91764c-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -88,7 +90,7 @@ "Cache-Control": "no-cache", "Content-Length": "467", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:43 GMT", + "Date": "Wed, 26 Aug 2020 03:39:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -98,8 +100,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "cc9a74f165c22a2e2ca0bca1b7aac1a7", - "x-ms-correlation-request-id": "14b09686-a497-4376-ae50-0d1d17b6266f", - "x-ms-request-id": "0155a9a2-4ec4-4058-b9d5-e9ba99c4c4b2", + "x-ms-correlation-request-id": "e43c4392-9eb3-455b-8dc2-e14f51c1a8b0", + "x-ms-request-id": "526370f2-b0dd-43a9-ae04-dbbf012b0c42", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -119,8 +121,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-263148dccb0f36428a15a5f1fa64df20-fa954ad2b0f89b4a-00", + "traceparent": "00-bd28da893022e6418ae3e0e03b8b1e2d-963c7b04a751b84d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -134,7 +137,7 @@ "Cache-Control": "no-cache", "Content-Length": "586", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:43 GMT", + "Date": "Wed, 26 Aug 2020 03:39:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -144,8 +147,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bb1c8e63396c81404e8e0f6fe74fd80f", - "x-ms-correlation-request-id": "525b3609-b03d-45af-9da1-3cf97dbfca80", - "x-ms-request-id": "710e482f-9ab8-40f0-95a2-4f039a4c6eb0", + "x-ms-correlation-request-id": "17c812c1-1665-472f-8a7d-b903b5f7017a", + "x-ms-request-id": "d0b61259-7656-4181-b1cd-e365c6430072", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -170,8 +173,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-544d4c6a4c07a24d989bd64495790cd3-9bbb846d4bb61a49-00", + "traceparent": "00-73df5a72b1ae65408602158a46ac1c89-112c78e1eeb8bc4b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -185,7 +189,7 @@ "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:02:43 GMT", + "Date": "Wed, 26 Aug 2020 03:39:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -195,8 +199,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3e890f0f2af97d1ab67b20acb079ee80", - "x-ms-correlation-request-id": "328fbb42-d186-4880-9802-5ca53c014dec", - "x-ms-request-id": "384178ec-95ff-4c80-9a3b-b77bd1ad5064", + "x-ms-correlation-request-id": "73b64e50-6a5b-4db0-b9fd-f08f5323be75", + "x-ms-request-id": "54dde529-4bc1-4b10-9054-84bf266e2aad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -209,7 +213,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0500ae90-0000-0100-0000-5f45c2b90000" + "etag": "0500dac8-0000-0100-0000-5f45d94b0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json index 585a6dd1b7df9..682f3a76aee9f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "1487", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:03 GMT", + "Date": "Wed, 26 Aug 2020 03:39:30 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4f2ace59b3b83ebc6d97535970e1f994", - "x-ms-request-id": "cf527a33-8557-4d1a-8458-043d1da0e8d7" + "x-ms-request-id": "10a8e5ad-c216-4e20-abba-bc4b55dd27e5" }, "ResponseBody": { "value": [ @@ -58,7 +59,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/MyLinkedService", "name": "MyLinkedService", "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0500d690-0000-0100-0000-5f45c2f20000", + "etag": "0500e4c8-0000-0100-0000-5f45d96a0000", "properties": { "type": "AzureDataLakeStore", "typeProperties": { @@ -73,8 +74,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6fd301149876cf45bb59bd63bde83937-8b37016cc938054f-00", + "traceparent": "00-61ccb791de4d924f869fbea19aafe670-c493fcade2141846-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -88,7 +90,7 @@ "Cache-Control": "no-cache", "Content-Length": "467", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:03 GMT", + "Date": "Wed, 26 Aug 2020 03:39:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -98,8 +100,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "684e9f5e21cfb0cbe7d96251e503007e", - "x-ms-correlation-request-id": "7a42c125-8a29-4f87-8ba1-7455a6f4be8d", - "x-ms-request-id": "14c72fcf-2db4-4045-a0b2-e0724790cbc8", + "x-ms-correlation-request-id": "72f7a2ba-7586-4248-9a16-5680395387de", + "x-ms-request-id": "ef117e1d-280b-4124-a8d6-e7f90ad91796", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -119,8 +121,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-64f473bbb38bf544aabca2d4cec7683e-202f83638cef704a-00", + "traceparent": "00-1c51c929c4dcd84ca6a070ebc473e442-80b7512c4c5a0b4c-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -134,7 +137,7 @@ "Cache-Control": "no-cache", "Content-Length": "586", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:03 GMT", + "Date": "Wed, 26 Aug 2020 03:39:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -144,8 +147,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "453617658095eadc0682c623600058a9", - "x-ms-correlation-request-id": "7d631118-b971-44f4-94f3-8aca9ae258f0", - "x-ms-request-id": "782841ca-9bc7-47ae-ba83-6ce0cf361196", + "x-ms-correlation-request-id": "261ea269-c3f7-4e20-b229-1fc093b96fc0", + "x-ms-request-id": "3783b568-3cca-418b-aa34-1f86e74eb163", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -170,8 +173,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/MyLinkedService?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-08b3cf2ec1c2de41aaf8ee34109d5720-111c88905c37e646-00", + "traceparent": "00-24408ebb3702a94fad91c827b84dc52f-de532b26828f4047-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -185,7 +189,7 @@ "Cache-Control": "no-cache", "Content-Length": "420", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:03 GMT", + "Date": "Wed, 26 Aug 2020 03:39:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -195,8 +199,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5c6a10f6767238bc027968df506b5869", - "x-ms-correlation-request-id": "0898ad53-9b48-452f-8b9b-91da1569f5d3", - "x-ms-request-id": "c84e2357-bf6c-42f9-a25d-98b4715bdca2", + "x-ms-correlation-request-id": "795c5058-9907-4652-b569-7c587a6a608e", + "x-ms-request-id": "b1d57975-7ea7-4474-94ff-cc61108ea728", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -209,7 +213,7 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0500d690-0000-0100-0000-5f45c2f20000" + "etag": "0500e4c8-0000-0100-0000-5f45d96a0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json index 950319acb5127..be1e9adbfa379 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebook.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-0b32c6c87054ad43a8a0067d4c68f090-2f5d5150fcc7f04d-00", + "traceparent": "00-8a389e3f09a89544b74d8fdbc480bc91-8e261f49aebf0741-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -39,27 +40,27 @@ ], "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2c2c75c82902031b846bfaaf38527c77", - "x-ms-request-id": "f77c3afb-abad-4964-bb98-80fd07814369" + "x-ms-request-id": "e88f8a0c-a913-45ad-86c6-d2d0405c55ee" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", - "recordId": 212207, + "recordId": 212320, "state": "Creating", - "created": "2020-08-26T02:04:44.1166667Z", - "changed": "2020-08-26T02:04:44.1166667Z", + "created": "2020-08-26T03:39:54.8033333Z", + "changed": "2020-08-26T03:39:54.8033333Z", "type": "Notebook", "name": "MyNotebook", - "operationId": "9248b1a2-d449-4bfe-aa87-8df6b30b8836" + "operationId": "9d75f08b-2cda-4bfc-bffd-e0d968ccd415" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -83,20 +84,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "35b2b3f75d713635ca0d6c16507a164c", - "x-ms-request-id": "c1d6e987-82bf-40f1-b1e3-fc961258cb75" + "x-ms-request-id": "a4538e30-ad0a-4344-bb9f-d2d76574d8da" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -120,20 +121,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f56d48f8ceba4bb7714bda5428855083", - "x-ms-request-id": "fddba7ca-3890-43c5-8cc5-61d066ee4b1e" + "x-ms-request-id": "fe09cff3-37c9-4022-8a3e-b3cd4dfccdd4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -157,20 +158,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "85b77a2146a0ea0641fbe3a111ee8fd7", - "x-ms-request-id": "f3db4ab5-d11a-4a48-b6b4-d466f5300a18" + "x-ms-request-id": "e98aef14-2916-4a42-9a7f-9d393010c11e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -194,20 +195,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6a9cb498549229c5fb66c42583e00e44", - "x-ms-request-id": "d96c6afa-a731-442e-922d-b6a38edd8fdf" + "x-ms-request-id": "6fd3fb7d-de87-4d4b-b467-fe029dea35ec" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -231,20 +232,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:44 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d6f5e8bd91c2b1ac4183b4bfea153983", - "x-ms-request-id": "1d4e19aa-a5e7-4551-a4df-ca570f70842d" + "x-ms-request-id": "0c8b9238-8050-4cd5-8026-6f1f9b134be3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -268,20 +269,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "73bc02bce5e8ccf1b48e893981e16660", - "x-ms-request-id": "d65ba568-036a-45e3-811f-8aec2d1f4900" + "x-ms-request-id": "79697a25-2cfc-472e-af9e-2afdc425eefc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -305,20 +306,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "29e49fedb9f8061408eb290fa0063ee5", - "x-ms-request-id": "0473bb7d-e09e-4c29-9235-7e6cf58226df" + "x-ms-request-id": "8f038918-5da2-4198-8582-2fb4d5674d1a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -342,20 +343,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8069412d9a24d75cf729213407732f60", - "x-ms-request-id": "f932a3d4-bf5a-45a6-bdcd-b8a1805fccec" + "x-ms-request-id": "50b79b74-55da-4eda-95cb-1765b202584e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -379,20 +380,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4bd2531c1031038aedb56bfdbce12bae", - "x-ms-request-id": "0ea04854-61bd-4881-80f3-5823ad8ef616" + "x-ms-request-id": "bcc09027-1a8c-47ab-aa68-e363efb78b35" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -416,20 +417,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:39:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "400ba350e678523c420d32cf97e0ff95", - "x-ms-request-id": "111cf268-6a12-4213-a972-6811f25ce480" + "x-ms-request-id": "9caef1e6-1583-492a-84ad-a5243fe74df8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9d75f08b-2cda-4bfc-bffd-e0d968ccd415?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -441,419 +442,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4df3c8bbf2341db4b765936f2f5e1a15", - "x-ms-request-id": "77b17dcd-9cc3-4eaa-8365-498a03ba2d10" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "63e472fdef6736e7177f0824deba6b0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "63e472fdef6736e7177f0824deba6b0d", - "x-ms-request-id": "42c10340-c6b9-498c-b2f6-da2be069de59" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f342d6b6deee5e7aefee891252cc23e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f342d6b6deee5e7aefee891252cc23e4", - "x-ms-request-id": "bef49f84-c1e9-45b0-b4a0-92d300bf3ef7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "24d21cf29bfbcc2de0bc35b4e9903efc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:47 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "24d21cf29bfbcc2de0bc35b4e9903efc", - "x-ms-request-id": "fb4881de-aa62-4dc3-97a5-667981949f2f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "58b986fa261c1e27f786747865d5e34a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:47 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "58b986fa261c1e27f786747865d5e34a", - "x-ms-request-id": "b3c3b952-b17d-46f4-9e93-3e5b08432f12" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:47 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c131245c46e81a11a8761231a9c6745f", - "x-ms-request-id": "0894b297-4106-4918-8607-fad7d1020a40" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cc188dafca13ccc8f5b32c7526b5660b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:47 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cc188dafca13ccc8f5b32c7526b5660b", - "x-ms-request-id": "614f7ee3-176d-44b2-bafc-1cd902969e7b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c458ead97d5eb414749eb0a613f57531", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c458ead97d5eb414749eb0a613f57531", - "x-ms-request-id": "a49a0097-8652-439f-b6d8-6423f171afdd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d8c8151116bd91365c65cc34199bf4f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d8c8151116bd91365c65cc34199bf4f3", - "x-ms-request-id": "ddce302b-0da1-4e00-9386-1e025aca3300" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "be58070fb06d3200796357751a21b8ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "be58070fb06d3200796357751a21b8ff", - "x-ms-request-id": "57428ee3-fd70-4199-bffc-a450ba2c313e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1064fb3d8dedc24eb3c768f8b1df9ad9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:48 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1064fb3d8dedc24eb3c768f8b1df9ad9", - "x-ms-request-id": "600ead02-ec19-4d09-92f0-1a7e80815bdd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9248b1a2-d449-4bfe-aa87-8df6b30b8836?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0c96bcaab79d61c415955f59bec1763a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:04:49 GMT", + "Date": "Wed, 26 Aug 2020 03:39:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -862,9 +456,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0c96bcaab79d61c415955f59bec1763a", - "x-ms-correlation-request-id": "2626e5f2-ba53-45bc-987e-2ae9cbe94ce4", - "x-ms-request-id": "56e0c3a9-7ba6-4037-97ef-720124728c9e", + "x-ms-client-request-id": "4df3c8bbf2341db4b765936f2f5e1a15", + "x-ms-correlation-request-id": "a151953d-28c6-48e3-b1ef-11554dbf2e89", + "x-ms-request-id": "f1098489-fe29-4733-b5e1-74be6bbbc48a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -881,7 +475,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "0500ec90-0000-0100-0000-5f45c3410000" + "etag": "0500f1c8-0000-0100-0000-5f45d98d0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json index aea68c9dd9977..1479fc27cfa81 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestCreateNotebookAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "106", "Content-Type": "application/json", - "traceparent": "00-1eee9237868d06499384e19de81ae80d-16c6b8a82acc3244-00", + "traceparent": "00-c1d14ff3b4a07440b2807c9972006945-a80e3d5de38e7a4f-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -39,27 +40,27 @@ ], "Content-Length": "366", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:57 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d397c27d0e008c59ac54b85213fc9d18", - "x-ms-request-id": "9c779f8c-009c-47be-9d22-3b6f15c18804" + "x-ms-request-id": "09044d4c-ad6b-4e95-988f-3e9b18ece6a6" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", - "recordId": 212208, + "recordId": 212321, "state": "Creating", - "created": "2020-08-26T02:05:58.2Z", - "changed": "2020-08-26T02:05:58.2Z", + "created": "2020-08-26T03:40:35.9Z", + "changed": "2020-08-26T03:40:35.9Z", "type": "Notebook", "name": "MyNotebook", - "operationId": "23b3075e-9127-4f54-b9db-0156239ba230" + "operationId": "5141153c-4689-44f6-9d88-b6fda23cb7db" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -83,20 +84,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "96d9b91820b763c36e26acff578054e5", - "x-ms-request-id": "1b9d37ea-d8d0-488c-af12-4a08d717f0e6" + "x-ms-request-id": "c4151211-8fcf-46f2-8fbb-ea646ef93d7d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -120,20 +121,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6870cea03a67392e3499352011f9b798", - "x-ms-request-id": "1659fd82-6ed3-4af8-b751-44e56843e3cc" + "x-ms-request-id": "757583df-7b27-461e-ba03-56880eee773e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -157,20 +158,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5a39898e0722446052d0a701988ea51d", - "x-ms-request-id": "1eefb078-a48f-4819-bc11-72aa9e40ab2d" + "x-ms-request-id": "b2756de7-516f-41ae-bca5-c9c4ffdc9fad" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -194,20 +195,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "06bf178b5da4ddc78aa0611deba25275", - "x-ms-request-id": "2d728a3a-074d-4f31-936c-8b5d0086dd10" + "x-ms-request-id": "dd3a91c0-9d70-461b-8c06-777895ca6590" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -231,20 +232,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:58 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cd71136ffa4799c36d2b1597922da1a6", - "x-ms-request-id": "94938ccb-1dcd-4efc-ba9d-bb2543ad02b7" + "x-ms-request-id": "993f60a3-bce3-485d-a5a6-6a9327b67a95" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -268,20 +269,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fa9517f4b03931f4c25bcf82a54259b0", - "x-ms-request-id": "ba870c59-4509-44cc-b36d-123a7cfb0360" + "x-ms-request-id": "a5219755-ccd0-4a85-a1e9-a6c43876c300" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -305,20 +306,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:59 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8492327ed71d90d65325997947304a5d", - "x-ms-request-id": "dbdf0d07-d221-46d1-9490-c921b14684ff" + "x-ms-request-id": "88bb5b21-af3a-48fe-ad18-6ea6973408d1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/23b3075e-9127-4f54-b9db-0156239ba230?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -330,12 +331,86 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:40:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", + "x-ms-request-id": "042921bd-9df7-451a-b5e9-3d6f0bcb33e9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "601864d11c9b1c894105a614177bea91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:40:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "601864d11c9b1c894105a614177bea91", + "x-ms-request-id": "4c56cb46-55b5-41c7-a3a7-a5dc43cc79a2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5141153c-4689-44f6-9d88-b6fda23cb7db?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ea837110851826a3f6d364ddccea6512", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:59 GMT", + "Date": "Wed, 26 Aug 2020 03:40:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -344,9 +419,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d429bbff580cbe3b1f3f0beb2b40f42b", - "x-ms-correlation-request-id": "86fe9ffa-ef67-4173-a4c3-6dc0d28fed0c", - "x-ms-request-id": "e08c2f57-7e6a-455d-9b58-dfc39e623ee5", + "x-ms-client-request-id": "ea837110851826a3f6d364ddccea6512", + "x-ms-correlation-request-id": "4ce9dc8d-d611-46ec-8a6e-9985996611bf", + "x-ms-request-id": "8288bfbd-3686-4114-a2b0-0dd71dcdf6f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -363,7 +438,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "05000591-0000-0100-0000-5f45c3870000" + "etag": "0500fec8-0000-0100-0000-5f45d9b60000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json index 5fcd809139e17..ca5ee32f75321 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5125e15b6c214c46b50d3e8fc68e8a2a-e258567c66f0e445-00", + "traceparent": "00-59acc8b4874efc4fbecbae95433d66fd-dbe364a9cc1d894e-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "da3057907c3235de46135faf9f4b7713", - "x-ms-request-id": "baa5ed96-f15b-4c09-941c-4e55eebc5d46" + "x-ms-request-id": "f56a4fe0-e5dc-4ea4-884a-76463a3dc1f4" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "MyNotebook", - "operationId": "a0d9dac4-0d42-43df-8479-d5a9104c6be6" + "operationId": "f6ba16a0-09d3-4fbe-8f4f-fea303f1f674" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5394a0bac0c5b6b18288a94b04598030", - "x-ms-request-id": "93f19b93-da96-4010-9696-f8c5702b62bc" + "x-ms-request-id": "ad4a473b-1b64-4a1f-933b-4083eced2464" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "84a1f57cdb37372be3ff5437e9c4e556", - "x-ms-request-id": "a969896e-768e-47bf-ba17-559d74367c3c" + "x-ms-request-id": "ab86b874-3b97-430e-a804-e34071616f8a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:38 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fef4fb4c24b6ed4db49bdbd1af292c2c", - "x-ms-request-id": "5cec78fa-1bfd-4a2c-b7ad-afadda1606b9" + "x-ms-request-id": "1eb33e68-d45f-4989-b376-b6ad8f65d5ba" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5a9c617a434edf2d755c70c66b7accbd", - "x-ms-request-id": "d3f2b071-ee7c-4fe9-a0fb-12720958d60a" + "x-ms-request-id": "d0ab1a90-7ed6-4b4d-8483-78ca191d63d9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "08fe52a381655879a7b3cf9b005a88b9", - "x-ms-request-id": "4d9ce57b-0484-44de-b1de-72d9566f1ff8" + "x-ms-request-id": "511ad350-3945-45f5-9f5d-cf9a0a645dfb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "88bc28d28b280808cd15895ab387823a", - "x-ms-request-id": "de44760a-b5e6-4f77-84eb-7d37deee07c0" + "x-ms-request-id": "4716972e-e877-45ba-9ffe-5e692e3e5321" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5d2e1dcf232af9c6e743b29a7492df1a", - "x-ms-request-id": "5d45e0d7-7c85-401d-b968-1686dea3e05b" + "x-ms-request-id": "d8f04e40-228f-4629-8a6f-659ebec47c1c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:39 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "42f3b6d444bd179549f63a50f71fa520", - "x-ms-request-id": "1ac8f3c6-66ba-49c7-ab86-5c58fba96ed2" + "x-ms-request-id": "e22b35e9-0ac7-437e-bae2-e2683e111e0c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e2cb94312a2cae8f61c3a0e4d96d943b", - "x-ms-request-id": "f5d8abfa-a500-4e4c-8eb7-ff2ff06dc417" + "x-ms-request-id": "bceec268-2702-44b9-8713-6fa2aed000d6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -396,20 +397,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fc856e353f938b7d88161334e87601c8", - "x-ms-request-id": "67361564-937a-4918-85db-4baa13a63c05" + "x-ms-request-id": "06dfba5c-e806-4f51-8065-68ba240cd183" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -433,20 +434,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "df68919efdc6a9ee2744e0faa4b13edc", - "x-ms-request-id": "b0310e69-70f4-466b-8971-dc5f5ec92b02" + "x-ms-request-id": "085a4a4d-a028-4a51-a152-8bc9e3d15b8f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f6ba16a0-09d3-4fbe-8f4f-fea303f1f674?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -458,421 +459,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "881afe61a899f28c16405916165ac5eb", - "x-ms-request-id": "ef5e477e-4c5e-41b3-b520-a23f73ac98b4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4745d7c1b405387580dcd54f5e83e7d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:40 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4745d7c1b405387580dcd54f5e83e7d6", - "x-ms-request-id": "8f891094-ee3b-487b-b6bf-e0de45b9ed48" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e9d337d7795cf62e0475c886a3d893cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e9d337d7795cf62e0475c886a3d893cd", - "x-ms-request-id": "098e92bb-6f2e-475c-b0de-2f12d41da1dc" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cc38f57ef66bacd689e108bdd33d9493", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cc38f57ef66bacd689e108bdd33d9493", - "x-ms-request-id": "d70191bf-de9b-41ba-9afe-beef61635006" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "de3e8358dc87488ea94f428febef95a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "de3e8358dc87488ea94f428febef95a7", - "x-ms-request-id": "4de2d534-d0f1-43d4-b105-1c5270fbf8e5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:41 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "68d107481b4ae06a6026607a707022c7", - "x-ms-request-id": "cc136f20-b289-4a74-8b39-c90a17468194" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "202d35e1b49aa24667f0221cb447c099", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "202d35e1b49aa24667f0221cb447c099", - "x-ms-request-id": "24d5bcf9-663a-4260-809f-fd62bd40ea13" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cb74614c2c6c3d48185d7d607b13d838", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cb74614c2c6c3d48185d7d607b13d838", - "x-ms-request-id": "21046951-5c05-47c5-bd80-4a4dd7e35ca5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b6ad7a2c75c2940dc12e005af84e2c19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b6ad7a2c75c2940dc12e005af84e2c19", - "x-ms-request-id": "4782a044-a7d6-46fc-8b5e-74172606660d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0e2ec66657fcb55becef073d36e52654", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:42 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0e2ec66657fcb55becef073d36e52654", - "x-ms-request-id": "f6f731ac-8afa-46f8-a13b-16dfd0175054" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "39f0ea180a99d6d754e0093d2bee45ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "39f0ea180a99d6d754e0093d2bee45ca", - "x-ms-request-id": "a7d8bb04-ea0c-4176-9124-8fd7b58c60be" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0d9dac4-0d42-43df-8479-d5a9104c6be6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b4fa6430c9e4d43c1ff8c9d36dcf5ddc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:05:43 GMT", + "Date": "Wed, 26 Aug 2020 03:40:24 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b4fa6430c9e4d43c1ff8c9d36dcf5ddc", - "x-ms-request-id": "f220eacd-edf4-4af1-8868-30d11802bac0" + "x-ms-client-request-id": "881afe61a899f28c16405916165ac5eb", + "x-ms-request-id": "5d514eb9-cbb1-4b87-9b91-0d85a6f55828" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json index beb4bb13297d2..530eabd6faa95 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-634d3efffb961443b84c313158cf2371-fe404efb0dbca446-00", + "traceparent": "00-481fc6635d4d044e941165694d5e0693-f6c86d1f155bce40-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:21 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "405f55d1db7830638248974ea08dc998", - "x-ms-request-id": "c0b48e43-94a8-46d7-a3a7-e7cba9685ac0" + "x-ms-request-id": "1b4b4719-dad5-4e62-81fe-f3adc29696fb" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "MyNotebook", - "operationId": "2386f157-2d69-48f6-81b7-6b88bd5b1c07" + "operationId": "cd539cc8-dd71-45c4-a82b-aa5718b638e0" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:21 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0f4a7c5793c6eafd5a7f7433d49eff70", - "x-ms-request-id": "56c34b99-3a11-47e3-98cc-f68b414377b1" + "x-ms-request-id": "f9690e3c-a225-4b44-a6fc-4f1e255a5004" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:21 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0940fe5ee806ab42136645f5b5bb782c", - "x-ms-request-id": "a9c7cd2e-49be-4e00-85d5-3c2d4ae05dca" + "x-ms-request-id": "5ad86845-ea98-4171-aafe-6158ca6bd4e4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:21 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:40:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "24f7b130ba4221d10b8af031b10e235c", - "x-ms-request-id": "e626b532-3156-4d0f-85e6-a37afadf8c2a" + "x-ms-request-id": "1595e223-c002-4e42-ad1f-10f8f7f221b0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2386f157-2d69-48f6-81b7-6b88bd5b1c07?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -162,14 +163,273 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", + "x-ms-request-id": "6c9b0b8f-633c-4179-9544-66ddb6e47375" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "23024707daa7a42d2c1ffe7cf810fa04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "23024707daa7a42d2c1ffe7cf810fa04", + "x-ms-request-id": "4851f418-edf7-4e8f-be9b-96523e07412b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ff72e942be712217d188eaa4be71d303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ff72e942be712217d188eaa4be71d303", + "x-ms-request-id": "5fd3625a-689b-4832-b823-fd9ae2265434" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "6a2a5155000ba8b488a58df50f637629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6a2a5155000ba8b488a58df50f637629", + "x-ms-request-id": "c8274fef-3002-49d6-b1d3-23ce0cd75b41" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "641df7a43595482d2fe0511ff089e5ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "641df7a43595482d2fe0511ff089e5ba", + "x-ms-request-id": "557c3f44-c056-4b3c-b5e5-b2647666bd52" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a626fa4c90e542f934c977cc3022126e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a626fa4c90e542f934c977cc3022126e", + "x-ms-request-id": "c6cfb010-f8ca-43b5-9f30-5d70c63dd8fd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "c7ffc0116e54206e23e23a2baf95b8ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c7ffc0116e54206e23e23a2baf95b8ff", + "x-ms-request-id": "59c9fff9-41ea-4937-a3a8-6722c35f1511" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cd539cc8-dd71-45c4-a82b-aa5718b638e0?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "14a9d3bfd03d1343feda30cbbe61170c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:06:22 GMT", + "Date": "Wed, 26 Aug 2020 03:41:01 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ba49b6830d146fdf3a9efb5f4e07349f", - "x-ms-request-id": "31275fb7-5732-4f56-85d1-a0f920b50c2f" + "x-ms-client-request-id": "14a9d3bfd03d1343feda30cbbe61170c", + "x-ms-request-id": "790fb60e-d539-4f1d-966f-974cee812613" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json index 1481cf0432380..bf9d5bee6b469 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "6291", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:19 GMT", + "Date": "Wed, 26 Aug 2020 03:40:11 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a353c8c84d48d750254927b42874ee69", - "x-ms-request-id": "0c1daf31-06c0-4fd4-a604-19f3a93eb6c1" + "x-ms-request-id": "aa55773b-e9a5-4657-8f86-a0b3c473693d" }, "ResponseBody": { "value": [ @@ -282,7 +283,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", "name": "MyNotebook", "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0500ec90-0000-0100-0000-5f45c3410000", + "etag": "0500f1c8-0000-0100-0000-5f45d98d0000", "properties": { "metadata": { "language_info": { @@ -301,8 +302,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7fd7ba58fcd1a74ea6827edbd5e78ad7-78308c194fbb0840-00", + "traceparent": "00-54540bf8ed80bd4eafeebd912cd1224b-7fa048a5ce4bb94f-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -316,7 +318,7 @@ "Cache-Control": "no-cache", "Content-Length": "1212", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:19 GMT", + "Date": "Wed, 26 Aug 2020 03:40:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -326,8 +328,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4a0bc19ed1af8774eec1dd87ae8fc195", - "x-ms-correlation-request-id": "0e0cbaa5-91fa-4e05-b350-f652d81599fb", - "x-ms-request-id": "a9cf26fa-e8b6-4fd8-b293-8d3c65261731", + "x-ms-correlation-request-id": "bb58bf33-3096-481e-8403-696963329456", + "x-ms-request-id": "8651bd71-0857-44d4-8545-4f550451c5a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -388,8 +390,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaTestNotebook?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6e644e75131cf047ad6c9561ebe6c0ae-cceef7100ead9b45-00", + "traceparent": "00-a08cdab32747f3479cce8aff6b7681ef-31df027d4c433a49-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -403,7 +406,7 @@ "Cache-Control": "no-cache", "Content-Length": "666", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:19 GMT", + "Date": "Wed, 26 Aug 2020 03:40:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -413,8 +416,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a5ce45d6e1c2bab2e43cbea51f9fa1ea", - "x-ms-correlation-request-id": "1929dd81-5e83-4b1a-bda4-27b90b365672", - "x-ms-request-id": "af41dd62-9437-423b-99e0-e68e4b035e05", + "x-ms-correlation-request-id": "5160ba0e-5526-4d72-bf76-bf597d0e11b0", + "x-ms-request-id": "5abb91f8-ec9d-4c1d-b110-a8feff44023a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -457,8 +460,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaNb2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e8a2b70479503842ac174f1e454a76b3-f22bdc8cac190747-00", + "traceparent": "00-119c34d3b36c6e4495c9613ece6ffb9c-4d2e59129c5d0b46-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -472,7 +476,7 @@ "Cache-Control": "no-cache", "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:19 GMT", + "Date": "Wed, 26 Aug 2020 03:40:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -482,8 +486,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9afc5697cb4df7be53cbb58670c82995", - "x-ms-correlation-request-id": "3a1cf75a-6d37-4551-8f9b-27163ecd6a05", - "x-ms-request-id": "e60206e5-0202-4a2d-a5a2-ba4cba9dccc7", + "x-ms-correlation-request-id": "5169c6fb-3ec0-4d13-9c2f-e47ce3a154f4", + "x-ms-request-id": "97a23e5c-77c8-4445-95bc-a484c7c232bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -534,8 +538,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb23?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f7bd8c6521d29640b61d11fb87ac2bd5-7d39350588616e47-00", + "traceparent": "00-18c97a0bd1f121469f8d00563a5976b1-777347fc8736e74a-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -549,7 +554,7 @@ "Cache-Control": "no-cache", "Content-Length": "1101", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:20 GMT", + "Date": "Wed, 26 Aug 2020 03:40:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -559,8 +564,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e3dd918848a6bca70e50667313ce674e", - "x-ms-correlation-request-id": "b68d03ae-f0b0-4ed7-a920-8945ead4cb27", - "x-ms-request-id": "f7bf4566-b57a-42ff-93ba-445ac222c7ac", + "x-ms-correlation-request-id": "12b281d6-84e4-431a-a946-bc5a906f2f99", + "x-ms-request-id": "e7b66cf7-cbc3-4c1f-8881-d443da0490a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -611,8 +616,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwatestnb1446?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-047cfe124e4f1f4ab59be0f3a6ef65bf-878d24e7f5b5b843-00", + "traceparent": "00-2b3c1ccd1c660247a2b7a9cfd96337a6-056f4c604303aa47-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -626,7 +632,7 @@ "Cache-Control": "no-cache", "Content-Length": "547", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:20 GMT", + "Date": "Wed, 26 Aug 2020 03:40:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -636,8 +642,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "57eff22026920b4787d652f62c2b491b", - "x-ms-correlation-request-id": "9c54415c-d369-44ff-be53-33b8591c56e3", - "x-ms-request-id": "ea390d66-bb3d-497c-803a-f779dc468d90", + "x-ms-correlation-request-id": "9fd8df65-c13c-427c-823d-aa57ccbb6498", + "x-ms-request-id": "a5293461-4479-4f0b-bef2-34361fa41bc5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -669,8 +675,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaCreateNbwithCell?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-726d7d0eb7617e42a7773392a0090261-866d9327e2cae54d-00", + "traceparent": "00-edbb25f04ae2304191193acb8be2ebf2-fc1ff4209cb15848-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -684,7 +691,7 @@ "Cache-Control": "no-cache", "Content-Length": "1261", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:20 GMT", + "Date": "Wed, 26 Aug 2020 03:40:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -694,8 +701,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8e1d2812bec14e44af408bfd654ae484", - "x-ms-correlation-request-id": "1f0a4aa1-122b-484b-88d6-dabe7a79c402", - "x-ms-request-id": "30bffda2-af1f-426f-8db2-bb4a928440f1", + "x-ms-correlation-request-id": "1f95cdca-d23f-4c0b-9645-d24d6b908044", + "x-ms-request-id": "a553e803-20fd-4998-b6da-057bdc9100d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -758,8 +765,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ed7012c1d853384fbb546021c7cb2160-6b4242988d719c4f-00", + "traceparent": "00-289933385e5ea043bfa4d1da08078798-9d0f82b4d7c45e44-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -773,7 +781,7 @@ "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:05:20 GMT", + "Date": "Wed, 26 Aug 2020 03:40:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -783,8 +791,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7d666664d2d9610349d25cd0f6b090e3", - "x-ms-correlation-request-id": "9502e547-660d-4214-9b55-bc6b88441f42", - "x-ms-request-id": "1f2efe88-a3bb-4600-97d2-48f6a809d93a", + "x-ms-correlation-request-id": "3d8964af-139a-431d-aaa6-1e5f78e2f959", + "x-ms-request-id": "6ceaa67d-fa70-430d-828e-886760843f65", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -801,7 +809,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "0500ec90-0000-0100-0000-5f45c3410000" + "etag": "0500f1c8-0000-0100-0000-5f45d98d0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json index 58d721cd01ee1..9c50fcdcf225f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "6291", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:10 GMT", + "Date": "Wed, 26 Aug 2020 03:40:46 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "765dcd98fbeb2794bc56547da66ebf7d", - "x-ms-request-id": "6cb529a8-1721-4185-b843-478b1431071b" + "x-ms-request-id": "394ed531-04fd-4105-bd62-2f7ba425dd2e" }, "ResponseBody": { "value": [ @@ -282,7 +283,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/MyNotebook", "name": "MyNotebook", "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "05000591-0000-0100-0000-5f45c3870000", + "etag": "0500fec8-0000-0100-0000-5f45d9b60000", "properties": { "metadata": { "language_info": { @@ -301,8 +302,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b17b8a1d6533174fb4f06d05f98375f4-97a32f7aa3387c44-00", + "traceparent": "00-b9cc1f2d527c5b44b283ed22ab966e33-645608f9c4bddb44-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -316,7 +318,7 @@ "Cache-Control": "no-cache", "Content-Length": "1212", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:10 GMT", + "Date": "Wed, 26 Aug 2020 03:40:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -326,8 +328,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8fac1d1f3467c3a7c68b0cee7d692513", - "x-ms-correlation-request-id": "fc92aab2-1d3f-453f-814d-2bcce3062477", - "x-ms-request-id": "737b9fe5-33b4-46ed-a86f-6f28a0b99d5a", + "x-ms-correlation-request-id": "1cd4d96d-dbcc-46a8-a9e0-1993138f40e3", + "x-ms-request-id": "5c9dcf54-700d-4d2f-8f26-3378f6aac1bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -388,8 +390,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaTestNotebook?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8e2ef271b35341478686cc2db9b3ddac-f9af93a7838d2c47-00", + "traceparent": "00-e0808f49881639429f57d028e0cb5bf2-1a0f32cff7c9a74d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -403,7 +406,7 @@ "Cache-Control": "no-cache", "Content-Length": "666", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:10 GMT", + "Date": "Wed, 26 Aug 2020 03:40:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -413,8 +416,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0a2d2b55c619c1c6a5e590fbfec3543a", - "x-ms-correlation-request-id": "fdff45e1-4418-4200-9d95-c20fbe8c8eb0", - "x-ms-request-id": "0d132f51-67ec-4077-8961-1ab2ea8a07f4", + "x-ms-correlation-request-id": "7439e819-1969-47a4-8ef5-a7cbdb487d40", + "x-ms-request-id": "88860871-16e7-454f-8ca4-2a7623a74656", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -457,8 +460,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaNb2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-85d7c428758e6d47bff368495db1e6c2-b8464b48e104d24f-00", + "traceparent": "00-5e8d766e597f6b41ade85ef43fbbec04-2fa503907ceac74b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -472,7 +476,7 @@ "Cache-Control": "no-cache", "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:10 GMT", + "Date": "Wed, 26 Aug 2020 03:40:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -482,8 +486,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "271e15196f6b6498269aaf5feea6a952", - "x-ms-correlation-request-id": "bd073cdd-c3e8-45ef-8406-a3c4d39a2229", - "x-ms-request-id": "b8699730-2914-44ba-b9e4-555e402fedef", + "x-ms-correlation-request-id": "de12ca60-b4b2-4164-803c-793eccfc0012", + "x-ms-request-id": "25d5772d-f573-4ba4-a423-94a7cff11dfb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -534,8 +538,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb23?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-39776da694dac44cbc73d15e57c9375f-7695489171f7d645-00", + "traceparent": "00-5c1cb35036919147809a21d614c31488-ab8efe9df7da484b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -549,7 +554,7 @@ "Cache-Control": "no-cache", "Content-Length": "1101", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:11 GMT", + "Date": "Wed, 26 Aug 2020 03:40:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -559,8 +564,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7a284130b540596357ebea81a3abc502", - "x-ms-correlation-request-id": "e51aaa8a-b6b9-40ce-8f8d-48ab1a89591c", - "x-ms-request-id": "ee31ca27-d136-42c3-8ab1-f598d131319e", + "x-ms-correlation-request-id": "a2eec8bb-9374-41c0-9eac-2e7b9e70abcf", + "x-ms-request-id": "a2be4968-8be7-47e4-81c1-845aad0db82d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -611,8 +616,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwatestnb1446?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-85c7262cb47f3649ba1eb887506c742a-93f914cb474c5340-00", + "traceparent": "00-eb73a6d5d3d556469acf02708acafda9-e04803d750872e4a-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -626,7 +632,7 @@ "Cache-Control": "no-cache", "Content-Length": "547", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:11 GMT", + "Date": "Wed, 26 Aug 2020 03:40:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -636,8 +642,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "68d4d137fe4be5a893c9e47f1667d3fe", - "x-ms-correlation-request-id": "d3fd6b1c-3d32-4dcf-98de-ed5c53b1d4e6", - "x-ms-request-id": "04096c0d-700f-4a0b-8941-d9973b386cac", + "x-ms-correlation-request-id": "446e269a-5019-4ce2-9b97-fc06360d4b58", + "x-ms-request-id": "5b8d6c41-e052-4af7-9153-43bc0d30ad53", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -669,8 +675,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaCreateNbwithCell?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-878d161e87c2e44aade170b69b711b41-7ba5c0ddac10e54f-00", + "traceparent": "00-a2b74584a65a674dbebf21643357c6d9-426d64ec714f2849-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -684,7 +691,7 @@ "Cache-Control": "no-cache", "Content-Length": "1261", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:11 GMT", + "Date": "Wed, 26 Aug 2020 03:40:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -694,8 +701,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bdcb3d3cd99b64fab1c4d07f8516c07a", - "x-ms-correlation-request-id": "b87c9d67-a711-4fac-846c-8c496341b9f1", - "x-ms-request-id": "709dfdbb-fb61-4f0d-899c-40ce6dee32c2", + "x-ms-correlation-request-id": "3b1b06bd-dc97-4567-b722-bbb6c2bac44f", + "x-ms-request-id": "a7bd9260-17c6-467a-a87b-adef174bdef2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -758,8 +765,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/MyNotebook?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35fccc1249d87f46aa347a84fa55011a-fd27327feec7384b-00", + "traceparent": "00-ff1d4000ae71544aadc48dd75c709f00-b29a26fe796b454c-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -773,7 +781,7 @@ "Cache-Control": "no-cache", "Content-Length": "387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:11 GMT", + "Date": "Wed, 26 Aug 2020 03:40:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -783,8 +791,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1c28add440d132079843e677d1e443f0", - "x-ms-correlation-request-id": "336503d8-f948-49e3-a389-a7082284bb22", - "x-ms-request-id": "e53a5f95-9332-47cd-93b8-d1e88d30c9af", + "x-ms-correlation-request-id": "93cd94c3-0fe8-41de-bbd0-11a9880a190d", + "x-ms-request-id": "449dc201-e107-4bb8-850f-2e158352f60b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -801,7 +809,7 @@ "nbformat_minor": 2, "cells": [] }, - "etag": "05000591-0000-0100-0000-5f45c3870000" + "etag": "0500fec8-0000-0100-0000-5f45d9b60000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json index 1062cd9899eb4..9f3b2d33be4f6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipeline.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-5e2d06b7b5efbb409620f45258642047-8aa6d32e053e9b4b-00", + "traceparent": "00-39b2e8ed7427724ebda8e0d0fe307af6-7804536bf3875f46-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -30,27 +31,27 @@ ], "Content-Length": "378", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6626e1cdfd2e4d364a142a774c10f927", - "x-ms-request-id": "06ec3cfb-461b-406c-b731-123b18823408" + "x-ms-request-id": "cc155c23-6b8d-45d6-accb-4d00e6fed9a8" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", - "recordId": 212209, + "recordId": 212322, "state": "Creating", - "created": "2020-08-26T02:06:43.4466667Z", - "changed": "2020-08-26T02:06:43.4466667Z", + "created": "2020-08-26T03:41:11.6933333Z", + "changed": "2020-08-26T03:41:11.6933333Z", "type": "Pipeline", "name": "MyPipeline", - "operationId": "82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a" + "operationId": "34c16929-85d5-4c19-b42c-024d3a858e19" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -74,20 +75,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1297e2035eae5172b183464f0409d70d", - "x-ms-request-id": "c2740b29-9231-4206-ae18-02187f1f70e0" + "x-ms-request-id": "04075f8e-4b61-4fa1-ad97-7db2e07ba121" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -111,20 +112,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:43 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9fe7e2cfcac80d65f615888642f8908a", - "x-ms-request-id": "83339df7-0394-455e-b71a-12ead918b1e9" + "x-ms-request-id": "f7cbf282-401d-435c-83bd-fbce9868d416" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/82d19dc5-ba32-4c67-8bfc-cf02ed1fea1a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -136,12 +137,197 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", + "x-ms-request-id": "146dc681-f4b7-454d-916b-c181aa383876" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "da6dacd0d2d739517d891b99d6ec0eb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "da6dacd0d2d739517d891b99d6ec0eb8", + "x-ms-request-id": "86fedd18-ccc5-4b28-bc08-9931a4dd1c5f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f4acbbf36d96e993696641ded55e945a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f4acbbf36d96e993696641ded55e945a", + "x-ms-request-id": "194dac10-1e2e-4eda-8068-161c100b7667" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "96b5b409b58ad0b3bd39edf0cadfaa71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "96b5b409b58ad0b3bd39edf0cadfaa71", + "x-ms-request-id": "d0074439-7dc0-4e01-bb69-709375643948" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "bd133bdb17ef633e188471709073641e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "bd133bdb17ef633e188471709073641e", + "x-ms-request-id": "ecf6d691-61a1-48d1-8030-096cf4de51ff" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/34c16929-85d5-4c19-b42c-024d3a858e19?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "228fc0f577363d2e08db365c7fa31e89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:06:44 GMT", + "Date": "Wed, 26 Aug 2020 03:41:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -150,9 +336,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6a730fa3e67981795deaf406789b0cd4", - "x-ms-correlation-request-id": "61335284-3b66-4c88-8363-3f52b39e86c9", - "x-ms-request-id": "bd8be58e-1fe0-41f3-b17a-a4d2e0d61d84", + "x-ms-client-request-id": "228fc0f577363d2e08db365c7fa31e89", + "x-ms-correlation-request-id": "98b295f5-51eb-42c0-a1eb-f25b54107848", + "x-ms-request-id": "d5b7b031-d0bc-47d1-814f-af2da25174be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -160,9 +346,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-26T02:06:44Z" + "lastPublishTime": "2020-08-26T03:41:13Z" }, - "etag": "05002091-0000-0100-0000-5f45c3b40000" + "etag": "05000bc9-0000-0100-0000-5f45d9d90000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json index 8d20f01c0f1b0..442d1d07e6d14 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestCreatePipelineAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-3a3a9add73c81f42b285e2891bac0ab3-dec8f55b7e24674f-00", + "traceparent": "00-cc0851ea4b2fd342a659fe805a55efe1-da6798c4261ac943-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -28,29 +29,29 @@ "Location", "Retry-After" ], - "Content-Length": "378", + "Content-Length": "368", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:45 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2ca06a491c48e3d848f1b315763be1de", - "x-ms-request-id": "6be203f0-279f-407e-a450-b293c8b3be91" + "x-ms-request-id": "511538bb-d0cd-4698-8e98-62a13c62a3f2" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", - "recordId": 212211, + "recordId": 212323, "state": "Creating", - "created": "2020-08-26T02:07:46.3633333Z", - "changed": "2020-08-26T02:07:46.3633333Z", + "created": "2020-08-26T03:41:53.92Z", + "changed": "2020-08-26T03:41:53.92Z", "type": "Pipeline", "name": "MyPipeline", - "operationId": "07851d4f-9cb1-4b6e-b871-c4cd96d12dba" + "operationId": "f9f11eff-a855-4f26-8275-02d31c4684a7" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -74,20 +75,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "df555f1bc3b8ead5fe567256f9079112", - "x-ms-request-id": "2d572f07-2b6f-43ae-a7d0-a3c061433966" + "x-ms-request-id": "485b54c7-c6c1-4841-8f40-546cf87ee4ae" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -111,20 +112,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aa209ff1052668b497fbe63b01770c38", - "x-ms-request-id": "9e625828-85a6-4549-9235-8d89d93037b8" + "x-ms-request-id": "60de0fd5-dc67-4e75-a207-aa2af26f2fde" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -148,20 +149,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "16fad82701e58a26ba1f7a6d6e7cac3d", - "x-ms-request-id": "c74ce0fd-7625-4b95-ac44-736e150fe9a0" + "x-ms-request-id": "274f56c8-12cd-41ac-9ffa-977f28bd40db" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -185,20 +186,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3770087b1fef15b4abed48bddc9ae887", - "x-ms-request-id": "f75e9977-2bf1-49a0-92c9-69fee5c7109a" + "x-ms-request-id": "4d9d7458-40a3-4135-b495-72b06da33666" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -222,20 +223,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:46 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "202f3a497b0cef2d7895ef068b46fa1b", - "x-ms-request-id": "eb0ba955-9bf1-4890-be70-12c8f1446309" + "x-ms-request-id": "7b6ac9f5-6cde-4d73-8c2a-d5614efdc732" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -259,20 +260,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:47 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f9bfa94fd507074924e56af8b969ae1f", - "x-ms-request-id": "8b10a97e-0e90-4a36-9fdb-e05a6ec2518e" + "x-ms-request-id": "b2f608b5-2dea-41ec-92df-1186b3c806dc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -296,20 +297,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:47 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3323f2368b4cff30db80be592fad8a65", - "x-ms-request-id": "553faaf2-8b11-4540-82dc-96c2014b58c6" + "x-ms-request-id": "78dfbb96-68ba-489a-aa2e-c9a0c2e27c37" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/07851d4f-9cb1-4b6e-b871-c4cd96d12dba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -321,12 +322,308 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", + "x-ms-request-id": "e1f77e3c-7717-4ec7-b85e-29c9c0368e7f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "98d0d0e7c623c3ce78bf1e8617efd776", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "98d0d0e7c623c3ce78bf1e8617efd776", + "x-ms-request-id": "fafcda04-04ff-4ed6-9dbd-82d8ead227dd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8c05055a7bfb474472af42248f09efa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8c05055a7bfb474472af42248f09efa6", + "x-ms-request-id": "4a77b4b5-68ab-4e76-8727-2d4e803e4a63" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "5f72ae4bf2dd2c425eaabb1bd0fa5c01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "5f72ae4bf2dd2c425eaabb1bd0fa5c01", + "x-ms-request-id": "e0c92169-7f30-4290-a1be-f86ca0cc05fc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "0bcd8551a82f6c148b88267383a9346f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0bcd8551a82f6c148b88267383a9346f", + "x-ms-request-id": "a778e7e8-ed13-4ce8-82ee-e690ce9a1d64" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "683a78d0777c6899c3d92d50c0297777", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "683a78d0777c6899c3d92d50c0297777", + "x-ms-request-id": "f29c927b-31f5-46f4-8109-9b53ec7ef397" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "09d34053e43ba2769a06d454cccea8b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "09d34053e43ba2769a06d454cccea8b5", + "x-ms-request-id": "b31d30d6-ba29-4b42-a7e9-280562fdfeb9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "584a4c76f3bfd985eb6547567bc3ac62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:41:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "584a4c76f3bfd985eb6547567bc3ac62", + "x-ms-request-id": "51a46740-adef-45c2-a82e-b56e5f869180" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f9f11eff-a855-4f26-8275-02d31c4684a7?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "421fae112ad6ec330198ce76a3449bf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:47 GMT", + "Date": "Wed, 26 Aug 2020 03:41:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -335,9 +632,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "336e2df2efdb7380f128fc271034350f", - "x-ms-correlation-request-id": "51d115c0-903e-433f-ac07-d99f9eb828d1", - "x-ms-request-id": "dd737670-5177-4a9d-8a0f-34e291ae3402", + "x-ms-client-request-id": "421fae112ad6ec330198ce76a3449bf4", + "x-ms-correlation-request-id": "f67073bf-b85d-4565-87f8-39940ff52ec7", + "x-ms-request-id": "5908c1d1-f6a7-4ae5-b073-338683d474d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -345,9 +642,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-26T02:07:48Z" + "lastPublishTime": "2020-08-26T03:41:57Z" }, - "etag": "05003b91-0000-0100-0000-5f45c3f40000" + "etag": "05001dc9-0000-0100-0000-5f45da050000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json index 92e348d550a0b..514da55b6e46f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipeline.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b9495ebc5942484eba15cbe65eb06ebf-fb1bb03404c66543-00", + "traceparent": "00-0251ed4bcc0d0b489e64ba935eef0d3a-35984b974b354b42-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "031bbc1197fb2d70cbe02899c84e00ad", - "x-ms-request-id": "71fa7c23-cd4a-4dfa-b9c5-6b8da003eed6" + "x-ms-request-id": "fa2bc39f-dbf1-4f00-b4a9-2654f05c367c" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "MyPipeline", - "operationId": "ccfe0689-c928-463c-9734-8c8fd9b127d6" + "operationId": "fbe00575-3667-4c0b-bed3-aa5061ce72a6" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4862b8ad12b28ef0432e5352d565e9b1", - "x-ms-request-id": "af286c79-6799-42cc-adb8-9528a962ac2a" + "x-ms-request-id": "7c989da4-02f4-4d64-9b6c-d8e9ef671656" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:28 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9a3c618e61a88b298358f54717201304", - "x-ms-request-id": "e346bfcc-6fd1-44c8-b11a-4cf0edc18f3e" + "x-ms-request-id": "89239415-5f62-4bdd-8098-70b751e709c3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:29 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "10eb6855b8ebaffa1ec1918932e7eda9", - "x-ms-request-id": "8f14aa44-45eb-4d15-a5ef-28239dae5eb5" + "x-ms-request-id": "b1f8f612-4f4a-47a2-b6dd-3c6652cab1e8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:29 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b8c1cecaf0894c178ed7c45a1da97623", - "x-ms-request-id": "271022cf-9da2-47aa-b301-ee34c235c744" + "x-ms-request-id": "27acc144-ec69-468c-a553-8efe946a3dcf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:29 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6dfc4e1bd979d6c5668d7ce6cfa0589c", - "x-ms-request-id": "df6daa24-4461-4089-b9d5-08e8f29572f7" + "x-ms-request-id": "4c9606fe-6af0-4278-9a8c-b7e4db360415" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:29 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "487d4b6a5a5e657b509f8113f3a09175", - "x-ms-request-id": "bdec09b9-def2-4eeb-bea1-c0ab61d04d6f" + "x-ms-request-id": "64a519af-16ed-4990-8884-be7c592906f6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e46d6e4a80eaf03009eb52fb73307cee", - "x-ms-request-id": "929aee81-4c9e-410a-a016-f5df5e138550" + "x-ms-request-id": "051acc0f-4017-44ca-a60f-1c9ad72a1175" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d1ef287e2e2bc1c5d3961cda57b1e2c6", - "x-ms-request-id": "cf5cdb50-e23c-4bb8-a58f-8a122abedc64" + "x-ms-request-id": "676ed927-acb8-4d60-8ab5-8beccb1629c1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "619c07fc7432eab11b8d3f72077ff220", - "x-ms-request-id": "934f0be5-9ecf-4e79-b551-32a4a46e8975" + "x-ms-request-id": "f0cc0df5-7a4a-4364-bc5a-de09d80ece08" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -396,20 +397,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cb959222c0b11c4aa9ac105463559957", - "x-ms-request-id": "3a6b32fe-bb48-493a-b449-22002636d1b7" + "x-ms-request-id": "ab363002-2d51-4e42-a3e1-796c49204c2d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -433,20 +434,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:30 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:41:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6bff8c091b940abc7604b59eee52b953", - "x-ms-request-id": "2b807c34-3f9a-49b1-a1d9-7c7c92fa5027" + "x-ms-request-id": "b25aaba2-1de5-4323-a6b8-b713c2a3bb8c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fbe00575-3667-4c0b-bed3-aa5061ce72a6?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -458,458 +459,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c4b8fca4161c3b15bd7fb885635d87c6", - "x-ms-request-id": "f002d94d-cd93-4a41-bea1-46ff0646e0e3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7b69e8f3867f068bd68a55ac0aac2e56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7b69e8f3867f068bd68a55ac0aac2e56", - "x-ms-request-id": "e9be3824-86c4-4968-a67e-d07cbb52ba2a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "67afbcf3d49df23a77c3ae156236a618", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "67afbcf3d49df23a77c3ae156236a618", - "x-ms-request-id": "27ed73f6-42fd-4265-9f30-34951c6e5c77" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "05aaef7d3de91ed470b1ee91c1683111", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "05aaef7d3de91ed470b1ee91c1683111", - "x-ms-request-id": "257f5313-e44b-454e-8963-5ed12d932cff" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a69262501fad1f28ad7704bbd775a49f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:32 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a69262501fad1f28ad7704bbd775a49f", - "x-ms-request-id": "fc626a96-c51b-4e0c-92be-0d2440e76af5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1a2e3ce42801b56de891f6ece6a9300e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1a2e3ce42801b56de891f6ece6a9300e", - "x-ms-request-id": "e104322d-2d5b-4224-8bb7-20d3b8e2f48d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "00c49d9200a45e6bc78a5771391846fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "00c49d9200a45e6bc78a5771391846fa", - "x-ms-request-id": "722930f7-690d-4137-9466-51a72cd0f0f5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "85ad4e0c1739280ff4dcbd1b283c3904", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "85ad4e0c1739280ff4dcbd1b283c3904", - "x-ms-request-id": "c5fa7d01-cbc7-468b-88ca-d95363a0eb10" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3a29f546a3b1e3fbd1d05377d0fb7cd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3a29f546a3b1e3fbd1d05377d0fb7cd0", - "x-ms-request-id": "3436ee68-8a00-4002-9b55-ff93432c4e44" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "98dffb4baafb7bd48d9c0cc8424f358b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:33 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "98dffb4baafb7bd48d9c0cc8424f358b", - "x-ms-request-id": "087b267e-5469-4945-843d-8982704b5f5f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "442a53510cee694952c9b469c39857f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:34 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "442a53510cee694952c9b469c39857f8", - "x-ms-request-id": "fc862caf-ec9f-4ed6-8868-bf97b67748f4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2cd0ed60a05c9c0920aeac149733a181", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:34 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2cd0ed60a05c9c0920aeac149733a181", - "x-ms-request-id": "f376b8a5-abdb-4783-90ec-dd1168ead0fb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ccfe0689-c928-463c-9734-8c8fd9b127d6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7d25c79a38d13fe1b2764531f66bb7f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:07:34 GMT", + "Date": "Wed, 26 Aug 2020 03:41:39 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7d25c79a38d13fe1b2764531f66bb7f5", - "x-ms-request-id": "2b5919e7-d980-4e6b-992b-f9a1d75d2830" + "x-ms-client-request-id": "c4b8fca4161c3b15bd7fb885635d87c6", + "x-ms-request-id": "16c1d7f2-6a92-4fe8-81cb-209c1b00b8e3" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json index 1da5529481f6a..35cdc4b971337 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeletePipelineAsync.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a1e651731e80564e8e6a3b1a8eab9e8a-69e8af6eac10d748-00", + "traceparent": "00-8ec487e08dbb3d4b9ea2e09760be547d-e49a7455aebcf14a-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8e3fc6ae697667b8aa3545698df1c49f", - "x-ms-request-id": "175e7f3a-d01a-438c-bb34-634be53dc7a9" + "x-ms-request-id": "a29390d4-6252-4d0f-b7f0-8ec9258df713" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "MyPipeline", - "operationId": "a9bfc85c-3fa8-45cd-bc61-4288deb58514" + "operationId": "1bda3b97-78b3-4b1d-998e-c352790d3320" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:09 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9575055aad89ca71abf297ab32176a0b", - "x-ms-request-id": "4c5dd879-44e1-46e7-a187-a0dbae47feda" + "x-ms-request-id": "87d372ab-bf59-49ea-835e-319ef4c58a42" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1d70a21250593bfff286793ba2c8eb72", - "x-ms-request-id": "024fd64e-4009-457f-9f4f-928d2c0bf1e9" + "x-ms-request-id": "58487075-9528-49ec-8b44-74fa2eaa9e3b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "880fffc62e7ba8155527f523dc2887fd", - "x-ms-request-id": "c1318313-83b6-4626-810f-f38b7efc0a31" + "x-ms-request-id": "e0eeab8d-ddd3-47bb-89f2-f8b622e084ce" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dadcbbd051c709ec053aa303343628e2", - "x-ms-request-id": "c632c1fc-ad5b-45c8-8f33-09cd87db316e" + "x-ms-request-id": "bc709bcf-9648-4cd9-ba10-d1a495100086" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -211,20 +212,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:10 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "32e42407e208e3908cc8c8325bdc5fca", - "x-ms-request-id": "e4c16276-1e87-4c35-a188-ba78cbf79585" + "x-ms-request-id": "e339ef4c-9fc3-4436-98dc-03f1e67209c8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -248,20 +249,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e66b7bff10ec74aa120582418b12731f", - "x-ms-request-id": "a040f196-5ea2-4dff-be68-e38e78e47e88" + "x-ms-request-id": "965dfc9d-8931-479d-ada9-f177b87fbdd6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -285,20 +286,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b71b12fe5444eef52bf84dff89b9ae28", - "x-ms-request-id": "c66a826c-9a4e-4b84-b497-f72d715e3676" + "x-ms-request-id": "7f4b07fb-d7c5-4272-822d-32348d0b4873" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -322,20 +323,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b804d9db41cbf7f67a6f1f025f4f587a", - "x-ms-request-id": "2faa3fda-65de-4fe3-8a6d-667ec9ca0281" + "x-ms-request-id": "ea0358ff-163d-4473-9150-c9baa96c0cad" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -359,20 +360,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4833a954a7c1aa85867cbbf3c2aaeb58", - "x-ms-request-id": "87397bff-f249-4e83-ae2d-d89095b11e40" + "x-ms-request-id": "6433ffba-a9f9-4aec-8e53-cb704da2207d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -396,20 +397,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:11 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b2655956bb0dbc531c243dd434f28fdc", - "x-ms-request-id": "dc7ca3db-d683-4c1e-8fdc-3be8109ba152" + "x-ms-request-id": "e84e41d2-9a81-4a0c-97fb-99959672f775" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -433,20 +434,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dfabd3a0668633675359314e860234cf", - "x-ms-request-id": "299479f2-e603-4951-a4f0-cdfa0b125222" + "x-ms-request-id": "ec24fd59-968a-4cac-aeda-671fd98568e5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -470,20 +471,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "05acc683a5e9996c55762b9d6ab07593", - "x-ms-request-id": "e7b2e02f-3b6c-4f27-b43b-1899873dbffa" + "x-ms-request-id": "b4655f54-5859-41b8-af56-eb4feed4bf71" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -507,20 +508,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ef52dfed0cffefd2f2315fb389053619", - "x-ms-request-id": "45f01cce-3c6f-4aab-9e35-71514542c45a" + "x-ms-request-id": "5f145a16-bf18-482d-92e1-36eadb2729e2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -544,20 +545,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:12 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6e516def8946faf266128a0f3bcac9a2", - "x-ms-request-id": "a6ae7853-7a1d-46c5-96e4-78fab5949c05" + "x-ms-request-id": "4b9977df-727e-402b-9959-ad9f184c5ffc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -581,20 +582,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a7609ee445b077d0f3bc13b746b90f4f", - "x-ms-request-id": "09debacf-3463-43c9-9ac5-cfcb65cfb3da" + "x-ms-request-id": "d6fe0932-1b17-4964-a908-75297ced03ea" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -618,20 +619,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fcad1140075f644cec5788ed81c3b428", - "x-ms-request-id": "827b0916-725a-45ee-807e-d0c24e7a9257" + "x-ms-request-id": "a15097c1-31ba-42cb-bb87-3de98bc09140" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1bda3b97-78b3-4b1d-998e-c352790d3320?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -643,162 +644,14 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ebcfbc688ea4aa699dd97a8a763ab4ad", - "x-ms-request-id": "0dfccbd1-df5e-4055-ad1a-499cc9eb0b23" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "29ce3a02cc1cdc4251fcbb58bce2f530", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:13 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "29ce3a02cc1cdc4251fcbb58bce2f530", - "x-ms-request-id": "1dbdee0e-dfdb-426a-bfb4-f8527e29b79c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "894fea0724eab1aba8025e868dc2eeb1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "894fea0724eab1aba8025e868dc2eeb1", - "x-ms-request-id": "53f157fd-362e-4cc7-8d5c-9a761bde6395" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "47eadba38bf49c0b7af399a8d311edba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:14 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "47eadba38bf49c0b7af399a8d311edba", - "x-ms-request-id": "b6c27c9c-7190-4067-b4e3-28385604ceb4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a9bfc85c-3fa8-45cd-bc61-4288deb58514?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8b8249e32aebdec28f1d80196dbc4e8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:08:14 GMT", + "Date": "Wed, 26 Aug 2020 03:42:20 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8b8249e32aebdec28f1d80196dbc4e8e", - "x-ms-request-id": "aaa13936-10ea-4dd6-b87b-19f8428cbc4d" + "x-ms-client-request-id": "ebcfbc688ea4aa699dd97a8a763ab4ad", + "x-ms-request-id": "f1fe1549-3ec8-41f6-93b0-2e9d854aae58" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json index 7d26f410fde5b..8a4d530301d4b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:02 GMT", + "Date": "Wed, 26 Aug 2020 03:41:22 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "33fb91d27c5a3010474b58bf2270acbd", - "x-ms-request-id": "9f4d3466-051a-4604-be7f-6d658c349ae8" + "x-ms-request-id": "094ac209-8842-4f1e-93c7-b5014e98647b" }, "ResponseBody": { "value": [ @@ -172,9 +173,9 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "05002091-0000-0100-0000-5f45c3b40000", + "etag": "05000bc9-0000-0100-0000-5f45d9d90000", "properties": { - "lastPublishTime": "2020-08-26T02:06:44Z" + "lastPublishTime": "2020-08-26T03:41:13Z" } } ] @@ -184,8 +185,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-56df02f3f26b89489f58670ae5870984-68636dccc5481040-00", + "traceparent": "00-9f48a08e01b2804a896e3b8af032eccf-f5fbd3c161ac7240-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -199,7 +201,7 @@ "Cache-Control": "no-cache", "Content-Length": "652", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:02 GMT", + "Date": "Wed, 26 Aug 2020 03:41:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -209,8 +211,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "eb51ee2b1608ec5afe9637bbb301e7f3", - "x-ms-correlation-request-id": "f635d60c-56aa-4550-aa1a-dce5a7b4c9d1", - "x-ms-request-id": "0af058df-f145-4c2a-8816-8ac7640f18a4", + "x-ms-correlation-request-id": "edfb7850-6cab-4eee-ba6f-ca88105abf5b", + "x-ms-request-id": "a719150f-e5c9-4301-a8f4-84454b9ca656", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -249,8 +251,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8572?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-688cf3abc8ad11418b499cabc3350daa-f8021a7a6dd93040-00", + "traceparent": "00-940858e4374b9848a22918a4261188c3-d3e6d86f29bb5d46-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -264,7 +267,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:02 GMT", + "Date": "Wed, 26 Aug 2020 03:41:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -274,8 +277,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5ed53bdd4eb4a73dad230e2ab58d4037", - "x-ms-correlation-request-id": "58f749ba-6a85-4374-b797-59361b1c906e", - "x-ms-request-id": "af397b0c-69a9-4c16-a4a3-df5296d1a2b3", + "x-ms-correlation-request-id": "a4637ab7-c35d-4b54-9ed3-7bd3ef8bf620", + "x-ms-request-id": "c22c37e7-7532-48eb-aaaf-63b585165374", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -299,8 +302,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6637?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9fa868370234fa46a2580ccabfa7e7a9-6df27a59614acb46-00", + "traceparent": "00-3b72c3b73d1ba842a5d024fd1f305537-f82228ca4acbc448-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -314,7 +318,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:02 GMT", + "Date": "Wed, 26 Aug 2020 03:41:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -324,8 +328,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a50beeede95ebc2a370e35c344557c46", - "x-ms-correlation-request-id": "c611ba58-92e3-4631-a715-f436a3859144", - "x-ms-request-id": "fbe7d76a-6bac-4a61-bdf2-e4561ea8172f", + "x-ms-correlation-request-id": "9eeb44a4-0e8d-46a9-9bde-acd8267318c9", + "x-ms-request-id": "871cdd54-29df-4345-9d51-412483c5430d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -349,8 +353,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_5633?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c4205ea0d3b2e445b4eddcd422e56bba-57ae31bcf3294b4a-00", + "traceparent": "00-580f0f1750ef6546975d8f0a43aa58f5-f1602d705290324d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -364,7 +369,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:03 GMT", + "Date": "Wed, 26 Aug 2020 03:41:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -374,8 +379,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e6e265644d9bdc09b0aa3de408303770", - "x-ms-correlation-request-id": "3e4cdeb8-9e60-48e4-a0d9-8332b3c560f0", - "x-ms-request-id": "36aa14f8-9abe-466e-a884-43c64c67658a", + "x-ms-correlation-request-id": "d6275dc2-6dd8-42ee-833f-0ca312b6df10", + "x-ms-request-id": "2fbcdff0-a87e-4dc2-9e14-91d089b89d0e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -399,8 +404,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_7898?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7fb106e50eb71946bc568dfd6b18fe12-ce884e9de7411043-00", + "traceparent": "00-8b960b0941539241896c3ba17770b94c-bda75f924c855041-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -414,7 +420,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:03 GMT", + "Date": "Wed, 26 Aug 2020 03:41:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -424,8 +430,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c4ceff5541f5f394111927a5187a6258", - "x-ms-correlation-request-id": "6c6b7949-2457-45fa-9cf5-4ea4d1290fb1", - "x-ms-request-id": "b1d7b01c-f4a6-4697-a63f-13b16ee94cff", + "x-ms-correlation-request-id": "6c46d82f-4b86-4e95-b0aa-4d3a3b71e0c6", + "x-ms-request-id": "0a3b9f7d-802c-4cf8-9387-60a20cae6291", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -449,8 +455,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_1795?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b9f058b6b9e9434b9707d6167efb26e4-39b5d5e5bec72e48-00", + "traceparent": "00-e1c73ff0aee0a247a8b1724c23c22ebf-4bff73f8813bdc4b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -464,7 +471,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:03 GMT", + "Date": "Wed, 26 Aug 2020 03:41:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -474,8 +481,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4fc5c7a75aaa9f9ce52ef4b4ab45b306", - "x-ms-correlation-request-id": "793c5516-c2de-4598-8159-2aeeb5f1d926", - "x-ms-request-id": "2f43e42c-7171-4f51-a327-2c1d774b128e", + "x-ms-correlation-request-id": "27953806-96a8-4e1e-81dd-13aedd68ee76", + "x-ms-request-id": "a6d65319-8b1b-440e-87c4-927ef51744fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -499,8 +506,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6157?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-86cf79c598f0d749b5f09570af0b045d-400f93712d29a84a-00", + "traceparent": "00-89ebcb6afabe8a4bae654d0fb9dfaf25-a89999afde3ec249-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -514,7 +522,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:03 GMT", + "Date": "Wed, 26 Aug 2020 03:41:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -524,8 +532,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "446dc4d7b8872251d0eed5812663c436", - "x-ms-correlation-request-id": "aafd4f5d-d0bf-43a6-ad8f-a64ad53eda10", - "x-ms-request-id": "00d07e02-1f71-4523-9bfb-eb3841ce7158", + "x-ms-correlation-request-id": "7a999ebb-6ad0-47a3-8056-fbb75f84f8ab", + "x-ms-request-id": "f88d14b8-1a2e-4a32-9f6e-971cf421b2d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -549,8 +557,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8864?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-89c4d89fca21c040b8cad6c13c3c66e7-444e743e29db734d-00", + "traceparent": "00-0c4031d8163a8849b429ae5e6cf4bd75-a0b7ec99ae9bbd4f-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -564,7 +573,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:04 GMT", + "Date": "Wed, 26 Aug 2020 03:41:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -574,8 +583,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "403de547e76bfbc6632edec64cdf48cb", - "x-ms-correlation-request-id": "ea214bbf-cb79-418a-b46f-ae20b0a174fe", - "x-ms-request-id": "e88ab633-c3e3-4cb6-8030-14b6c225419d", + "x-ms-correlation-request-id": "b250f75a-f93f-45e4-af8b-ef718c655b97", + "x-ms-request-id": "2bf0ee40-f18c-49ee-93c7-1c7f203dc15e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -599,8 +608,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5837cdebbf4dba41918f6442c981a402-48f8c25e26f56548-00", + "traceparent": "00-392e6397955e9046aa7622cd4cc0765d-6139d5b21a172e40-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -614,7 +624,7 @@ "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:04 GMT", + "Date": "Wed, 26 Aug 2020 03:41:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -624,8 +634,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "53ce21651d0cefd076a27ebb841a7982", - "x-ms-correlation-request-id": "3a4ed417-d135-4661-a651-16c8214969ae", - "x-ms-request-id": "5b7be439-cdac-44c1-ac87-7bbadf4888fe", + "x-ms-correlation-request-id": "804a42da-1715-4ad5-88aa-b65a8e91bfe3", + "x-ms-request-id": "b1e434fd-c943-426c-b811-5578083b6924", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -633,9 +643,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-26T02:06:44Z" + "lastPublishTime": "2020-08-26T03:41:13Z" }, - "etag": "05002091-0000-0100-0000-5f45c3b40000" + "etag": "05000bc9-0000-0100-0000-5f45d9d90000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json index a1b8e1750b636..65450c89006ed 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:57 GMT", + "Date": "Wed, 26 Aug 2020 03:42:06 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fdc6e542e37e5e08c973bcea091afcd3", - "x-ms-request-id": "b0d3e924-e3df-463d-8d77-6748f1521082" + "x-ms-request-id": "93f10d99-3809-49ee-8d25-4e86c863a74f" }, "ResponseBody": { "value": [ @@ -172,9 +173,9 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "05003b91-0000-0100-0000-5f45c3f40000", + "etag": "05001dc9-0000-0100-0000-5f45da050000", "properties": { - "lastPublishTime": "2020-08-26T02:07:48Z" + "lastPublishTime": "2020-08-26T03:41:57Z" } } ] @@ -184,8 +185,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1e6ccd5cb568ea49802c2f46a0ba8493-564c69da8463ce4b-00", + "traceparent": "00-aa2e22bcbc3b134bb0032e28bcad72fa-ac3c5f21530e284e-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -199,7 +201,7 @@ "Cache-Control": "no-cache", "Content-Length": "652", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:57 GMT", + "Date": "Wed, 26 Aug 2020 03:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -209,8 +211,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6be4bf56645b387ef2a76c787d751108", - "x-ms-correlation-request-id": "cc2d952b-3820-405a-afa2-51a72701ef22", - "x-ms-request-id": "57c2fb0f-7405-4ab5-a8f2-a446e368b221", + "x-ms-correlation-request-id": "be2aa749-ef56-4f5d-9617-24bb9dd657a1", + "x-ms-request-id": "7b3d5198-38eb-4665-9dc4-361526e634c3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -249,8 +251,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8572?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0af221dd4203d84fad34847e523cfc9a-814f8eecf251dd4c-00", + "traceparent": "00-a66ebdcb542dc842935eddc9869e5852-3943f289b5012145-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -264,7 +267,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:57 GMT", + "Date": "Wed, 26 Aug 2020 03:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -274,8 +277,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "12029322d074c422233f038cde1a41df", - "x-ms-correlation-request-id": "d179d0bd-d73f-4e3a-9ac2-7bf54a34256f", - "x-ms-request-id": "cb94ed61-598c-4171-aac7-c1dfa9fadbdb", + "x-ms-correlation-request-id": "08f628f3-6cec-4732-94f7-a53c726fa76c", + "x-ms-request-id": "4a3b5759-dd4f-45f4-91a2-12b6ee139009", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -299,8 +302,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6637?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1070808efc096f4488a84f2fd2b1c66c-0392156feda53944-00", + "traceparent": "00-2136ba41e6230c4eadbc8a7cf3689479-a100df5bd4637a42-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -314,7 +318,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:58 GMT", + "Date": "Wed, 26 Aug 2020 03:42:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -324,8 +328,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8014551f9366de1e678d0ad7778fe154", - "x-ms-correlation-request-id": "2f74292f-55fc-4479-8881-66b51c110385", - "x-ms-request-id": "c635adb5-1078-47e9-89a6-cd9dc83c6f6b", + "x-ms-correlation-request-id": "e98ba1ec-13ff-4708-9001-345553a5c97d", + "x-ms-request-id": "56c34acf-acd0-45ea-b5fb-99183ad7c4d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -349,8 +353,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_5633?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4f9135fa418e5c41b01530ba810eca7b-64a6d8ef813ea147-00", + "traceparent": "00-f5f5db70e988934aa9bd29fa53b09afa-f745c2cbfa7ecb42-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -364,7 +369,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:58 GMT", + "Date": "Wed, 26 Aug 2020 03:42:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -374,8 +379,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "76c8b462e918855f9c20471b60f159d7", - "x-ms-correlation-request-id": "e2a19586-1f32-4e99-b194-7eca69e5b76a", - "x-ms-request-id": "97d0d030-c192-4c81-affd-ef6adbdb2486", + "x-ms-correlation-request-id": "c69c9f29-765d-44c1-9bda-dc1eb32ac636", + "x-ms-request-id": "4ab7b0c2-e03d-427e-a2af-a9b5c57b20d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -399,8 +404,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_7898?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ab83e1906f08cc49b6610fb5a4fd8578-be1ee10aac532b48-00", + "traceparent": "00-b8a7740fcd71b94d95d7dc9c4945b54b-5cf42523da2cca44-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -414,7 +420,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:58 GMT", + "Date": "Wed, 26 Aug 2020 03:42:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -424,8 +430,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "27598d6591608fa17423abe6c54b4d93", - "x-ms-correlation-request-id": "6c11ac07-fc87-4b46-b265-9b076ed108ef", - "x-ms-request-id": "38cc3b87-071e-4305-9a8e-8307557a116f", + "x-ms-correlation-request-id": "76f6e7b9-9204-4e9a-8423-b8ae924a15ae", + "x-ms-request-id": "f1fb1e95-eb39-4455-b7ed-7e2dea9a60f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -449,8 +455,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_1795?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fb9c5dfef089a74089b6037cce7fd5ec-b7c62f9c4008c34a-00", + "traceparent": "00-e1c8d2e5010ed24ca21a66ca3f15df85-3d34ffebfc77ef49-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -464,7 +471,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:58 GMT", + "Date": "Wed, 26 Aug 2020 03:42:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -474,8 +481,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2a2aaf5ecb5235c6f68ee3454b027d76", - "x-ms-correlation-request-id": "e6db1978-caf8-4b56-bf56-bd95fa4953b5", - "x-ms-request-id": "d89b8636-f7ca-46a6-be8b-d7a3247c1469", + "x-ms-correlation-request-id": "135b9a35-26e1-4332-a53d-13c2a1c23cc9", + "x-ms-request-id": "4df360ea-a364-4920-815a-4146b2bc499a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -499,8 +506,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6157?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fdd81d5b8254fc4f925112209c023606-cf13d589f7a4f14e-00", + "traceparent": "00-9585faa7ae7a31429f192c5d77e21436-8e69f37422f8e641-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -514,7 +522,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:59 GMT", + "Date": "Wed, 26 Aug 2020 03:42:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -524,8 +532,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e9713333b936d0f3123901f43e79c051", - "x-ms-correlation-request-id": "bb4dda17-85cd-409e-b97e-9662f96dc354", - "x-ms-request-id": "2e8ef209-6159-462f-b57d-67671a41c3da", + "x-ms-correlation-request-id": "1a07bcce-95cc-45ed-b875-60bade07f015", + "x-ms-request-id": "dabf152d-9225-4b59-9afc-f4f92388ec5c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -549,8 +557,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8864?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-48b283affc9d164b81670c62276f7902-0107d79145843d40-00", + "traceparent": "00-83e25800d58b29438dd1dafa9322a732-5e0d79ba411a5741-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -564,7 +573,7 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:59 GMT", + "Date": "Wed, 26 Aug 2020 03:42:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -574,8 +583,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b1bdb4d32fc69984c62331d2ae5b4372", - "x-ms-correlation-request-id": "3488843d-3d21-498f-b15f-5fa276f7c2f7", - "x-ms-request-id": "2a1a6b40-e00a-47c0-9c56-1788160fa390", + "x-ms-correlation-request-id": "b7c8a2be-f54e-4b8c-9247-2b52e3b80629", + "x-ms-request-id": "6a13b33c-3ee3-472c-8a6d-1a1ff5d56876", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -599,8 +608,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2c6d0496d8bb1647b5f6411e35cd98ce-05655d56afa46543-00", + "traceparent": "00-420a1c8f4132f24381d3316a06487c22-3a7148bc85f7e64a-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -614,7 +624,7 @@ "Cache-Control": "no-cache", "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:07:59 GMT", + "Date": "Wed, 26 Aug 2020 03:42:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -624,8 +634,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "91b234a663d9a45cbc591719cad2f67c", - "x-ms-correlation-request-id": "19fcaebc-be5c-417f-abb1-98ca0bd21d05", - "x-ms-request-id": "d66c3762-3a6d-4ebf-b4cd-c680c7a4b19d", + "x-ms-correlation-request-id": "11b61b3a-0efc-4e0d-9044-d7902e5d1f0b", + "x-ms-request-id": "37eb4edf-2ae6-4b1c-9b49-e9d84897b433", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -633,9 +643,9 @@ "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-08-26T02:07:48Z" + "lastPublishTime": "2020-08-26T03:41:57Z" }, - "etag": "05003b91-0000-0100-0000-5f45c3f40000" + "etag": "05001dc9-0000-0100-0000-5f45da050000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json index d2f4c1da72284..678718562225f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTrigger.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "33", "Content-Type": "application/json", - "traceparent": "00-015a0a2dddf4fb43ae8ac92ca31caaa1-8a09cde8f02ae944-00", + "traceparent": "00-b04cdf6b7b3148478c973cd734e0a028-d3cf0424e76b1d40-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -30,29 +31,29 @@ "Location", "Retry-After" ], - "Content-Length": "374", + "Content-Length": "364", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c1d95cced0706a0477a2c5155033e673", - "x-ms-request-id": "59e91859-27bc-4baf-bcce-354a4de07461" + "x-ms-request-id": "58b3d455-72eb-4111-8b77-8d1a59094d72" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", - "recordId": 212214, + "recordId": 212324, "state": "Creating", - "created": "2020-08-26T02:08:25.7833333Z", - "changed": "2020-08-26T02:08:25.7833333Z", + "created": "2020-08-26T03:42:31.69Z", + "changed": "2020-08-26T03:42:31.69Z", "type": "Trigger", "name": "MyTrigger", - "operationId": "46e09d2a-6711-4be8-b00a-8400c98c8395" + "operationId": "74d843bf-9bbb-48b1-b514-a1f510a5cff7" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -76,20 +77,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "22017afd526e3e3a6025e0d85ebd8bf7", - "x-ms-request-id": "d945bfb9-3dfd-45e2-9030-2c711bd035bb" + "x-ms-request-id": "e3472fbc-7d53-4a69-ad52-fd5916d2b855" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -113,20 +114,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3de4d122dc23750d26d2678a6c061291", - "x-ms-request-id": "db08fdc2-6c97-4181-b209-235c7a46ab7d" + "x-ms-request-id": "4aaa319f-14e0-428e-a9f4-e71bf6672849" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -150,20 +151,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d51758b9c4315b05af1ec9ae775da79c", - "x-ms-request-id": "d5a33419-0af6-4022-9edb-025c62c53b8f" + "x-ms-request-id": "dad533ca-2488-4e7b-817e-fb7fd32a7a1a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -187,20 +188,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "86da6b5aaa0121496c8cfb9bebb0d259", - "x-ms-request-id": "5439a413-7403-43e4-bbce-76dc21160023" + "x-ms-request-id": "749eaa5f-5d63-45ec-a8ef-05b3d59b0159" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -224,20 +225,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "061e4e12b5a65ec6cb888d05125ffdc8", - "x-ms-request-id": "66cd92d8-6cbe-4c51-9c28-4c9713122254" + "x-ms-request-id": "11e4eb0c-8c4b-4251-b546-d9961fc7306d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -261,20 +262,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "012fca2b8b2c0f900ef569a5c86a70ff", - "x-ms-request-id": "d5abb93c-a39a-4ebd-8cbe-a8a999a00616" + "x-ms-request-id": "0d73bf9a-9d3a-4182-a649-47ade6f6b1ed" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -298,20 +299,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "289b6f4ca13fa5f5a47bbb781c430e0c", - "x-ms-request-id": "b95e7ee7-ea0d-4d7e-8668-d6426a457935" + "x-ms-request-id": "1117d83d-1464-4d82-9bcb-f1333b35678e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -335,20 +336,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2070328ed080872cbe0ef7b14b219660", - "x-ms-request-id": "715283b8-548a-4892-a197-82a3bd7c5427" + "x-ms-request-id": "308a479a-94c8-4019-a2ba-d92ffade329b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -372,20 +373,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a3b98e18d4c38989d48a5cb1d018f2ca", - "x-ms-request-id": "261bc1a9-4894-4554-a855-3be3fa384f0b" + "x-ms-request-id": "9bfb19ca-d6b1-45b7-a66c-64909e8812ed" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/74d843bf-9bbb-48b1-b514-a1f510a5cff7?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -397,86 +398,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "95175ce64ffa7b7f42146a30aa445983", - "x-ms-request-id": "bbde664a-9498-4435-8f8b-95f8112f5a98" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8e5f5ae46b8ab949a9e64bf5747bb7a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:27 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8e5f5ae46b8ab949a9e64bf5747bb7a6", - "x-ms-request-id": "8bee337a-c0ac-4ffa-a590-213bc1c9395d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46e09d2a-6711-4be8-b00a-8400c98c8395?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:28 GMT", + "Date": "Wed, 26 Aug 2020 03:42:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -485,9 +412,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "efca2c1c010ac8660f3d61ae6a58de8f", - "x-ms-correlation-request-id": "4d11c49e-11bf-4f73-93f4-b1f17cc230fb", - "x-ms-request-id": "422895eb-43d7-4efc-8726-02ab54ffc130", + "x-ms-client-request-id": "95175ce64ffa7b7f42146a30aa445983", + "x-ms-correlation-request-id": "dbb769c6-d2fc-4e19-a7fb-72cf28b5b52e", + "x-ms-request-id": "34569e27-4724-49e4-8a7b-b37e4d3c7f6c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -498,7 +425,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "05004e91-0000-0100-0000-5f45c41c0000" + "etag": "05002cc9-0000-0100-0000-5f45da2a0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json index 97636ecd171a4..82360c4ea4dd7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestCreateTriggerAsync.json @@ -4,10 +4,11 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "33", "Content-Type": "application/json", - "traceparent": "00-232258f333c91b4ead629317d6a9115f-a9df811127f10446-00", + "traceparent": "00-ba1fc88d376b8b42849ca86d9a50cc39-dc7322671d43984e-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -32,27 +33,27 @@ ], "Content-Length": "374", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a3d7341deada658f06c9e27495c92b32", - "x-ms-request-id": "d48a0926-280e-453b-af53-fd023113bfbb" + "x-ms-request-id": "e7cc2ea2-b9a2-4acf-b478-c6caf8192dcb" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", - "recordId": 212215, + "recordId": 212326, "state": "Creating", - "created": "2020-08-26T02:09:02.2333333Z", - "changed": "2020-08-26T02:09:02.2333333Z", + "created": "2020-08-26T03:43:04.4333333Z", + "changed": "2020-08-26T03:43:04.4333333Z", "type": "Trigger", "name": "MyTrigger", - "operationId": "5e7a01b4-8a2f-40f4-ae29-d789f7c4c761" + "operationId": "b7aef88d-4ee2-45a7-a52e-a70ea053df83" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -76,20 +77,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:02 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "34571b62c09c168577ff7f5af4769ae1", - "x-ms-request-id": "8e967bdc-6074-4b0d-af2e-9dfffdd1b9e6" + "x-ms-request-id": "d26e812e-e6a8-491b-a48b-45a5121e36a1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -113,20 +114,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6c9fcf7dbbc12dcda02c3f7e253ed013", - "x-ms-request-id": "86c102e3-c755-41b3-beb8-d2749549cd5f" + "x-ms-request-id": "df8c9b96-e392-4b0b-91eb-6b6dd615e207" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -150,20 +151,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7911871bf6715996de5b7ef57039b7ed", - "x-ms-request-id": "679fbcdc-bb26-44e4-8afc-b2faf610b3db" + "x-ms-request-id": "0d3736d8-fab6-4ab8-ad76-9b2d5a366d9b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -187,20 +188,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c5d3e4c14153a79a4d2993708106f138", - "x-ms-request-id": "bdd6f25f-7a67-4979-bb2c-4c8b03d84f9a" + "x-ms-request-id": "5b6d3885-12fa-4ac7-bc94-ca15479dbd3f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -224,20 +225,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6c3f6b2e2165866f38468d653dd8bd67", - "x-ms-request-id": "a21ad5e5-f706-41e8-95f5-921dbbb69a9e" + "x-ms-request-id": "3c585189-9fc0-4475-9624-1d7594a80947" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -261,20 +262,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:03 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "40bc51740b6ad9c0ed6a2b486326d8d7", - "x-ms-request-id": "20c9d91c-4eec-42e8-b5c0-ea30e85c9588" + "x-ms-request-id": "804bcc07-d447-40ee-948c-b4340b5b737f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -298,20 +299,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "04c6456a4af9a087754c8c0cb4356975", - "x-ms-request-id": "ac9b4191-e23d-49eb-ba8a-7fc38c583b86" + "x-ms-request-id": "683fa569-77bd-4d19-820a-c30acbce0a33" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -335,20 +336,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2ffb2c6cb04a23cdab657ffbf5262312", - "x-ms-request-id": "b3dc1051-27db-4db3-8c41-1b563fa4a412" + "x-ms-request-id": "77d43258-fb34-48e8-82cd-b697340f8493" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -372,20 +373,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f7fab66eb8112a6ec91ccb1e7fb325b7", - "x-ms-request-id": "5adb0421-58bb-4f83-9aea-03e68ffbe788" + "x-ms-request-id": "4f2430d7-3796-4f21-b062-3049d5eb33ba" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -409,20 +410,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "36dcb600a82bba8d77a35893ca8caa4e", - "x-ms-request-id": "94b578d3-9e0b-42b3-834e-9be00825fd85" + "x-ms-request-id": "b6ec05ec-5da4-4aaf-85c1-31e43dc5b005" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -446,20 +447,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:04 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fd9e7a28713ab364bed0662de4afa4f8", - "x-ms-request-id": "60f222b9-c89c-4a9f-8ede-f84ef33377e7" + "x-ms-request-id": "11093871-8711-470d-beae-13c48e50bda5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b7aef88d-4ee2-45a7-a52e-a70ea053df83?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -471,123 +472,12 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3ffbc740ed4ac6e7293f806e60da603d", - "x-ms-request-id": "d98b8c8d-a211-46e6-9691-8e8f2bcf9af7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "04f57c7127148e7d5129785a425fd6c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "04f57c7127148e7d5129785a425fd6c7", - "x-ms-request-id": "b390db27-6eec-40b2-8156-a802485da2f9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "025360ff6b903b0493d8d4fbf1f652e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:05 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "025360ff6b903b0493d8d4fbf1f652e3", - "x-ms-request-id": "8661531b-5d5e-4a6e-af11-960d7434d566" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5e7a01b4-8a2f-40f4-ae29-d789f7c4c761?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", - "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "67bb29709fba18e44a6ced20748c83c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:05 GMT", + "Date": "Wed, 26 Aug 2020 03:43:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -596,9 +486,9 @@ ], "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "67bb29709fba18e44a6ced20748c83c9", - "x-ms-correlation-request-id": "94f5f803-e1b3-4b39-8263-f271cde035d0", - "x-ms-request-id": "e5507926-8a83-462a-bb21-1b4c54e42918", + "x-ms-client-request-id": "3ffbc740ed4ac6e7293f806e60da603d", + "x-ms-correlation-request-id": "d336dc3b-9c6a-42cb-aff4-63ceedfa81e8", + "x-ms-request-id": "c6923e37-5241-426f-b0fb-e5618fbbd26e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -609,7 +499,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "05005d91-0000-0100-0000-5f45c4420000" + "etag": "050041c9-0000-0100-0000-5f45da4b0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json index 06bb6ec3ce414..89fda9182c6aa 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTrigger.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b3e1a54e1581c6409bb1449be71d41e9-5f301b7f17c5d24c-00", + "traceparent": "00-35a5aaa3968a7349bca815693c9bfcb6-801467295b6a964f-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:50 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2cf56f1296727c20368b90a921519b6f", - "x-ms-request-id": "b6718930-fb73-42e9-9386-a8fc6379a77f" + "x-ms-request-id": "f6db93e7-afc9-481a-a2c0-9aa6aa399cb9" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "MyTrigger", - "operationId": "d8ead94c-c088-40d1-9a67-a4e38bf96598" + "operationId": "78e1df55-be46-4170-a7ff-03a3789d7d46" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:50 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "66cb0bd79ca58d2311420e7c1bf4410d", - "x-ms-request-id": "2b59439f-b694-434e-8b07-642fbd1c1e0b" + "x-ms-request-id": "42551359-7d7c-4f79-a2ee-442a25108d68" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:50 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:42:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e7e6add0c0445d615f912b9b9ea69d37", - "x-ms-request-id": "b01d962b-666b-4465-9f89-1053017286d6" + "x-ms-request-id": "5e934c76-78a5-41ed-88ce-e2b714599ce1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d8ead94c-c088-40d1-9a67-a4e38bf96598?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -125,14 +126,495 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", + "x-ms-request-id": "749ba064-73d3-4451-b63a-4dd8b352907c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "31a9eb958c191777aa6e06137088ef6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "31a9eb958c191777aa6e06137088ef6a", + "x-ms-request-id": "7847bb7f-85ce-4116-a2e0-c011737b9ab5" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "4664d7a52b229b86e3ea69713b66b7cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4664d7a52b229b86e3ea69713b66b7cd", + "x-ms-request-id": "0ce0e8ff-d9cf-47e0-93a1-9673df094935" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "b2051f496bfd8b1d5dba6b182db68bf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b2051f496bfd8b1d5dba6b182db68bf5", + "x-ms-request-id": "a2171b82-d85f-4bf3-bde1-b3bd8d79a236" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "ce5519e2012d6ae9640d4e2f2205db44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ce5519e2012d6ae9640d4e2f2205db44", + "x-ms-request-id": "705137c2-9560-4ac4-8cd1-d2bed1498c03" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "51ca39b63c83396dbad9e868bf6e6d2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "51ca39b63c83396dbad9e868bf6e6d2c", + "x-ms-request-id": "19292ee8-e0ef-4a28-896b-053b8fa1dc47" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "228e745fe810479f359a4def1cee6958", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "228e745fe810479f359a4def1cee6958", + "x-ms-request-id": "696a5e57-3e0c-494b-9ad3-b06c9264799b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "f46127df39eca571ac1b14541981abf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f46127df39eca571ac1b14541981abf6", + "x-ms-request-id": "72085168-041a-40c4-a1d4-fde09117c1ed" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "add0229fb976cd339a821be8ef7e1dcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "add0229fb976cd339a821be8ef7e1dcb", + "x-ms-request-id": "e213d1d8-4e9d-4d43-a05b-43b4d7e601e1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "98889070790d253f03e975f5d44b2eb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "98889070790d253f03e975f5d44b2eb4", + "x-ms-request-id": "e8ec9a9d-b402-46f1-80df-966590058e60" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "fa4f57efbb1e26e1f493596a1e89b62d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fa4f57efbb1e26e1f493596a1e89b62d", + "x-ms-request-id": "e57fba41-7c49-4f53-93f9-84ef0ee65e3d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "89e348fe13f826e8e2aaaa8d433df94f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "89e348fe13f826e8e2aaaa8d433df94f", + "x-ms-request-id": "1fe8f351-392b-487d-a78b-11a93cb66d3c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "97f96754222eb4adae62a37920d50779", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:42:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "97f96754222eb4adae62a37920d50779", + "x-ms-request-id": "ec1a07c8-4e6a-4c4c-9763-9c22f2521b4c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/78e1df55-be46-4170-a7ff-03a3789d7d46?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "8cf64832a567dcbb6f2917731154e3b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:08:51 GMT", + "Date": "Wed, 26 Aug 2020 03:42:54 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "16d1d5173486fcca7dd284faa692480c", - "x-ms-request-id": "045f98ea-9693-4079-9b2b-0c6cb9f2aac9" + "x-ms-client-request-id": "8cf64832a567dcbb6f2917731154e3b6", + "x-ms-request-id": "258e6250-f391-4af8-b4b1-46182e86aeb0" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json index 42a8c1556ae12..868cf4d39a7ea 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteTriggerAsync.json @@ -4,8 +4,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-da5dae930d85b748a4bf2cd483e1921a-944fc022189cb240-00", + "traceparent": "00-2407fc86a6165b408cc76e0accab8cfe-0864d6eea67f964b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -20,12 +21,12 @@ "Access-Control-Expose-Headers": "Location", "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:25 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f307d265ede81ef426094b5561a18ef1", - "x-ms-request-id": "e25b8a35-259d-4f1e-9820-34ade5a7ab04" + "x-ms-request-id": "ac0d91f2-704b-4db5-ba32-82146c57e097" }, "ResponseBody": { "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", @@ -35,11 +36,11 @@ "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "MyTrigger", - "operationId": "0fec0fba-08a6-410d-bca9-56bdee8326b2" + "operationId": "4252ed22-8e31-43e0-b780-cea1114923ed" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -63,20 +64,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "05b441f9ede7956492636c0b7652f1bd", - "x-ms-request-id": "4a2d388c-a42c-49b1-85da-d255d771089d" + "x-ms-request-id": "f8719c9a-5db5-40d9-8d22-233ac276655b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -100,20 +101,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b0e9ffbd531a950978312932691671f2", - "x-ms-request-id": "5ba38336-f635-43fa-9605-b11d3906aa06" + "x-ms-request-id": "60f74cfb-fdd6-4d96-a9f3-439269fe429f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -137,20 +138,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1f5bd22589ec840965eb9e34624e6077", - "x-ms-request-id": "f5b6678a-e4af-48d1-bbda-f3dc5c2ce2ff" + "x-ms-request-id": "5608cdfe-cfc9-4a31-8277-5312ad32e985" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -174,20 +175,20 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:26 GMT", - "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "Date": "Wed, 26 Aug 2020 03:43:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ad20c6c4334aa55f381e8cb6c4322c7c", - "x-ms-request-id": "580bde71-c7b9-4d13-b0a0-a111dd7b9805" + "x-ms-request-id": "fe8a625d-6508-4047-8ea9-55b6524e9f79" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0fec0fba-08a6-410d-bca9-56bdee8326b2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", @@ -199,14 +200,125 @@ "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:43:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", + "x-ms-request-id": "a89d02f8-b37a-485c-81c6-4ca666e50ec1" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "a26db2d0c3f6f2a873b6e7cdfc52c033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:43:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a26db2d0c3f6f2a873b6e7cdfc52c033", + "x-ms-request-id": "2cc0e16a-de5a-4e3a-b682-81083805d04e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "e84122bfbc68f280f6ecb7e4e830ef62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 26 Aug 2020 03:43:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e84122bfbc68f280f6ecb7e4e830ef62", + "x-ms-request-id": "fc6f8cee-6635-48fc-974f-450db940535c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4252ed22-8e31-43e0-b780-cea1114923ed?api-version=2019-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" + ], + "x-ms-client-request-id": "11e663eb8ac42f85d1f33140ea0237a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 26 Aug 2020 02:09:26 GMT", + "Date": "Wed, 26 Aug 2020 03:43:32 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a4e679f2d1f633d0f5654a2eb5d53329", - "x-ms-request-id": "49609370-7139-4064-a72a-535b8dfab5dc" + "x-ms-client-request-id": "11e663eb8ac42f85d1f33140ea0237a2", + "x-ms-request-id": "5a48dc13-3656-4cb5-bf73-15a30ef5864f" }, "ResponseBody": [] } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json index 082ce27918b57..8cb6c301ca3c4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "2052", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:39 GMT", + "Date": "Wed, 26 Aug 2020 03:42:41 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "73a38e2fe68f17ddca039efee4a24528", - "x-ms-request-id": "77924898-60a1-42e8-bb62-ae2674bfd36c" + "x-ms-request-id": "e6baab02-754c-47f1-aab7-cc22e09d8dfb" }, "ResponseBody": { "value": [ @@ -91,7 +92,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", "name": "MyTrigger", "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "05004e91-0000-0100-0000-5f45c41c0000", + "etag": "05002cc9-0000-0100-0000-5f45da2a0000", "properties": { "type": "Trigger", "runtimeState": "Stopped" @@ -104,8 +105,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ea658d02f1974948b8617b30af37d4f9-cf1188e13c4f604a-00", + "traceparent": "00-c590762ca977eb4794c3b106b79acd3c-2d63e90ee2a3274d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -119,7 +121,7 @@ "Cache-Control": "no-cache", "Content-Length": "495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:40 GMT", + "Date": "Wed, 26 Aug 2020 03:42:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -129,8 +131,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6a2070a865912684dab2e9db0746e2a4", - "x-ms-correlation-request-id": "2d006ffe-2051-4a51-aa68-b65cf4278e27", - "x-ms-request-id": "5891d05f-9a49-4cc7-8393-ad9d252c5ed3", + "x-ms-correlation-request-id": "564a34a6-06eb-4de9-8d9a-969db5cfc2d3", + "x-ms-request-id": "6f2da7ad-2e7a-4b7f-a3f1-1201609cff03", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -158,8 +160,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/dongwwaTrigger2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1032df402b587f4f9afb09247b86fba9-c817ede1a4b0374e-00", + "traceparent": "00-4bfb45197a03694c95dd042aa29f3bf2-3dd169d0e850b340-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -173,7 +176,7 @@ "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:40 GMT", + "Date": "Wed, 26 Aug 2020 03:42:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -183,8 +186,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "84b5abec48d2cddaf75a682005263bac", - "x-ms-correlation-request-id": "0be9031d-b749-4a6c-871f-6b12dc62fd57", - "x-ms-request-id": "9710fa8d-7fde-432c-9fb3-5a40089aee8d", + "x-ms-correlation-request-id": "30c40caf-9a75-4079-9f87-60c5d5582853", + "x-ms-request-id": "4e16ab21-6586-4631-9669-46a1c1de8bb8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -214,8 +217,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger3?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e8b04ce7615aff4ab871fa0237fc44c5-e123f3576740f34d-00", + "traceparent": "00-f0985d24f1405345a5424ce8530c76ca-94bd6f77b6b0294a-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -229,7 +233,7 @@ "Cache-Control": "no-cache", "Content-Length": "647", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:40 GMT", + "Date": "Wed, 26 Aug 2020 03:42:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -239,8 +243,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c3a015e698e3ca50097c98ddfc010f83", - "x-ms-correlation-request-id": "6c38024f-e457-4276-9048-061f0c53402e", - "x-ms-request-id": "c59e3b72-8aeb-49c6-ba7e-85de4d9fd59b", + "x-ms-correlation-request-id": "c26a6340-223b-4579-a839-acd16841e87b", + "x-ms-request-id": "114deb69-feae-4623-be4a-e3eea9b40fb8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -268,8 +272,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5e2ab454d66dae4aaecd2330c7f96547-c61f6c406ef55b4b-00", + "traceparent": "00-e97fa7e5b01742418ee7e1b4ae89cc52-e810082df12ca44d-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -283,7 +288,7 @@ "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:08:40 GMT", + "Date": "Wed, 26 Aug 2020 03:42:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -293,8 +298,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3811f921c1ed605596527336fc6320b3", - "x-ms-correlation-request-id": "49678778-cea5-4525-8836-d031b777e8fa", - "x-ms-request-id": "229b37f0-e69f-4bcc-bc1b-10aec338d0a4", + "x-ms-correlation-request-id": "4ea3d73f-5938-4187-97e0-b9efe3c6cc1e", + "x-ms-request-id": "d74fc065-ffe2-4bd3-9bc3-87d5fbd525fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -305,7 +310,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "05004e91-0000-0100-0000-5f45c41c0000" + "etag": "05002cc9-0000-0100-0000-5f45da2a0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json index 1a380c50ae85b..40765a8d85219 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json @@ -4,6 +4,7 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", @@ -17,11 +18,11 @@ "ResponseHeaders": { "Content-Length": "2052", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:16 GMT", + "Date": "Wed, 26 Aug 2020 03:43:22 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a4eb13e827d1a729e656409d1478d4de", - "x-ms-request-id": "9f8257e0-a0a3-4500-a3b4-2e09b68519d0" + "x-ms-request-id": "71c03f7d-1b1a-4023-a241-5602bd4d50ce" }, "ResponseBody": { "value": [ @@ -91,7 +92,7 @@ "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/MyTrigger", "name": "MyTrigger", "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "05005d91-0000-0100-0000-5f45c4420000", + "etag": "050041c9-0000-0100-0000-5f45da4b0000", "properties": { "type": "Trigger", "runtimeState": "Stopped" @@ -104,8 +105,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger%201?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2fea9bf8924d6b45b0d76648bfa3cc0f-7ecb41bed5dc2d41-00", + "traceparent": "00-ca5b9ad4a5dea14587086b8af72cbc39-87335a67142d7541-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -119,7 +121,7 @@ "Cache-Control": "no-cache", "Content-Length": "495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:16 GMT", + "Date": "Wed, 26 Aug 2020 03:43:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -129,8 +131,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2f3942e86ee846bb014ad74c0701d99c", - "x-ms-correlation-request-id": "1fc133b7-0568-4339-80c2-b9d8f07fc81f", - "x-ms-request-id": "07707620-2dd8-4d1e-a893-2decd5345bbe", + "x-ms-correlation-request-id": "398f23e8-ee07-458f-b21c-660ec988ce0e", + "x-ms-request-id": "320d18ed-aaa5-4e2c-965f-086ab2673d04", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -158,8 +160,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/dongwwaTrigger2?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f88b4cd1a26c01468e75590ef1c124af-604aa8b8a2bd5544-00", + "traceparent": "00-32ecb4aa06248e4eac79c654832f3240-846e641f75abc14b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -173,7 +176,7 @@ "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:16 GMT", + "Date": "Wed, 26 Aug 2020 03:43:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -183,8 +186,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "21b738ca8f9f99a0a29e069dc70e4fc1", - "x-ms-correlation-request-id": "c57795b2-4622-4bab-90b3-08415e0489a9", - "x-ms-request-id": "38ca287d-7ee1-4c69-a6a5-4f5d6a181cde", + "x-ms-correlation-request-id": "77e27714-63cd-4d91-9ee2-2902849d170d", + "x-ms-request-id": "2e86ebf7-9ae0-4056-b374-6f7f07947cf6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -214,8 +217,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger3?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f8b888fc17d794fa0571b90c2dfc1eb-f542845956f8f847-00", + "traceparent": "00-c5c0404496cd944d93325a46d2f7b26f-ff3e5355e7512f42-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -229,7 +233,7 @@ "Cache-Control": "no-cache", "Content-Length": "647", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:17 GMT", + "Date": "Wed, 26 Aug 2020 03:43:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -239,8 +243,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6452f0db036c79c158a4a2874fdca0e5", - "x-ms-correlation-request-id": "eba9be71-aae9-4228-ada4-9a13c627741c", - "x-ms-request-id": "cf02832a-0d19-4ff8-80f1-f41fcc81c1b7", + "x-ms-correlation-request-id": "c4e5c72e-74b6-43bc-ba76-fbbd5bc81ec4", + "x-ms-request-id": "afe9d7f7-715a-4a17-9bf3-02bbcb2d1321", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -268,8 +272,9 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/MyTrigger?api-version=2019-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3a4917b3bf22ee42b86cdcdce3987467-8b8f6cd57acd9247-00", + "traceparent": "00-052108d931d2d44ba3e515a9bd0c2a02-07285f67775e774b-00", "User-Agent": [ "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-dev.20200826.1", "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" @@ -283,7 +288,7 @@ "Cache-Control": "no-cache", "Content-Length": "335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 26 Aug 2020 02:09:17 GMT", + "Date": "Wed, 26 Aug 2020 03:43:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -293,8 +298,8 @@ "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "dbd2a47db2c0593fa1a08c4a671e7ff3", - "x-ms-correlation-request-id": "c0f4f3e7-8e42-4c28-9a4d-bbdccd5ee378", - "x-ms-request-id": "47dd548e-bbfc-44e7-81ec-84e79cbabc5d", + "x-ms-correlation-request-id": "a6912980-d021-43fc-889b-842720acef8f", + "x-ms-request-id": "9aefcb84-b90b-4048-8dca-fffd6f958642", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -305,7 +310,7 @@ "type": "Trigger", "runtimeState": "Stopped" }, - "etag": "05005d91-0000-0100-0000-5f45c4420000" + "etag": "050041c9-0000-0100-0000-5f45da4b0000" } } ], diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj index d45071d568f99..b65e8506375f5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj @@ -15,7 +15,6 @@ Azure.Analytics.Synapse.Spark - true diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkBatchRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkBatchRestClient.cs index 089f657772755..207904a198290 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkBatchRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkBatchRestClient.cs @@ -78,6 +78,7 @@ internal HttpMessage CreateGetSparkBatchJobsRequest(int? @from, int? size, bool? uri.AppendQuery("detailed", detailed.Value, true); } request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -153,6 +154,7 @@ internal HttpMessage CreateCreateSparkBatchJobRequest(SparkBatchJobOptions spark } request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(sparkBatchJobOptions); request.Content = content; @@ -233,6 +235,7 @@ internal HttpMessage CreateGetSparkBatchJobRequest(int batchId, bool? detailed) uri.AppendQuery("detailed", detailed.Value, true); } request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkSessionRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkSessionRestClient.cs index 4af0d8afec176..04fd84c6ae8e0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkSessionRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Generated/SparkSessionRestClient.cs @@ -78,6 +78,7 @@ internal HttpMessage CreateGetSparkSessionsRequest(int? @from, int? size, bool? uri.AppendQuery("detailed", detailed.Value, true); } request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -153,6 +154,7 @@ internal HttpMessage CreateCreateSparkSessionRequest(SparkSessionOptions sparkSe } request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(sparkSessionOptions); request.Content = content; @@ -233,6 +235,7 @@ internal HttpMessage CreateGetSparkSessionRequest(int sessionId, bool? detailed) uri.AppendQuery("detailed", detailed.Value, true); } request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -394,6 +397,7 @@ internal HttpMessage CreateGetSparkStatementsRequest(int sessionId) uri.AppendPath(sessionId, true); uri.AppendPath("/statements", false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -455,6 +459,7 @@ internal HttpMessage CreateCreateSparkStatementRequest(int sessionId, SparkState uri.AppendPath("/statements", false); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(sparkStatementOptions); request.Content = content; @@ -533,6 +538,7 @@ internal HttpMessage CreateGetSparkStatementRequest(int sessionId, int statement uri.AppendPath("/statements/", false); uri.AppendPath(statementId, true); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } @@ -597,6 +603,7 @@ internal HttpMessage CreateCancelSparkStatementRequest(int sessionId, int statem uri.AppendPath(statementId, true); uri.AppendPath("/cancel", false); request.Uri = uri; + request.Headers.Add("Accept", "application/json"); return message; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJob.json b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJob.json index 7c7da137e9311..dec81182f6589 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJob.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJob.json @@ -4,11 +4,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f7038707e79e78489c204515f70266be-55cfae302f7fa949-00", + "traceparent": "00-5e1cfdb49bc7fc4e87a574dd816fcefa-5279d0f2412d8a4f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5152ab3c3fc5ba1c5111bcb11d9ed725", "x-ms-return-client-request-id": "true" @@ -17,20 +18,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:08 GMT", + "Date": "Wed, 26 Aug 2020 05:54:18 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "bf458dc3-05bb-4e1a-9b4a-c88fac5d09f8", + "x-ms-activity-id": "820ce840-4319-4d73-8418-e6d17b358323", "x-ms-client-request-id": [ "5152ab3c3fc5ba1c5111bcb11d9ed725", "5152ab3c3fc5ba1c5111bcb11d9ed725" ], - "x-ms-request-id": "99b59cd8-c39a-474a-894d-bafcc29c89f0", - "x-ms-response-time-ms": "77" + "x-ms-request-id": "cd3c8f85-0698-46b5-bf1b-d8ac697ee20e", + "x-ms-response-time-ms": "549" }, "ResponseBody": { "from": 0, @@ -428,11 +429,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/0", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fe855be6523a8d479b9baae7ea7ffd67-99b1083dbef86e48-00", + "traceparent": "00-9df3a0c38ad07946bbec0cffdc5a4b0c-423acbb1f7847a4f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b427c52c8868683f7c1211581d92e221", "x-ms-return-client-request-id": "true" @@ -441,14 +443,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:08 GMT", + "Date": "Wed, 26 Aug 2020 05:54:20 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "02c54416-2be1-4a81-af8c-17dfbc437da2", + "x-ms-activity-id": "59124585-ec2a-48af-9cce-fb8d3e16cf79", "x-ms-client-request-id": [ "b427c52c8868683f7c1211581d92e221", "b427c52c8868683f7c1211581d92e221" @@ -465,8 +467,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "12/13/2019 8:11:38 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "ab029bf8-9381-4a23-aecf-0f746224ebe3", - "x-ms-response-time-ms": "54" + "x-ms-request-id": "828f6ef2-0385-44e0-b116-40cbf2aa7600", + "x-ms-response-time-ms": "40" }, "ResponseBody": { "id": 0, @@ -494,11 +496,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/1", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a47816d4111cf040b0fd920b497a2ffe-94ed0b579aa9104e-00", + "traceparent": "00-0c89eace271cca49b0979fc3d1e266f2-64328982abcf2744-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "00cfcb8c74f7c0f7dbac215caa692891", "x-ms-return-client-request-id": "true" @@ -507,14 +510,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:08 GMT", + "Date": "Wed, 26 Aug 2020 05:54:20 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "618ae471-db4e-476c-9a4f-94bc45e1250e", + "x-ms-activity-id": "dae30ab8-94d9-45c0-9c53-e5fda77bd3de", "x-ms-client-request-id": [ "00cfcb8c74f7c0f7dbac215caa692891", "00cfcb8c74f7c0f7dbac215caa692891" @@ -531,8 +534,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "12/13/2019 8:12:11 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "8e61d3de-9711-4f81-b03f-d89f3587c317", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "3058a37d-be6a-491a-ab8f-590f99070603", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 1, @@ -560,11 +563,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/3", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-51445b740441c944bd41f1b2695cb8b9-82f41cdb5e5f4b44-00", + "traceparent": "00-a2c2fb9ce421a542b0107fa0863fef73-b1ac645fe232c34b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ce39b7252406b3d46bead5b22ec49cbe", "x-ms-return-client-request-id": "true" @@ -573,14 +577,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:20 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "13b74d3e-9046-420d-9847-20d82e9fd650", + "x-ms-activity-id": "9817cdc7-6fd6-4344-b4ae-6c72b5334bd7", "x-ms-client-request-id": [ "ce39b7252406b3d46bead5b22ec49cbe", "ce39b7252406b3d46bead5b22ec49cbe" @@ -597,8 +601,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 3:54:31 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "de318627-9598-4f1e-91ea-c2465616a8f4", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "8d69a6a9-4d81-4d5a-a26a-119eb50f0c76", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 3, @@ -626,11 +630,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/4", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a6109f641ded624791f24f05a5ee2979-42a888879ef6184d-00", + "traceparent": "00-4615d7e7262f594fb115dbedfca91b38-5dd4dd15ba19fa46-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "51249a2fd7cfb82dce66d9bc67e2be13", "x-ms-return-client-request-id": "true" @@ -639,14 +644,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:20 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "bda79f6e-21ad-4763-9fc9-7c96737f9639", + "x-ms-activity-id": "11810546-80c1-46d3-9d24-56624dd4b4d2", "x-ms-client-request-id": [ "51249a2fd7cfb82dce66d9bc67e2be13", "51249a2fd7cfb82dce66d9bc67e2be13" @@ -663,8 +668,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 5:39:13 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "95d341aa-64ad-4231-bb21-e08556f8cb66", - "x-ms-response-time-ms": "18" + "x-ms-request-id": "f4d7f39f-3557-4e94-afe0-67602801227b", + "x-ms-response-time-ms": "32" }, "ResponseBody": { "id": 4, @@ -692,11 +697,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/5", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7e34649ec0360f47834096bda8034a85-86af71c38cc08b4b-00", + "traceparent": "00-6cdb84eee48fef45855dbabc271f8b43-9c17f658abb00647-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "66337fea1359681af61b940d9f449217", "x-ms-return-client-request-id": "true" @@ -705,14 +711,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:21 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "45c026a3-0409-4695-9487-344df92db590", + "x-ms-activity-id": "3bb071ae-5777-4514-9e57-ec18d94bf782", "x-ms-client-request-id": [ "66337fea1359681af61b940d9f449217", "66337fea1359681af61b940d9f449217" @@ -729,8 +735,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 5:48:34 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "519047a9-d8a7-4aa4-9402-a268afb39ffa", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "379736dd-39a2-42ed-b924-301a2237fe95", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 5, @@ -751,11 +757,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/12", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fb6f3b62e33eff43ae50e5605e86164d-a4e5c82778e87a43-00", + "traceparent": "00-42bf4dcd5c5fac41b135204d503b7177-09d879b8e1b58c45-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0f2d620fd6444ec28981ffa04a184c88", "x-ms-return-client-request-id": "true" @@ -764,14 +771,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:21 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "5e8f583f-3889-4a3d-9aa5-390bc31690ba", + "x-ms-activity-id": "a17129d0-716c-4648-b4e1-5a24936d00c1", "x-ms-client-request-id": [ "0f2d620fd6444ec28981ffa04a184c88", "0f2d620fd6444ec28981ffa04a184c88" @@ -788,8 +795,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 2:36:03 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "c17950d6-98b1-462f-91cb-3aa35586b508", - "x-ms-response-time-ms": "17" + "x-ms-request-id": "2beedfd6-a29d-4ff5-aeda-91970d2b1ad5", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 12, @@ -817,11 +824,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/13", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-922fe2701b46a1499dc6e8fec7778714-b380b09535fc4c45-00", + "traceparent": "00-376e61677e96aa4793a5f3efcac56efd-90aad73911590f48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "afc8c12c36911b6580bc5ab34220188a", "x-ms-return-client-request-id": "true" @@ -830,14 +838,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:21 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "0f2f9937-c01e-4248-855d-2e7c52da5426", + "x-ms-activity-id": "b580f273-c169-439a-a5e8-cb03c2919cab", "x-ms-client-request-id": [ "afc8c12c36911b6580bc5ab34220188a", "afc8c12c36911b6580bc5ab34220188a" @@ -854,8 +862,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 3:35:41 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "d3967436-8bad-4398-a251-e54ae2952c85", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "41f79186-0120-4749-9cb7-e22e458e1966", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 13, @@ -883,11 +891,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/14", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-171be7fce5663a409c7ce7b7770fc584-d86a83467782c749-00", + "traceparent": "00-370859a8f07a2246981ff6f1048678dc-461732660484f14f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "04acc1d3aeb513cebde4dcd713791dde", "x-ms-return-client-request-id": "true" @@ -896,14 +905,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:21 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "fa364c2f-4703-465b-8363-423ce7e7f009", + "x-ms-activity-id": "6037c155-d784-4ee0-96ff-65ca7f03ef8e", "x-ms-client-request-id": [ "04acc1d3aeb513cebde4dcd713791dde", "04acc1d3aeb513cebde4dcd713791dde" @@ -920,8 +929,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 3:40:32 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "6bf9a3fe-d573-4bcb-90ff-35ecf51f2781", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "0cb7421d-7db4-4ded-a4a2-0a3af5956b83", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 14, @@ -949,11 +958,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/15", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8774dda43c92fa4aba98206a3c3ded6e-f3982afaecc4284f-00", + "traceparent": "00-3bb3e55303bc2843891dd3a5d837d77b-97c2e8296e40b342-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "dde00ccfe27bd986fd118f887c0e0b69", "x-ms-return-client-request-id": "true" @@ -962,14 +972,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:22 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "adaec257-07bc-4843-bf62-5d3f5b2a7c6a", + "x-ms-activity-id": "264dc612-b757-4504-a59f-70ec93af6641", "x-ms-client-request-id": [ "dde00ccfe27bd986fd118f887c0e0b69", "dde00ccfe27bd986fd118f887c0e0b69" @@ -986,8 +996,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 4:25:25 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "b17137a8-f2e5-426b-8272-ed0b13afdb0a", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "22f438ca-fbe7-4e86-a165-ba12b163467e", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 15, @@ -1015,11 +1025,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/16", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-911471b25007cc4ab09d0a2e903b605d-7a2f084e114c894f-00", + "traceparent": "00-d9cc799ba790d64a889f47f93a184492-28348e25242fbf44-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "89cc7568476c7dd3f3b5f2ac598d0806", "x-ms-return-client-request-id": "true" @@ -1028,14 +1039,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:22 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "dd81ee74-296b-4d83-aa79-f8ec90422112", + "x-ms-activity-id": "38c1e746-b841-4cf8-920d-94422717d1b2", "x-ms-client-request-id": [ "89cc7568476c7dd3f3b5f2ac598d0806", "89cc7568476c7dd3f3b5f2ac598d0806" @@ -1052,8 +1063,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/13/2020 2:47:05 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "dc4c0819-d0b5-4927-98c5-508c4a14b506", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "077ca5ee-3efe-4112-acfa-3c0f27c6ccbe", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 16, @@ -1081,11 +1092,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/17", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bdaa44aff76d134e874297c09dd20e73-153bd47d5c1e8947-00", + "traceparent": "00-3a1d079032453a4781c49f058f5a995b-03538462a469bf48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "36e47c9e3a3ff10e3bd207a41f4696ae", "x-ms-return-client-request-id": "true" @@ -1094,14 +1106,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:22 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "e29403dd-24ea-488d-8268-f164795f18cd", + "x-ms-activity-id": "78a1f589-cfd8-4dd0-b8cc-a33e919987ff", "x-ms-client-request-id": [ "36e47c9e3a3ff10e3bd207a41f4696ae", "36e47c9e3a3ff10e3bd207a41f4696ae" @@ -1118,8 +1130,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/14/2020 8:03:16 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "92bc398b-4007-4fa3-8bf1-47fb9841b64f", - "x-ms-response-time-ms": "17" + "x-ms-request-id": "ca3922a4-c3a7-4971-8eec-0e4dcbe73081", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 17, @@ -1147,11 +1159,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/18", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ee28c55c29d1fa49b8f68c321196239c-e36f109cb796d44f-00", + "traceparent": "00-0c13637453958042b7454dd6173bd874-c1d4078bb8469a48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "9e6e73d994ad88713863eac6f0da806f", "x-ms-return-client-request-id": "true" @@ -1160,14 +1173,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:22 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "9e5bcd2e-f3e2-4010-8a8c-ad8ab4516841", + "x-ms-activity-id": "fb1a9f98-7ba4-46df-b1f9-aeb32e071319", "x-ms-client-request-id": [ "9e6e73d994ad88713863eac6f0da806f", "9e6e73d994ad88713863eac6f0da806f" @@ -1184,8 +1197,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/14/2020 8:23:00 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "fd3aa1c4-0d70-4d9e-9705-c9fcd11faa50", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "e8df3a4f-f070-4a14-a692-510d284cdf11", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 18, @@ -1213,11 +1226,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/19", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-701ca896a46564408c36c0b0de96aa02-2461cca0c0c26144-00", + "traceparent": "00-d9fbf68c397fe248a9ab12baece3ef2d-d1ebec32adc59c46-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "00e98809d5292d2966db4e99402f5dad", "x-ms-return-client-request-id": "true" @@ -1226,14 +1240,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:09 GMT", + "Date": "Wed, 26 Aug 2020 05:54:23 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "d086a889-08c9-4d15-ba55-6652d65eceb1", + "x-ms-activity-id": "e2133478-6ce4-4542-adb4-0606d3399c3a", "x-ms-client-request-id": [ "00e98809d5292d2966db4e99402f5dad", "00e98809d5292d2966db4e99402f5dad" @@ -1250,8 +1264,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/15/2020 1:21:44 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "1804bb04-6a68-4440-a0fe-32d60ed4fa33", - "x-ms-response-time-ms": "18" + "x-ms-request-id": "4db54cf0-40f1-4d07-a276-31409bfff25f", + "x-ms-response-time-ms": "32" }, "ResponseBody": { "id": 19, @@ -1279,11 +1293,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/20", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-25e64c722102064897f53f821d597cbe-a0aaaa35304d324b-00", + "traceparent": "00-0dc09f3b1ce56f4bb0bfdd91f7092e8e-6e5ae0ace49f8f4f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e6d3431e691e0a580a5cfddc50480060", "x-ms-return-client-request-id": "true" @@ -1292,14 +1307,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:23 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "c6dbfd00-1c32-4593-a1bb-8fa8a326f892", + "x-ms-activity-id": "64143bbb-ed1d-40da-b892-138fd419d605", "x-ms-client-request-id": [ "e6d3431e691e0a580a5cfddc50480060", "e6d3431e691e0a580a5cfddc50480060" @@ -1316,8 +1331,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/16/2020 2:08:56 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "30ea12e2-cbdf-4461-b1c5-5362933ffffb", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "d93c66eb-a242-4a83-b887-8ad4c20e7b45", + "x-ms-response-time-ms": "31" }, "ResponseBody": { "id": 20, @@ -1345,11 +1360,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/21", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-54a44304034779458813acb0dbdc5f0f-f300261079bb864d-00", + "traceparent": "00-edfaa9948454814980edbbcea8124af9-862c69e01f85234b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "969a9752965c03854a4137d146d74809", "x-ms-return-client-request-id": "true" @@ -1358,14 +1374,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:23 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "2030bb89-3d37-487e-a7b3-38f236dd2502", + "x-ms-activity-id": "e825b929-59ba-4745-81e6-c89f504ec8aa", "x-ms-client-request-id": [ "969a9752965c03854a4137d146d74809", "969a9752965c03854a4137d146d74809" @@ -1382,8 +1398,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/16/2020 2:21:04 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "aafd7c38-7da6-4947-b58d-ba3f991aa745", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "7352baea-403d-4609-81b9-338e65dff780", + "x-ms-response-time-ms": "27" }, "ResponseBody": { "id": 21, @@ -1411,11 +1427,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/22", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6b226de150d2784fa3bcdda4262200a7-201a5c52edab6141-00", + "traceparent": "00-0fe81e56759af34f93a1fa6ff95183e9-494c61bad2f8ab4c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ada83d0599079f5130dff5cdd84cdd1e", "x-ms-return-client-request-id": "true" @@ -1424,14 +1441,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:24 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "0a3f1e5e-8c87-407c-992e-80fa234c1cf3", + "x-ms-activity-id": "b98330c9-12a5-433a-b0e8-92fdd5ac0ce5", "x-ms-client-request-id": [ "ada83d0599079f5130dff5cdd84cdd1e", "ada83d0599079f5130dff5cdd84cdd1e" @@ -1448,8 +1465,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/16/2020 2:23:53 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "41ea83b3-0641-4338-be20-e97c7da39b56", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "02e1c1d6-3e79-4ba4-a206-5ea5ea2ba098", + "x-ms-response-time-ms": "42" }, "ResponseBody": { "id": 22, @@ -1477,11 +1494,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/23", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-400675d40bffaa42a2810f35c647a2b9-313b8717da0aed41-00", + "traceparent": "00-31326b9f8f9e324f9b6ab6b81b6ac6da-f094cffb04476942-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a847eddac7948750becf9bdd3287c433", "x-ms-return-client-request-id": "true" @@ -1490,14 +1508,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:24 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "26eb127c-fcf4-4e22-bf9c-f5339273ff74", + "x-ms-activity-id": "595c340a-fe78-487f-8f5d-f19485406986", "x-ms-client-request-id": [ "a847eddac7948750becf9bdd3287c433", "a847eddac7948750becf9bdd3287c433" @@ -1514,8 +1532,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "1/16/2020 9:36:46 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "8d1484dd-4b78-4872-baf8-8dd2194af334", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "5ca2fa33-9aec-46d7-a818-8155349ef316", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 23, @@ -1543,11 +1561,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/24", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ae3942bc7f2e1647bd6e563de8f73341-adefab5d2447784c-00", + "traceparent": "00-f386cc5d2482304490fa5f1f600750f8-6ca67059bd877d48-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "12d7f314539fb85945fa667ca0b72bfe", "x-ms-return-client-request-id": "true" @@ -1556,14 +1575,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:24 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "c78bdcc2-d365-4db1-8e24-3be304049253", + "x-ms-activity-id": "d1525459-a853-435b-a80e-da67979a773b", "x-ms-client-request-id": [ "12d7f314539fb85945fa667ca0b72bfe", "12d7f314539fb85945fa667ca0b72bfe" @@ -1579,8 +1598,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "1/16/2020 9:37:10 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "db21377c-a18e-4431-a5ab-a9ec148078aa", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "c9a152ad-11cc-405a-95bd-e99ac392857b", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 24, @@ -1594,11 +1613,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/25", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-23abe7d42009884b86f894bd143d5f92-390e6e7adced374c-00", + "traceparent": "00-55f5c33cab19cb4284c53a882c25451c-42aecb0ee828fb44-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "59f618639f903e75ec20ee37fe746da8", "x-ms-return-client-request-id": "true" @@ -1607,14 +1627,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:26 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "9400bcee-9d55-485c-92e5-bc880518f672", + "x-ms-activity-id": "6e04008f-3546-4227-95f0-209721970c54", "x-ms-client-request-id": [ "59f618639f903e75ec20ee37fe746da8", "59f618639f903e75ec20ee37fe746da8" @@ -1630,8 +1650,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "1/16/2020 9:37:54 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "f9f40cf7-3cac-4ae2-a305-518741a7d0ba", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "a3232ea4-99a9-4d9f-97a6-3f9a87e55fa6", + "x-ms-response-time-ms": "31" }, "ResponseBody": { "id": 25, @@ -1645,11 +1665,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/26", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-072d9b1815bd37488760b755a77c9b51-f441f05ad4779b41-00", + "traceparent": "00-8ec9e5e22ee84f478fc1d238376c01ff-74c3283918035542-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e4b9c21bcb74877f938e629960d3e606", "x-ms-return-client-request-id": "true" @@ -1658,14 +1679,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:10 GMT", + "Date": "Wed, 26 Aug 2020 05:54:26 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "35025b6e-9a67-4945-98dc-44853c2a392d", + "x-ms-activity-id": "ee340d19-68b7-4c06-a2b5-eed646262e1d", "x-ms-client-request-id": [ "e4b9c21bcb74877f938e629960d3e606", "e4b9c21bcb74877f938e629960d3e606" @@ -1682,8 +1703,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/19/2020 6:44:13 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "2f94d779-1d11-4c23-afb9-79985d675543", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "a019b3cd-175e-48d6-85d9-be3ba68c1582", + "x-ms-response-time-ms": "31" }, "ResponseBody": { "id": 26, diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJobAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJobAsync.json index 9cc39ad0039c2..3b9cacbe37c55 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJobAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkBatchClientLiveTests/TestGetSparkBatchJobAsync.json @@ -4,11 +4,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f6c503d077ddc4395451743a4b66ce1-63ca33382f252e4f-00", + "traceparent": "00-74f91bd4c63f274ebbd900c0b964602a-2122313541372e44-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7240ae92bc92f98808f09324ab76fe76", "x-ms-return-client-request-id": "true" @@ -17,20 +18,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:27 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "70613720-cbc3-4507-b2ac-1444b5f76b3c", + "x-ms-activity-id": "3a041714-2b5b-42e6-a604-782e42e33ed4", "x-ms-client-request-id": [ "7240ae92bc92f98808f09324ab76fe76", "7240ae92bc92f98808f09324ab76fe76" ], - "x-ms-request-id": "26798a4d-3bd8-4f69-a093-6640a18d3df4", - "x-ms-response-time-ms": "62" + "x-ms-request-id": "93f46b84-2c39-469b-850e-5ef772a2aae2", + "x-ms-response-time-ms": "85" }, "ResponseBody": { "from": 0, @@ -428,11 +429,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/0", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-27ca1e5e26164a4083b31823badd1560-25d979dbf7e04c45-00", + "traceparent": "00-1807a7f05664b74fb20146fb7e6f42b8-3987af45be4c5c47-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ff6dea7ac3bdc068e1be241635596be7", "x-ms-return-client-request-id": "true" @@ -441,14 +443,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:27 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "acbbbf3f-b038-497b-bd2b-def05acd05fa", + "x-ms-activity-id": "bb1bfef6-4b88-4bd0-ae8c-b63dd8538924", "x-ms-client-request-id": [ "ff6dea7ac3bdc068e1be241635596be7", "ff6dea7ac3bdc068e1be241635596be7" @@ -465,8 +467,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "12/13/2019 8:11:38 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "002db304-904d-419a-826f-38c48e10f454", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "59918f9f-1b33-4f8f-986a-8852a7df8870", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 0, @@ -494,11 +496,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/1", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-09107bd7da7aee4bbeae462f16cd2150-71b9b1deb002524b-00", + "traceparent": "00-2e46a47489f78e4ea0bed7355ec8b402-99d603a9ad21b643-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "265d3e6a83edfa1a0db17e03ad38135a", "x-ms-return-client-request-id": "true" @@ -507,14 +510,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:27 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "ff224f1a-2463-41d3-a8f7-6c3b01231642", + "x-ms-activity-id": "775f7aa4-f21b-46da-969d-21b9f1f14d95", "x-ms-client-request-id": [ "265d3e6a83edfa1a0db17e03ad38135a", "265d3e6a83edfa1a0db17e03ad38135a" @@ -531,8 +534,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "12/13/2019 8:12:11 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "f027a2c7-12e7-44e0-b785-dc99edde7474", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "da6e5d1e-8288-4193-9209-9e2ef66d0e39", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 1, @@ -560,11 +563,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/3", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bd58f653002c2f409bf8fc6210ce7be5-7eacd880f2bbec44-00", + "traceparent": "00-52b170d1c2dc4847b68c4f999f3cd227-f8ab8bd8e846664e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ecf737e64fd8cfe4467f90d39871c3ae", "x-ms-return-client-request-id": "true" @@ -573,14 +577,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:28 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "4c9a0629-c3d9-4c21-acf3-fb8cdbd7799c", + "x-ms-activity-id": "dd9b178e-036d-4bbd-b5d6-53a2e7e865df", "x-ms-client-request-id": [ "ecf737e64fd8cfe4467f90d39871c3ae", "ecf737e64fd8cfe4467f90d39871c3ae" @@ -597,8 +601,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 3:54:31 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "5a2e2d11-74df-42e7-a336-e04d11c088ba", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "29479477-29af-4d0e-8e7e-0efa1758ecfb", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 3, @@ -626,11 +630,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/4", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-794d4d56128f1e4a9fbd3a8e885ee137-3280fe9617be4b4e-00", + "traceparent": "00-903c2dcf3d3a2b4491a73256915a4a9d-0327ccb24fa3464a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6dbaab85d819f789d073f20c446413a9", "x-ms-return-client-request-id": "true" @@ -639,14 +644,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:28 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "1a2acea3-5c38-4099-9d35-21a7cf7a710b", + "x-ms-activity-id": "fa3ca835-dfe2-45d1-90b1-a630d78b0282", "x-ms-client-request-id": [ "6dbaab85d819f789d073f20c446413a9", "6dbaab85d819f789d073f20c446413a9" @@ -663,8 +668,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 5:39:13 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "eed4bd50-e8d6-446c-aae1-3a4f0a58b338", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "922e353d-6d88-4de3-ad28-9e2cf2caec9c", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 4, @@ -692,11 +697,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/5", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-47d4ebc81ccbff4193f29fffa3fe4a4a-d76c94aa51ad934a-00", + "traceparent": "00-eaf8abf97efaaa489b8fe4d133aba42a-7fba6d8cb3e82944-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fe2fc9ab7f621b0e598de06df246619b", "x-ms-return-client-request-id": "true" @@ -705,14 +711,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:28 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "20588c68-8c7c-4071-8625-5c7857d82da9", + "x-ms-activity-id": "16362a38-e59c-4d3e-84ce-a598187caaae", "x-ms-client-request-id": [ "fe2fc9ab7f621b0e598de06df246619b", "fe2fc9ab7f621b0e598de06df246619b" @@ -729,8 +735,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 5:48:34 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "53262477-f066-41ce-95eb-958ecefbd581", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "908982b2-d87b-4e56-9c19-71582cd3ec43", + "x-ms-response-time-ms": "27" }, "ResponseBody": { "id": 5, @@ -751,11 +757,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/12", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-93c8bd7e08b69c40bcbbb6a4e420d72f-d781f9780b62da49-00", + "traceparent": "00-b0ed6a241cfc2d49939faa43c5b0028a-8e6d0d0c4bcd7646-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "017ecfeda57e0e41ae001c655cd78be1", "x-ms-return-client-request-id": "true" @@ -764,14 +771,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:28 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "6342b5c8-8175-42b6-bdcb-a2bb9b059eea", + "x-ms-activity-id": "280b4c9e-13c2-4745-842d-dd08a21f892e", "x-ms-client-request-id": [ "017ecfeda57e0e41ae001c655cd78be1", "017ecfeda57e0e41ae001c655cd78be1" @@ -788,8 +795,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 2:36:03 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "f91c46f0-4e66-431b-b74d-ee1c12e62663", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "47261721-8c57-457a-be35-0584686ea45a", + "x-ms-response-time-ms": "27" }, "ResponseBody": { "id": 12, @@ -817,11 +824,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/13", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4d215e5cb41da24eb037a23729e64738-2959eb674a5d9a4e-00", + "traceparent": "00-28d430b6972b3b41aa677b7d07a718cd-8c2cb2a793172146-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "cf28e76bc541064c9c9f138bf71b0489", "x-ms-return-client-request-id": "true" @@ -830,14 +838,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:29 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "b7fc449f-2c7a-4a37-b30f-4d7b9c8091e1", + "x-ms-activity-id": "f795c78e-53bd-4737-a918-2f1295b71887", "x-ms-client-request-id": [ "cf28e76bc541064c9c9f138bf71b0489", "cf28e76bc541064c9c9f138bf71b0489" @@ -854,8 +862,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 3:35:41 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "34271399-22fa-4abb-a38c-dd0968fedcee", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "20342b4e-2a66-4ef2-a2c5-f1b8fd6714dc", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 13, @@ -883,11 +891,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/14", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-826bab9303903a4ab651b083cedadf4f-f7bff1482a9af54c-00", + "traceparent": "00-d481a4e5e57bc34d8af8b361bd5b6707-bf5484a53bd2334e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "741f571111e6052b87214f6262a9be81", "x-ms-return-client-request-id": "true" @@ -896,14 +905,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:29 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "668a417b-564e-438f-a3ae-b4132d56be09", + "x-ms-activity-id": "9c6e35e4-6c03-4224-b8de-c3789ab7b5f9", "x-ms-client-request-id": [ "741f571111e6052b87214f6262a9be81", "741f571111e6052b87214f6262a9be81" @@ -920,8 +929,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 3:40:32 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "c4f47dad-d1ce-4471-8ede-a7a68dd3bd25", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "0968acd5-67a5-4641-8d41-29af366e41d7", + "x-ms-response-time-ms": "47" }, "ResponseBody": { "id": 14, @@ -949,11 +958,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/15", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0f7040916a17744fab4ab2a934926c3e-1cdae459421b6c47-00", + "traceparent": "00-f0ae4bebb9d2b9429b436852b621ee67-ce80653bab9d0a46-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0b01fe02911e2759837765de92b51692", "x-ms-return-client-request-id": "true" @@ -962,14 +972,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:11 GMT", + "Date": "Wed, 26 Aug 2020 05:54:29 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "786b7b60-e06b-4e6d-b0f2-cd866ecb4e3f", + "x-ms-activity-id": "db156acb-4e6e-4ca8-8d32-c562f81c6482", "x-ms-client-request-id": [ "0b01fe02911e2759837765de92b51692", "0b01fe02911e2759837765de92b51692" @@ -986,8 +996,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/10/2020 4:25:25 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "d32dbcf5-f039-46e3-a64b-b2679ef85ca7", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "7ffa9c88-d5da-40ab-9320-80ec4a1e02d8", + "x-ms-response-time-ms": "32" }, "ResponseBody": { "id": 15, @@ -1015,11 +1025,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/16", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-50057612bbd62e49bc65bea0bc413125-f577d48a30599f44-00", + "traceparent": "00-443a1dc3117d164cb0492cea58b47145-fdf15d8731c53d4f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "045492fb16b85afbbb23482075e9a3f3", "x-ms-return-client-request-id": "true" @@ -1028,14 +1039,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:29 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "24b636a5-2698-4ba1-bd99-bc66330d117c", + "x-ms-activity-id": "cc4ffff5-3608-46cf-931e-2f10dc30af10", "x-ms-client-request-id": [ "045492fb16b85afbbb23482075e9a3f3", "045492fb16b85afbbb23482075e9a3f3" @@ -1052,8 +1063,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/13/2020 2:47:05 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "fba462ea-71fa-4a68-8f36-670f56fc1bdf", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "93a9a970-3c36-4ed8-8e9c-365622b05c13", + "x-ms-response-time-ms": "27" }, "ResponseBody": { "id": 16, @@ -1081,11 +1092,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/17", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7a7f7387536b934c9c41815ab44d606f-ea14555a0ea66e42-00", + "traceparent": "00-2f4baedc64b53a4aa878e2ba36821812-c1e01dec8024f841-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f98991e0f8197f6bfef7f06eab4c72d1", "x-ms-return-client-request-id": "true" @@ -1094,14 +1106,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:31 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "d84e86f5-0e49-4db1-b8e4-4cbbec9bf432", + "x-ms-activity-id": "748f7501-15eb-4f6b-a664-1681691e760f", "x-ms-client-request-id": [ "f98991e0f8197f6bfef7f06eab4c72d1", "f98991e0f8197f6bfef7f06eab4c72d1" @@ -1118,8 +1130,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/14/2020 8:03:16 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "a4101d6d-96a7-4234-8246-d7c0d4081da2", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "ce9e20f4-8f27-40b9-b916-d9fbf39cfffd", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 17, @@ -1147,11 +1159,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/18", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5d3b205312440f4d94498fa003476a2b-28577352ce8e064e-00", + "traceparent": "00-2262cbedffae394bbeff0f3bf8596e04-ca429925f07fea4c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d066bd0ab954ebc903a74ffb4938b199", "x-ms-return-client-request-id": "true" @@ -1160,14 +1173,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:31 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "42267a93-ac5d-42d1-a331-83a04d54a2dd", + "x-ms-activity-id": "918b0755-d7a7-4664-b9e1-8590bde28e8d", "x-ms-client-request-id": [ "d066bd0ab954ebc903a74ffb4938b199", "d066bd0ab954ebc903a74ffb4938b199" @@ -1184,8 +1197,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/14/2020 8:23:00 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "ab8330a2-b1e8-49c5-b841-0a904d09f6b3", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "4bebf813-3a09-4fd9-84c1-5f59ec39b23f", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 18, @@ -1213,11 +1226,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/19", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0184607571bf2f4194df98368ad17e52-fa86a95fd654234f-00", + "traceparent": "00-c31bd30bc0c90c4393c6644bd94d49f2-482536e1e0fcdc4a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "01fe72d41d2c027927d406c1258cae6f", "x-ms-return-client-request-id": "true" @@ -1226,14 +1240,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:31 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "87209d79-c402-46fa-b0b7-5dcb69d38e55", + "x-ms-activity-id": "59c25c1f-3db5-4e7f-90ed-27ca93d12a77", "x-ms-client-request-id": [ "01fe72d41d2c027927d406c1258cae6f", "01fe72d41d2c027927d406c1258cae6f" @@ -1250,8 +1264,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/15/2020 1:21:44 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "c8db5cf1-214b-471b-b65d-5edf2e0540db", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "de975a25-0cc3-49cb-8550-236516eb1293", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 19, @@ -1279,11 +1293,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/20", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8efc437bac691c419f2b6549a6357df3-74f100ade3f5c148-00", + "traceparent": "00-341f1f66f55ca643aa25554332fb32b3-7ce8e0a4636b9341-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b81576b0d383269ec89df672a96f35c5", "x-ms-return-client-request-id": "true" @@ -1292,14 +1307,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:31 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "7eeb8b84-dfec-4050-a1d2-2202808627b3", + "x-ms-activity-id": "5a85e2f8-58d1-437b-87b6-9048bdd75cc4", "x-ms-client-request-id": [ "b81576b0d383269ec89df672a96f35c5", "b81576b0d383269ec89df672a96f35c5" @@ -1316,8 +1331,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/16/2020 2:08:56 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "5d990f27-9f41-4a8d-8652-85cf4c716ff7", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "7f5e3383-60e5-474d-b777-d90674d4bfac", + "x-ms-response-time-ms": "26" }, "ResponseBody": { "id": 20, @@ -1345,11 +1360,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/21", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e84b28f8e6ff194893dd36edb134c96f-7bf20b8d2906ab4f-00", + "traceparent": "00-c4bdc94f06886c458c9caea26bd1192e-f5a2330e0f151d42-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "399a5745714deda54363a87fb307c676", "x-ms-return-client-request-id": "true" @@ -1358,14 +1374,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:32 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "cb614234-c437-451f-9e57-7165b7b773f7", + "x-ms-activity-id": "f08c50f3-14c0-4c78-ab25-76bc52202ed2", "x-ms-client-request-id": [ "399a5745714deda54363a87fb307c676", "399a5745714deda54363a87fb307c676" @@ -1382,8 +1398,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/16/2020 2:21:04 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "ede96fd4-c43c-4d94-b845-91e9ce4ed8e6", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "90e6f315-1e5a-4585-8f77-fa3fa6174116", + "x-ms-response-time-ms": "27" }, "ResponseBody": { "id": 21, @@ -1411,11 +1427,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/22", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-da0964f26dd61b44a2c9235a8537bd8f-6a9f0926f1bca84d-00", + "traceparent": "00-eea3b5036fbb94458fb63337827d7805-8e5f567a0b3cd043-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d34adff8f8230016d3d8398e260659b7", "x-ms-return-client-request-id": "true" @@ -1424,14 +1441,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:32 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "02a46484-1cdb-4465-9ffe-34f360fad4e8", + "x-ms-activity-id": "dad8f935-1f63-4ae2-9503-f48744294210", "x-ms-client-request-id": [ "d34adff8f8230016d3d8398e260659b7", "d34adff8f8230016d3d8398e260659b7" @@ -1448,8 +1465,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/16/2020 2:23:53 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "6a124f6b-1b39-4731-9267-f22218785441", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "ef219c51-42a0-475d-91ae-280fd180e843", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 22, @@ -1477,11 +1494,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/23", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-73bacf5422dc8840beed1d7fee414121-4e5494520694a249-00", + "traceparent": "00-8a6ce6ddff7a1646bc322d2dab463acc-f2b79e05c31b6647-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "ce7b419f75f23f21d127741f2a1e73c0", "x-ms-return-client-request-id": "true" @@ -1490,14 +1508,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:32 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "2304d690-cfc3-481a-a9be-4af8a5be43b2", + "x-ms-activity-id": "4c9d0dd2-c8e2-44a3-8c8c-cc1522fc9207", "x-ms-client-request-id": [ "ce7b419f75f23f21d127741f2a1e73c0", "ce7b419f75f23f21d127741f2a1e73c0" @@ -1514,8 +1532,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "1/16/2020 9:36:46 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "41155f5a-9bbd-4354-ba3f-0358304289fc", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "d1b10d88-e869-4e9f-b120-6d22415356da", + "x-ms-response-time-ms": "32" }, "ResponseBody": { "id": 23, @@ -1543,11 +1561,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/24", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9fc1d07bd5ac6843b5f3a6a6cf360bbd-8e2b21ea2ca73e4f-00", + "traceparent": "00-742c33d49e19b24ebd96808588898836-fe32c6d2a2fce242-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c9797fd762244ca2409965753816c63d", "x-ms-return-client-request-id": "true" @@ -1556,14 +1575,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:32 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "b1c2864b-6b6c-4775-bc56-98eede9d6e0c", + "x-ms-activity-id": "541b184e-2327-4fce-a57c-a4a6b75cdd5b", "x-ms-client-request-id": [ "c9797fd762244ca2409965753816c63d", "c9797fd762244ca2409965753816c63d" @@ -1579,8 +1598,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "1/16/2020 9:37:10 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "155f2007-03ea-4dee-b8cb-932330d69656", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "340cb4c2-d2dd-42ae-98f0-c5aa32af4916", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 24, @@ -1594,11 +1613,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/25", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-57adc5ce623a8b4aa8b955e69d94249d-ffdc5cf0cac22c4d-00", + "traceparent": "00-53b07f61a0858c42a49b650f0d58d2cc-80acaecaade7ae4d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "71e0f00af78c8384be0b02fb84f6d5b5", "x-ms-return-client-request-id": "true" @@ -1607,14 +1627,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:33 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "45fec20d-3ad7-4619-b612-66708abfa6f5", + "x-ms-activity-id": "8e94740a-2d26-413b-bb9a-6a77f397033e", "x-ms-client-request-id": [ "71e0f00af78c8384be0b02fb84f6d5b5", "71e0f00af78c8384be0b02fb84f6d5b5" @@ -1630,8 +1650,8 @@ "x-ms-job-submitted-by-name": "ca728363-7297-4e35-a9c3-c6400837883e", "x-ms-job-submitted-on": "1/16/2020 9:37:54 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "d39689e3-4e18-4c5d-b9c4-35c7fd7c01f4", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "7d38c7a6-05c0-4dd0-8dbe-71c34dac2f47", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 25, @@ -1645,11 +1665,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/batches/26", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-765105f976ee0b4c8f8f25d6dbf823d3-4f25c79044073d43-00", + "traceparent": "00-cbcbeba5a7849746ba7bb719973c7d47-238f24e540f4cf40-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a7b77865908d3d939f2e8d580fac06ba", "x-ms-return-client-request-id": "true" @@ -1658,14 +1679,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:12 GMT", + "Date": "Wed, 26 Aug 2020 05:54:33 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "afb10c25-989a-4410-84cf-35671bcad3ce", + "x-ms-activity-id": "ff462885-4e04-4180-b376-4ce545fd6cfe", "x-ms-client-request-id": [ "a7b77865908d3d939f2e8d580fac06ba", "a7b77865908d3d939f2e8d580fac06ba" @@ -1682,8 +1703,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "1/19/2020 6:44:13 AM \u002B00:00", "x-ms-job-type": "SparkServiceBatch", - "x-ms-request-id": "4e21364b-83e9-46cb-8b2f-4a595ae4b170", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "62c18ce4-fa0d-4476-85ec-d8d3d399435c", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 26, diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSession.json b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSession.json index acab5ff041dfa..18a702ef1aefd 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSession.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSession.json @@ -4,11 +4,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5ac364ac85ca0d42bd2e3b868080c90d-89d12a04fd7cf043-00", + "traceparent": "00-5d463d8ddc414a4496923e797cfbe647-19b32ce5980f954c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "326f3debae5c4c1818759405169dde77", "x-ms-return-client-request-id": "true" @@ -17,20 +18,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:36 GMT", + "Date": "Wed, 26 Aug 2020 05:54:35 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "6c4a2071-6fcc-40c4-8ac2-63cc070ec068", + "x-ms-activity-id": "3daa23dc-9355-44da-8a56-02874a052d52", "x-ms-client-request-id": [ "326f3debae5c4c1818759405169dde77", "326f3debae5c4c1818759405169dde77" ], - "x-ms-request-id": "c91f0b40-ace6-4867-acb4-3e6c23834173", - "x-ms-response-time-ms": "157" + "x-ms-request-id": "1e114151-9e8d-428d-9433-7f2195228856", + "x-ms-response-time-ms": "111" }, "ResponseBody": { "from": 0, @@ -463,11 +464,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/2", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-66e5744c43e3de4cb860e315562bf665-4964c827bf94b945-00", + "traceparent": "00-d217aa02dade4f4a843177ca710f2066-0ca83d5da3e99443-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "a00344a6a3dde3db9dad66e10a64c64f", "x-ms-return-client-request-id": "true" @@ -476,14 +478,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:36 GMT", + "Date": "Wed, 26 Aug 2020 05:54:35 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "fc83dc8d-2903-4c19-b78f-5479144a97ae", + "x-ms-activity-id": "51f94a6d-b2c6-4bdb-a08e-1c6d794126c3", "x-ms-client-request-id": [ "a00344a6a3dde3db9dad66e10a64c64f", "a00344a6a3dde3db9dad66e10a64c64f" @@ -500,8 +502,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/13/2019 8:29:09 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "80098280-426c-4e26-b127-7efeadf89ac4", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "c91aad2e-f748-4894-94bc-bae3b0998ed6", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 2, @@ -529,11 +531,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/6", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fda925d465317b40a68a3bd84f897f53-586d8c89d2e8a242-00", + "traceparent": "00-13eff22060d4034c804964695e1337d6-025b1dceb4611b4b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "c2301be2b8fecc27097d85a82e1e41a7", "x-ms-return-client-request-id": "true" @@ -542,14 +545,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:36 GMT", + "Date": "Wed, 26 Aug 2020 05:54:35 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "125f24df-a29c-4ec6-be04-4f23158bdc3b", + "x-ms-activity-id": "f245d912-bca8-44e6-b326-b7a8679d745b", "x-ms-client-request-id": [ "c2301be2b8fecc27097d85a82e1e41a7", "c2301be2b8fecc27097d85a82e1e41a7" @@ -566,8 +569,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 8:07:25 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "d07e5e22-91cc-494b-a71b-9376c9cbf402", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "5cf5899c-1281-4e5d-896f-08223ad0b267", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 6, @@ -595,11 +598,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/7", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1f084a8e7594164dad5a95c3dd54ee23-1b2b4d2c81bc4941-00", + "traceparent": "00-35cc4535b32ec847a01ee44569556076-4ae87e61c8e25449-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f818e905426f4767628c95af483742b3", "x-ms-return-client-request-id": "true" @@ -608,14 +612,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:36 GMT", + "Date": "Wed, 26 Aug 2020 05:54:36 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "8716671d-313b-4a01-bb97-e8253cf2e487", + "x-ms-activity-id": "64498a8f-612d-44ee-b6e8-7d4e8ad20e91", "x-ms-client-request-id": [ "f818e905426f4767628c95af483742b3", "f818e905426f4767628c95af483742b3" @@ -632,8 +636,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 8:16:39 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "5e52163e-96f3-45bf-8138-d39328669bb5", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "4c0793e8-aa37-4663-8da6-3095a5ac4342", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 7, @@ -661,11 +665,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/8", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d1d935a199f58049b7081d5c033164e6-3cd0112a7cc1cf4b-00", + "traceparent": "00-21050a58550325438326a0c224cfbae1-0adf54ea5dc3534e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fa2344ae1c6ced791c3797601e33b47f", "x-ms-return-client-request-id": "true" @@ -674,14 +679,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:36 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "2d0e4c2a-7dba-44e4-b48f-40a3045be7f1", + "x-ms-activity-id": "99582867-3914-4e1c-9daf-8fbd2558f3d7", "x-ms-client-request-id": [ "fa2344ae1c6ced791c3797601e33b47f", "fa2344ae1c6ced791c3797601e33b47f" @@ -698,8 +703,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 8:29:41 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "d4a1f272-427b-455c-acea-9d52a47dda34", - "x-ms-response-time-ms": "37" + "x-ms-request-id": "7fe54fb1-9b5e-4f39-a8b6-aa665d19baa4", + "x-ms-response-time-ms": "50" }, "ResponseBody": { "id": 8, @@ -727,11 +732,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/9", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6e0d2ad89eadf0448c47c2fffd30c01a-096a239b3596dc45-00", + "traceparent": "00-b3df01029107ac418145070a4a083213-23bacbbac14e9f4d-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "20dcbf6bce4c9fdfb4e86072237883d2", "x-ms-return-client-request-id": "true" @@ -740,14 +746,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:36 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "896b7a25-cfba-4c3a-b06c-1d5e96cf6e1a", + "x-ms-activity-id": "f15a1e79-a703-4c7b-996f-d65382254d1c", "x-ms-client-request-id": [ "20dcbf6bce4c9fdfb4e86072237883d2", "20dcbf6bce4c9fdfb4e86072237883d2" @@ -764,7 +770,7 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 9:11:30 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "a5daae11-3fe9-4013-a0db-3bc02addf0da", + "x-ms-request-id": "3ec6086f-c1ed-4478-9a2d-638d44a725d1", "x-ms-response-time-ms": "29" }, "ResponseBody": { @@ -793,11 +799,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/10", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a81c7b580d987140bc850518ac4e25d7-8b8b8ca55ab7c24d-00", + "traceparent": "00-87ed959b98fa6844ad8a027b4d461247-aca52534e4456646-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "eafad13a46fbe83a702adb38ab07282e", "x-ms-return-client-request-id": "true" @@ -806,14 +813,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:36 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "852a83dc-23c5-4133-8b01-8eadfb6979c2", + "x-ms-activity-id": "bbb258cf-c810-4ef1-aa33-a7af5b91a5d2", "x-ms-client-request-id": [ "eafad13a46fbe83a702adb38ab07282e", "eafad13a46fbe83a702adb38ab07282e" @@ -830,8 +837,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 10:06:18 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "4d430ca2-6e8d-452a-9956-45c58baafd65", - "x-ms-response-time-ms": "44" + "x-ms-request-id": "4438cf87-7d37-4eb9-a190-b940c68d0a53", + "x-ms-response-time-ms": "52" }, "ResponseBody": { "id": 10, @@ -859,11 +866,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/11", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35965f7e5cdf7145888e1631cf529770-4efe945b39d9544f-00", + "traceparent": "00-e86b461901023846ad148045e0a1b195-e86dddde5586c142-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "894315d7215bdf6765834683bb07caa3", "x-ms-return-client-request-id": "true" @@ -872,14 +880,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:37 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "89c6a0b5-dade-45a1-8cc3-0b676353321a", + "x-ms-activity-id": "ca583719-766c-447e-8463-94218aaca446", "x-ms-client-request-id": [ "894315d7215bdf6765834683bb07caa3", "894315d7215bdf6765834683bb07caa3" @@ -896,8 +904,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 10:06:57 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "0c971ff1-4f61-4c0b-9b51-fec5056c683b", - "x-ms-response-time-ms": "29" + "x-ms-request-id": "5563d1a8-c620-462e-8231-eda3a131b026", + "x-ms-response-time-ms": "38" }, "ResponseBody": { "id": 11, @@ -925,11 +933,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/34", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4185f1a11758824b9f648e07b750a976-56821004b2a9564c-00", + "traceparent": "00-ec9bc5f40b1d5b458c0b2d08f6a56838-fe5208b9d34a4f40-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4d25c5b3ca39248384f3b021f3a7f4ac", "x-ms-return-client-request-id": "true" @@ -938,14 +947,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:37 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "108d5e03-9591-4fcf-99fd-137b029f4999", + "x-ms-activity-id": "8cc06b9b-0716-4d9a-a24b-3dee2541070a", "x-ms-client-request-id": [ "4d25c5b3ca39248384f3b021f3a7f4ac", "4d25c5b3ca39248384f3b021f3a7f4ac" @@ -962,8 +971,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/19/2020 3:54:27 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "7e0063d4-a852-4a63-bc78-10a6518ea7fe", - "x-ms-response-time-ms": "43" + "x-ms-request-id": "58816269-29aa-487f-90ae-145277e5d221", + "x-ms-response-time-ms": "51" }, "ResponseBody": { "id": 34, @@ -991,11 +1000,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/43", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c3389cf9b9ea704980e4ebd672a282fd-0fe47df511e74f49-00", + "traceparent": "00-0fcd462ca111364ba51fabb8e22908e9-5543e61ea4676e49-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "0d9a31c0fa341977691a847700b62d69", "x-ms-return-client-request-id": "true" @@ -1004,14 +1014,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:37 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "c0ea48ee-ccb2-49d0-bafd-6c2a18b743cc", + "x-ms-activity-id": "df6c20c3-22e1-494c-8cab-5835cdee861e", "x-ms-client-request-id": [ "0d9a31c0fa341977691a847700b62d69", "0d9a31c0fa341977691a847700b62d69" @@ -1028,8 +1038,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 12:47:31 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "1440f765-668e-4f21-b5aa-475afd83919c", - "x-ms-response-time-ms": "43" + "x-ms-request-id": "41a719b4-5c41-4335-b6f9-05a7b1fe2012", + "x-ms-response-time-ms": "42" }, "ResponseBody": { "id": 43, @@ -1057,11 +1067,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/44", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5cf1399be078874dbd53ac7b47e27337-5e6a727a25d3ed41-00", + "traceparent": "00-df491475cadc924f81650b35f60f7b10-5c89a2f6bebe4345-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "e6843760dbe20df5911e04677146ecbe", "x-ms-return-client-request-id": "true" @@ -1070,14 +1081,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:37 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "8fa582b6-01f1-4701-a66f-2244f4996f33", + "x-ms-activity-id": "44230722-bb72-435f-8019-1ea55fd158e1", "x-ms-client-request-id": [ "e6843760dbe20df5911e04677146ecbe", "e6843760dbe20df5911e04677146ecbe" @@ -1094,8 +1105,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:00:34 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "bdf5442d-89a6-4e7a-8458-9d058471f661", - "x-ms-response-time-ms": "29" + "x-ms-request-id": "66c1f789-8777-497f-81df-b7932202a350", + "x-ms-response-time-ms": "52" }, "ResponseBody": { "id": 44, @@ -1123,11 +1134,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/45", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8a809f7b13e60c4996fc864ac76ca4b3-99d5e0e76bafa642-00", + "traceparent": "00-d827fe6285da7941842e2d3b86010644-b542f27a02bada41-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "89c3998fbd6cb86f4e0be31f450c24cd", "x-ms-return-client-request-id": "true" @@ -1136,14 +1148,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:38 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "655a50a9-98f5-47e5-bf95-07e92e026318", + "x-ms-activity-id": "3a0d8bd6-5136-4f2f-b31a-adb801bb9fe1", "x-ms-client-request-id": [ "89c3998fbd6cb86f4e0be31f450c24cd", "89c3998fbd6cb86f4e0be31f450c24cd" @@ -1160,8 +1172,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:24:11 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "c2dc1735-f42f-4f44-afe9-c44ef70b7268", - "x-ms-response-time-ms": "29" + "x-ms-request-id": "2a10bb3f-4a6f-4ef5-a61b-492da833ab8f", + "x-ms-response-time-ms": "53" }, "ResponseBody": { "id": 45, @@ -1189,11 +1201,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/46", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-679854f7ba783c4c896e9483f2d0d762-14104d0a368ead41-00", + "traceparent": "00-dcd91f59bb5b244689c8beae224f36ad-86727e322c3d784f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bbc046c60d22e4ca3c8d7b16f50fa823", "x-ms-return-client-request-id": "true" @@ -1202,14 +1215,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:37 GMT", + "Date": "Wed, 26 Aug 2020 05:54:38 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "ae5f8f5a-6b0e-4310-af04-8d745f4c9ca4", + "x-ms-activity-id": "881bbef8-25e3-4371-9d24-98e0a8f4b8d9", "x-ms-client-request-id": [ "bbc046c60d22e4ca3c8d7b16f50fa823", "bbc046c60d22e4ca3c8d7b16f50fa823" @@ -1226,8 +1239,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:32:18 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "e24aca72-42ab-4049-b0f4-f28654e82760", - "x-ms-response-time-ms": "42" + "x-ms-request-id": "31408517-af47-4819-a06e-50840c26eec4", + "x-ms-response-time-ms": "52" }, "ResponseBody": { "id": 46, @@ -1255,11 +1268,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/47", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-60547617efbd64489c6336ef6d3c8fab-4fbd20bae0729d41-00", + "traceparent": "00-21f0eec03c42cd46af363d43c5932e27-602d2bdaaf2a054e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "66e8c62da3f2a2fcc8cc97d6f8d6c785", "x-ms-return-client-request-id": "true" @@ -1268,14 +1282,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:38 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "5558b7f6-c43c-4e25-b2fe-3682334b3048", + "x-ms-activity-id": "4125d1ea-16f9-4e1e-8262-30ce819737e8", "x-ms-client-request-id": [ "66e8c62da3f2a2fcc8cc97d6f8d6c785", "66e8c62da3f2a2fcc8cc97d6f8d6c785" @@ -1292,8 +1306,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:35:42 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "6f72325f-4452-4858-80c6-670595f30058", - "x-ms-response-time-ms": "28" + "x-ms-request-id": "cbee5fab-af24-43c5-af6d-16e5465ebb33", + "x-ms-response-time-ms": "44" }, "ResponseBody": { "id": 47, @@ -1321,11 +1335,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/48", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-24e23d0a4571d34497618fa09d2a4e7f-f2ae49c5fca80845-00", + "traceparent": "00-7295a9a48868844eaa525b3a4b201eb2-b355a45199a4e24b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "2aa136fa3185819bcfdf4dde4158c33e", "x-ms-return-client-request-id": "true" @@ -1334,14 +1349,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:38 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "c930adf1-e895-49b4-bbef-67adaa39f1d3", + "x-ms-activity-id": "1f67f107-0368-4389-973f-026d0a5527ea", "x-ms-client-request-id": [ "2aa136fa3185819bcfdf4dde4158c33e", "2aa136fa3185819bcfdf4dde4158c33e" @@ -1358,8 +1373,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:38:42 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "8ca771da-cd82-4e38-97ef-686b0f003be4", - "x-ms-response-time-ms": "29" + "x-ms-request-id": "bab05be9-34b0-44d3-82c4-5b2a537626cc", + "x-ms-response-time-ms": "40" }, "ResponseBody": { "id": 48, @@ -1387,11 +1402,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/49", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82e6c91f3edb9c4ea730948ca056aaa9-26355ada23f22f43-00", + "traceparent": "00-81ee4004b7f6e94f8d4ca3dc59b17f79-edf96701fdee4f49-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7ff1c063bd2322db4a1ef25675f3ec65", "x-ms-return-client-request-id": "true" @@ -1400,14 +1416,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:39 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "f495530d-48a9-4312-98fe-a8d9d44d2197", + "x-ms-activity-id": "79b0d821-79e7-4cbc-bcbe-aeb8a87bd826", "x-ms-client-request-id": [ "7ff1c063bd2322db4a1ef25675f3ec65", "7ff1c063bd2322db4a1ef25675f3ec65" @@ -1424,8 +1440,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 2:35:24 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "ffffe2d2-631f-4a70-ae4e-0fbe3cdaee53", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "abc00a57-7034-4edd-991c-a226f188234f", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 49, @@ -1453,11 +1469,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/50", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d25c2df3302add43ba0786102dfd71d4-9ba538f768cc934b-00", + "traceparent": "00-419c06d8ead03943b994be8e645bbe05-5d0d7921991f074e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "be1bf5c67e6dfc9d2a679613551e606f", "x-ms-return-client-request-id": "true" @@ -1466,14 +1483,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:39 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "a25ec87a-d433-4caf-b349-1d89f7d45f7b", + "x-ms-activity-id": "c7127e00-db5d-4fab-9678-98f3502b0b53", "x-ms-client-request-id": [ "be1bf5c67e6dfc9d2a679613551e606f", "be1bf5c67e6dfc9d2a679613551e606f" @@ -1490,8 +1507,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 2:43:25 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "5d93a9bb-7d58-4b18-92e5-d9162247a934", - "x-ms-response-time-ms": "43" + "x-ms-request-id": "e853c88f-3b34-43af-966d-b3f29c9823e6", + "x-ms-response-time-ms": "52" }, "ResponseBody": { "id": 50, @@ -1519,11 +1536,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/51", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-430a54b4f418f5458a5f6701722d5fda-f5fa69a51e951b4d-00", + "traceparent": "00-0ecb20eb120ad740907e7e8ef1a6f8ab-c0783c37d38cf343-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3773580847e53c625b7fe0673e450bdc", "x-ms-return-client-request-id": "true" @@ -1532,14 +1550,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:39 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "387fe288-cef4-4664-bf15-84bcce80ff69", + "x-ms-activity-id": "5fbf976d-5abd-4f2e-9d79-781bf6578663", "x-ms-client-request-id": [ "3773580847e53c625b7fe0673e450bdc", "3773580847e53c625b7fe0673e450bdc" @@ -1556,8 +1574,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 2:54:47 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "6587bd8f-8260-4cc0-b72f-d420c4d0fea8", - "x-ms-response-time-ms": "28" + "x-ms-request-id": "4097904e-d1c3-4a66-925a-0c4c26d7ed53", + "x-ms-response-time-ms": "66" }, "ResponseBody": { "id": 51, @@ -1585,11 +1603,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/52", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-31ae6834a7bbee4f8ba36fbee9fac5bb-5b1407b160c05247-00", + "traceparent": "00-90546f9d2637df45a6a27e4b3af612b5-04b2d666c437d64b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "4c18e7f2043de5d122f454bc26c7cc2c", "x-ms-return-client-request-id": "true" @@ -1598,14 +1617,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:39 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "f14d29a4-2ce5-4e03-88a7-c0947cc8b480", + "x-ms-activity-id": "26b34845-efc7-408d-92dd-a2521079fafa", "x-ms-client-request-id": [ "4c18e7f2043de5d122f454bc26c7cc2c", "4c18e7f2043de5d122f454bc26c7cc2c" @@ -1622,8 +1641,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 3:06:04 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "65077b56-47e4-469f-91ef-d97ce5cdcb23", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "560bfa04-93cb-4974-9ba2-e76f6d3a8f38", + "x-ms-response-time-ms": "31" }, "ResponseBody": { "id": 52, @@ -1651,11 +1670,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/53", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-563e5efac7ed5a48a35dbc22413da30b-9d815c09aa534f4f-00", + "traceparent": "00-7f67e10ea280ab4b94b7b741cd89009e-d052def854250142-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "1c4d83bdb4807e8093de63ee9d36bee5", "x-ms-return-client-request-id": "true" @@ -1664,14 +1684,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:40 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "dc4f7803-477c-44ac-9158-d69d940ef419", + "x-ms-activity-id": "e65c281b-b26d-46ef-ad55-c4671d6197d0", "x-ms-client-request-id": [ "1c4d83bdb4807e8093de63ee9d36bee5", "1c4d83bdb4807e8093de63ee9d36bee5" @@ -1688,8 +1708,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 3:13:42 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "a0785832-cdbd-4819-9b00-53660e71c4cf", - "x-ms-response-time-ms": "42" + "x-ms-request-id": "29c42b14-98c1-41b9-b3d6-2167b73ff650", + "x-ms-response-time-ms": "39" }, "ResponseBody": { "id": 53, @@ -1717,11 +1737,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/54", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bec5b393d51ab145bcf449a94f4f26ee-eee3a398bcacf841-00", + "traceparent": "00-9e17405a8dd6d94d870d8520e186f0f1-5fb44a1c2163844a-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6d21ba5b14050432878d15f0f2a51594", "x-ms-return-client-request-id": "true" @@ -1730,14 +1751,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:38 GMT", + "Date": "Wed, 26 Aug 2020 05:54:40 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "99d47b2c-3654-49e2-886f-a2bbfad9cb6d", + "x-ms-activity-id": "d00729ea-0737-41bb-be6a-88cc7e960ddf", "x-ms-client-request-id": [ "6d21ba5b14050432878d15f0f2a51594", "6d21ba5b14050432878d15f0f2a51594" @@ -1754,8 +1775,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 3:38:56 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "a7814dbf-885e-40b1-ba71-8536f054ee34", - "x-ms-response-time-ms": "28" + "x-ms-request-id": "123ea2e2-2bb6-445c-b686-6bd383b0502a", + "x-ms-response-time-ms": "48" }, "ResponseBody": { "id": 54, diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSessionAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSessionAsync.json index e560fa281b9ac..cd6269a576578 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSessionAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/tests/SessionRecords/SparkSessionClientLiveTests/TestGetSparkSessionAsync.json @@ -4,11 +4,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f14a6f95ee39fa469196c652363a02b0-3cfc266513535943-00", + "traceparent": "00-de3eb5963af92a4bb4f3aaad5c68359e-5e04b9b737576348-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "bbd241b8e2683b7fdabbf2fbfd6e3e06", "x-ms-return-client-request-id": "true" @@ -17,20 +18,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:42 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "b56e062d-5d1d-41a3-adc1-9a457d5f1771", + "x-ms-activity-id": "c25e1a99-ffab-422a-be02-ac94826b9806", "x-ms-client-request-id": [ "bbd241b8e2683b7fdabbf2fbfd6e3e06", "bbd241b8e2683b7fdabbf2fbfd6e3e06" ], - "x-ms-request-id": "247a852a-ae0d-4fc3-9b4c-892411a5682b", - "x-ms-response-time-ms": "55" + "x-ms-request-id": "a31d6e2e-f16b-4c27-8207-a229d2106af9", + "x-ms-response-time-ms": "120" }, "ResponseBody": { "from": 0, @@ -463,11 +464,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/2", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9bdd5f9ee8f25f4c8300e5bbb6b3c68b-ba1975f00f5fbf40-00", + "traceparent": "00-c8d2361f0c37c547929d95d966fbf73a-3e0f4b6039c82c45-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "260f1fd56d816115e3a0cb338aa4a696", "x-ms-return-client-request-id": "true" @@ -476,14 +478,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:42 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "3eda6ed4-78c2-4309-b1f4-f2d5a3dcef75", + "x-ms-activity-id": "ea9ce154-957a-49c6-8d32-23292353801e", "x-ms-client-request-id": [ "260f1fd56d816115e3a0cb338aa4a696", "260f1fd56d816115e3a0cb338aa4a696" @@ -500,8 +502,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/13/2019 8:29:09 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "a8fe3c79-4733-4b40-ad95-8c9fef0deb52", - "x-ms-response-time-ms": "16" + "x-ms-request-id": "f478d73e-b6fc-4a0c-9f41-80184f117e99", + "x-ms-response-time-ms": "29" }, "ResponseBody": { "id": 2, @@ -529,11 +531,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/6", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e6068c5ed65dca4a882cf4f4e9d49a8e-b517a03122d4994b-00", + "traceparent": "00-a8c74bd3016eb54883cfa917c0f57e3e-8263370750262848-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "5acf011e4ad7f676d28d58c6633f49f2", "x-ms-return-client-request-id": "true" @@ -542,14 +545,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:42 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "e8505e78-26b3-46b0-8768-a5be1d320bed", + "x-ms-activity-id": "235342aa-94dc-4c4d-aa6d-e31bf1e6e846", "x-ms-client-request-id": [ "5acf011e4ad7f676d28d58c6633f49f2", "5acf011e4ad7f676d28d58c6633f49f2" @@ -566,8 +569,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 8:07:25 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "f6ba7ec7-2a5b-4c69-a0a1-e5056adc42e8", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "abd7c401-211d-4014-9df6-bd79d8b9d22a", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 6, @@ -595,11 +598,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/7", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2bdef3aa78e56f45862c099ed4d26f80-9002dce0974d3e47-00", + "traceparent": "00-a71547f8b9057544893d6d89baaf1fc1-683ffb45419a5947-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "d7e01a4efaa04a362c70d7c8174bb036", "x-ms-return-client-request-id": "true" @@ -608,14 +612,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:43 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "1dab8725-2554-4c8b-ad36-68114650a6f1", + "x-ms-activity-id": "0705ae9a-1b5e-4fc2-987c-cc727f0d5308", "x-ms-client-request-id": [ "d7e01a4efaa04a362c70d7c8174bb036", "d7e01a4efaa04a362c70d7c8174bb036" @@ -632,8 +636,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 8:16:39 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "46bb1a92-63c7-47ef-9c75-5d6487ae0f32", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "86be2dfa-447f-40d7-aec6-69a48d9b73c2", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 7, @@ -661,11 +665,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/8", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bfecfa745467cf4f821ee2ffd2a46531-144b4b9827a2074e-00", + "traceparent": "00-d07402786bbe1543985e62aa12bd44cd-2db557740d1f344c-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "fcdd5c15e39f8a2fa91953f3154ffea4", "x-ms-return-client-request-id": "true" @@ -674,14 +679,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:43 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "c6fa6d8c-a9a1-4c92-95ca-96cf2d20e494", + "x-ms-activity-id": "5015a04e-fc03-41a1-a646-418602d39cac", "x-ms-client-request-id": [ "fcdd5c15e39f8a2fa91953f3154ffea4", "fcdd5c15e39f8a2fa91953f3154ffea4" @@ -698,8 +703,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 8:29:41 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "1583ef73-fa38-4478-bca8-861c22c769be", - "x-ms-response-time-ms": "37" + "x-ms-request-id": "25042e29-1014-4480-a71c-687f630805ec", + "x-ms-response-time-ms": "50" }, "ResponseBody": { "id": 8, @@ -727,11 +732,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/9", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1bfddbec4bef5346aa24ecd5f96ee66c-2d9bd510daa23f4b-00", + "traceparent": "00-212232825a811d4e9e9d383822d89331-6f9ee54d5a665844-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "70e4d856cec423f5cb842d6672aede87", "x-ms-return-client-request-id": "true" @@ -740,14 +746,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:43 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "1c97df94-73bb-4ad4-91f4-098540b49f99", + "x-ms-activity-id": "25b7f0f3-9797-42b6-9690-a8e0a0fe490d", "x-ms-client-request-id": [ "70e4d856cec423f5cb842d6672aede87", "70e4d856cec423f5cb842d6672aede87" @@ -764,8 +770,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 9:11:30 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "7cdb4e3f-c7d9-4e5e-b5e5-05967484920c", - "x-ms-response-time-ms": "15" + "x-ms-request-id": "9bcfdf66-9820-44e2-844a-0a1497481dbb", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 9, @@ -793,11 +799,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/10", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-09f19d49da0cb34889df1ff774c5029d-c2163ad93328a54c-00", + "traceparent": "00-5bd8c88318889940bd8fde201bc18f75-11f9353b5d1b964f-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "06b022dd4d626a53ea552e86a74235dd", "x-ms-return-client-request-id": "true" @@ -806,14 +813,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:43 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "850d9e98-9305-4ada-911c-28f23166498b", + "x-ms-activity-id": "11852a82-d343-493f-b90d-eec4c6cac305", "x-ms-client-request-id": [ "06b022dd4d626a53ea552e86a74235dd", "06b022dd4d626a53ea552e86a74235dd" @@ -830,8 +837,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 10:06:18 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "ea205d31-b71f-482c-826a-e6ccffbe2da2", - "x-ms-response-time-ms": "43" + "x-ms-request-id": "59901d78-b599-4c04-bedd-f57e4158f187", + "x-ms-response-time-ms": "56" }, "ResponseBody": { "id": 10, @@ -859,11 +866,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/11", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-aa0c527b642c504183b18e7304a1d87c-5da14de8bccba547-00", + "traceparent": "00-11e3bda536e9aa4f801cf21ffe30cccf-557bbf28b99cb346-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3f7133724066477166b9301bb6c818fb", "x-ms-return-client-request-id": "true" @@ -872,14 +880,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:44 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "08f1f27e-261c-410f-a829-102e70bb8f6f", + "x-ms-activity-id": "a502a3bc-35b6-44bc-a183-645cbad80dcd", "x-ms-client-request-id": [ "3f7133724066477166b9301bb6c818fb", "3f7133724066477166b9301bb6c818fb" @@ -896,8 +904,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "12/25/2019 10:06:57 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "ed75d322-b18e-438a-ba84-bf6ee951a75b", - "x-ms-response-time-ms": "29" + "x-ms-request-id": "a5d26fe6-e6e5-46f2-8885-79b404948af1", + "x-ms-response-time-ms": "45" }, "ResponseBody": { "id": 11, @@ -925,11 +933,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/34", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f8f03085abd0294d80b0b9dee194a722-17c26fa3521c934b-00", + "traceparent": "00-e0cd7d2242f5ec489010c5900076f0e2-049203d3052cd249-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "f216cb3bf79e0841847a856ea06f7c88", "x-ms-return-client-request-id": "true" @@ -938,14 +947,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:39 GMT", + "Date": "Wed, 26 Aug 2020 05:54:44 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "c88d1145-435f-4f6c-9990-953f9fe2544f", + "x-ms-activity-id": "5a248e84-31cd-457c-8983-08b2a486a19f", "x-ms-client-request-id": [ "f216cb3bf79e0841847a856ea06f7c88", "f216cb3bf79e0841847a856ea06f7c88" @@ -962,8 +971,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/19/2020 3:54:27 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "446acf75-e2eb-4cc1-8258-e2e27376c436", - "x-ms-response-time-ms": "44" + "x-ms-request-id": "01ff46dc-0088-470d-9201-6379dfdb7419", + "x-ms-response-time-ms": "41" }, "ResponseBody": { "id": 34, @@ -991,11 +1000,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/43", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7df818309eec294baeabf7a58af8c47b-868eff8fd3d39a47-00", + "traceparent": "00-7940179ed895694fbbf43c9d3f514e62-c803ddc228932540-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "3ff4504e9f3c9c20b0699fa91c37b421", "x-ms-return-client-request-id": "true" @@ -1004,14 +1014,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:44 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "3cbe3ef8-7de1-4013-87d3-3b3fe63227a1", + "x-ms-activity-id": "b22d57fa-8dbf-446b-9cf3-dee784bfcd66", "x-ms-client-request-id": [ "3ff4504e9f3c9c20b0699fa91c37b421", "3ff4504e9f3c9c20b0699fa91c37b421" @@ -1028,8 +1038,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 12:47:31 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "bd838351-715e-4bdd-b890-654254acaf5d", - "x-ms-response-time-ms": "26" + "x-ms-request-id": "adec0356-c8fb-46bf-9dc6-717a2de8a17d", + "x-ms-response-time-ms": "52" }, "ResponseBody": { "id": 43, @@ -1057,11 +1067,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/44", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-589020f2eef4274b9a368f52204b9ec5-a0972e61f76a7f47-00", + "traceparent": "00-29797564bac6da4a8d511e33718e37e4-b7ca7f54c16a844e-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "db4b323d432b7a3ff169baecba03a6f7", "x-ms-return-client-request-id": "true" @@ -1070,14 +1081,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:44 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "4c240e8c-8e6d-4197-9ab2-c5a82b38f12c", + "x-ms-activity-id": "df79ba40-db81-45db-8332-78416ed1f31a", "x-ms-client-request-id": [ "db4b323d432b7a3ff169baecba03a6f7", "db4b323d432b7a3ff169baecba03a6f7" @@ -1094,8 +1105,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:00:34 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "07c5690a-4edd-4d2c-9fbe-fa4f20c2997e", - "x-ms-response-time-ms": "27" + "x-ms-request-id": "d592cc70-8904-480c-a5f1-31e3461c57cb", + "x-ms-response-time-ms": "44" }, "ResponseBody": { "id": 44, @@ -1123,11 +1134,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/45", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-28296f72cd3be748be00c473e4a6f726-6cad76287e48924e-00", + "traceparent": "00-a63edde89db3f54dbd23f6bbf72126e1-e6ec2480f27b8a42-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "65cda73dd8d49cbfab7942355898eb4d", "x-ms-return-client-request-id": "true" @@ -1136,14 +1148,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:45 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "551deaac-0889-4f32-afeb-c2caff2e1c24", + "x-ms-activity-id": "b30f5469-c915-4f75-8c1a-60df0df75533", "x-ms-client-request-id": [ "65cda73dd8d49cbfab7942355898eb4d", "65cda73dd8d49cbfab7942355898eb4d" @@ -1160,8 +1172,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:24:11 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "3d869b51-a902-4f88-8376-dacb97cd4b30", - "x-ms-response-time-ms": "33" + "x-ms-request-id": "66e57150-4f1d-4023-a0d4-e85afe3ed9f9", + "x-ms-response-time-ms": "47" }, "ResponseBody": { "id": 45, @@ -1189,11 +1201,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/46", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fbd893bfaa79234b8a48a75b5497a182-7e0e1f4fcb2edf4a-00", + "traceparent": "00-a6377dd0b7c6c1408c7b773b67bd7ef1-b01c3adfc6208b41-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6e3164c5a0240b5d11794dd2e433e2ad", "x-ms-return-client-request-id": "true" @@ -1202,14 +1215,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:45 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "14fdc666-7f11-4ea7-a012-3829f73447d6", + "x-ms-activity-id": "cb00f243-6fdd-4cc9-a6a3-237fd14b503c", "x-ms-client-request-id": [ "6e3164c5a0240b5d11794dd2e433e2ad", "6e3164c5a0240b5d11794dd2e433e2ad" @@ -1226,8 +1239,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:32:18 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "5e036b1e-023e-45a7-8779-076082a87acb", - "x-ms-response-time-ms": "44" + "x-ms-request-id": "55013c69-19b8-4dba-9865-844481e0526a", + "x-ms-response-time-ms": "50" }, "ResponseBody": { "id": 46, @@ -1255,11 +1268,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/47", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-98005656998aba469749f5f055d46163-d742567e93d62546-00", + "traceparent": "00-9e9d1b7fe93721438caa9e1eb6e745cf-6963451cdeac474b-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "746ba8c24e6a644c72ae30b1000a2258", "x-ms-return-client-request-id": "true" @@ -1268,14 +1282,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:45 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "067fb48f-36b4-4d4c-ba6b-1c3d7ca683c5", + "x-ms-activity-id": "1a690ba4-fc35-44e2-ae8c-1aa377913c5a", "x-ms-client-request-id": [ "746ba8c24e6a644c72ae30b1000a2258", "746ba8c24e6a644c72ae30b1000a2258" @@ -1292,8 +1306,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:35:42 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "4d2eb5ed-8879-410d-9df4-54e3ee81a49b", - "x-ms-response-time-ms": "28" + "x-ms-request-id": "0a203018-8509-4d4d-be85-84d5c7cf39e1", + "x-ms-response-time-ms": "51" }, "ResponseBody": { "id": 47, @@ -1321,11 +1335,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/48", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9dd30cb9ae43c64ab529fbbd45bbcf98-191b1799806e4041-00", + "traceparent": "00-b0429d7842033c4eaab35b503948b152-51234a675e5a3846-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "56276d7d38d19dd34ac1545b8becb777", "x-ms-return-client-request-id": "true" @@ -1334,14 +1349,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:46 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "52bc5526-dc7b-497a-9ab3-d1852c106197", + "x-ms-activity-id": "8da50601-d82e-46bc-b2c4-38fe255340c9", "x-ms-client-request-id": [ "56276d7d38d19dd34ac1545b8becb777", "56276d7d38d19dd34ac1545b8becb777" @@ -1358,8 +1373,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/26/2020 1:38:42 PM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "128cac81-9d39-448f-8c52-560a1aade0b9", - "x-ms-response-time-ms": "34" + "x-ms-request-id": "dda4d014-05e5-421c-85ed-6b003cd2893f", + "x-ms-response-time-ms": "52" }, "ResponseBody": { "id": 48, @@ -1387,11 +1402,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/49", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cdd4ab4a8587d848a53f9543948b2247-6d21570153b7ae43-00", + "traceparent": "00-ac3079fb7fb08d44b8566236628debc6-bc0519c73f8e2341-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "af729597772d76e217ccfb7570ab0a07", "x-ms-return-client-request-id": "true" @@ -1400,14 +1416,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:46 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "87ac31aa-408b-4ca5-b2ef-30deb13f48d3", + "x-ms-activity-id": "b5cab736-6526-4889-b537-a1b2333f05b7", "x-ms-client-request-id": [ "af729597772d76e217ccfb7570ab0a07", "af729597772d76e217ccfb7570ab0a07" @@ -1424,8 +1440,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 2:35:24 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "710a651d-a8d9-443b-98b4-efdd06bc12f9", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "428c22cc-78ae-4fb4-953d-70e18bf6fb1d", + "x-ms-response-time-ms": "28" }, "ResponseBody": { "id": 49, @@ -1453,11 +1469,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/50", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7c80e983a599c043aab689cb7e042882-513fad9b1e7a7f42-00", + "traceparent": "00-f5319e96c8021846937e22caadd49e07-689b4b824f89d142-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "7755f4578c0c89dbd4ce2aa8faf1d985", "x-ms-return-client-request-id": "true" @@ -1466,14 +1483,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:46 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "e687d482-bce3-4ff2-9d8b-05dcdc22e242", + "x-ms-activity-id": "0b5f5ec6-5771-4920-ac65-c1d700e4c883", "x-ms-client-request-id": [ "7755f4578c0c89dbd4ce2aa8faf1d985", "7755f4578c0c89dbd4ce2aa8faf1d985" @@ -1490,8 +1507,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 2:43:25 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "b465d487-ab49-4d7b-97b5-4f66c84779f1", - "x-ms-response-time-ms": "32" + "x-ms-request-id": "ef8230f8-b350-49e5-b99f-a99c67fd345e", + "x-ms-response-time-ms": "39" }, "ResponseBody": { "id": 50, @@ -1519,11 +1536,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/51", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b5b6308dda4aca45a8488b7c2b865f3c-069edc513ce1fd4f-00", + "traceparent": "00-f43cdf8610b174408d162984b11e31ac-be7d18bddfd3ad42-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "6b1ab8f77297062b8ab03f053d5d2d9e", "x-ms-return-client-request-id": "true" @@ -1532,14 +1550,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:46 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "5ed73338-3c4d-4d73-ba35-e5ed15e69850", + "x-ms-activity-id": "85f4f2ae-7841-4401-b14e-e438efff7cff", "x-ms-client-request-id": [ "6b1ab8f77297062b8ab03f053d5d2d9e", "6b1ab8f77297062b8ab03f053d5d2d9e" @@ -1556,8 +1574,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 2:54:47 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "a26562bf-e2e1-46f8-9522-8c03b7b1df66", - "x-ms-response-time-ms": "28" + "x-ms-request-id": "c1095215-8763-4506-b1ea-f35e422c7958", + "x-ms-response-time-ms": "54" }, "ResponseBody": { "id": 51, @@ -1585,11 +1603,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/52", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6f257205e994a645bd9703bff7ab2777-0e7ffc3345372247-00", + "traceparent": "00-3882913f4615bf4fbd83727914f6a981-7bf097092c6ff347-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "97034db73f970a6bbae8da5e4c397c25", "x-ms-return-client-request-id": "true" @@ -1598,14 +1617,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:40 GMT", + "Date": "Wed, 26 Aug 2020 05:54:48 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "9c6eec57-5760-4660-a802-61dd06d75f59", + "x-ms-activity-id": "6dba5ede-7f1b-4a15-9cc9-4dc6be47f1f4", "x-ms-client-request-id": [ "97034db73f970a6bbae8da5e4c397c25", "97034db73f970a6bbae8da5e4c397c25" @@ -1622,8 +1641,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 3:06:04 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "0a1caecb-a7fa-4411-bcb2-07a1a2a4d6dd", - "x-ms-response-time-ms": "14" + "x-ms-request-id": "6cee2dd7-7a24-4f12-977d-a90d6dc209e9", + "x-ms-response-time-ms": "30" }, "ResponseBody": { "id": 52, @@ -1651,11 +1670,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/53", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5b65ab2effde4a4d9adbeaa2f1799eb7-18edca348bb5e647-00", + "traceparent": "00-1efad168a07838458c9788c16fc39a78-1365a3dbedda2142-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "b77d75f39f91e46fc84fec5b4dd54c76", "x-ms-return-client-request-id": "true" @@ -1664,14 +1684,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:42 GMT", + "Date": "Wed, 26 Aug 2020 05:54:48 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "b256e54d-e054-4c07-adef-dc370bb29e7a", + "x-ms-activity-id": "17e9b4a5-ecf5-4f0b-8052-46c5cbfab3a1", "x-ms-client-request-id": [ "b77d75f39f91e46fc84fec5b4dd54c76", "b77d75f39f91e46fc84fec5b4dd54c76" @@ -1688,8 +1708,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 3:13:42 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "5e14023d-8af3-4375-9ae8-b7865cfbac14", - "x-ms-response-time-ms": "27" + "x-ms-request-id": "d16ebd74-b933-4c42-9a24-807923d62e0f", + "x-ms-response-time-ms": "53" }, "ResponseBody": { "id": 53, @@ -1717,11 +1737,12 @@ "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool/sessions/54", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fb241b0915f5cc40a5d2e5b2af5bcdf1-516b94420769c541-00", + "traceparent": "00-3b5fcd5d48933542a3325c5334f85956-1084791ed68f4943-00", "User-Agent": [ - "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200525.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.17763 )" + "azsdk-net-Analytics.Synapse.Spark/1.0.0-dev.20200826.1", + "(.NET Framework 4.8.4200.0; Microsoft Windows 10.0.19041 )" ], "x-ms-client-request-id": "acf18ba142eeb7ee4d0fb1af97cdb951", "x-ms-return-client-request-id": "true" @@ -1730,14 +1751,14 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 May 2020 09:47:42 GMT", + "Date": "Wed, 26 Aug 2020 05:54:48 GMT", "Server": [ "Kestrel", "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "x-ms-activity-id": "276f9581-e23b-49d8-87f6-3bc2536f9001", + "x-ms-activity-id": "7ad9489a-fecd-4014-8865-db398697a1ea", "x-ms-client-request-id": [ "acf18ba142eeb7ee4d0fb1af97cdb951", "acf18ba142eeb7ee4d0fb1af97cdb951" @@ -1754,8 +1775,8 @@ "x-ms-job-submitted-by-name": "zhezhou@microsoft.com", "x-ms-job-submitted-on": "2/27/2020 3:38:56 AM \u002B00:00", "x-ms-job-type": "SparkServiceSession", - "x-ms-request-id": "fcdba4d4-0233-4cc0-a1fc-fd748f109fec", - "x-ms-response-time-ms": "34" + "x-ms-request-id": "fcddfda6-9e53-4f96-80ee-4f051940bb2a", + "x-ms-response-time-ms": "53" }, "ResponseBody": { "id": 54, From 54941cdcd42a088a676258087bbad5ebf00b7ce4 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Wed, 26 Aug 2020 15:46:25 +0800 Subject: [PATCH 4/9] update version --- .../src/Azure.Analytics.Synapse.AccessControl.csproj | 2 +- .../src/Azure.Analytics.Synapse.Artifacts.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj index 1be4299d056fa..825bcf136995b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj @@ -2,7 +2,7 @@ This is the Microsoft Azure Synapse Analytics Access Control client library Azure.Analytics.Synapse.AccessControl - 1.0.0-preview.1 + 1.0.0-preview.2 Microsoft Azure Synapse Access Control;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj index c3603751979fb..41317ba04cb42 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj @@ -2,7 +2,7 @@ This is the Microsoft Azure Synapse Analytics Artifacts client library Azure.Analytics.Synapse.Artifacts - 1.0.0-preview.3 + 1.0.0-preview.4 Microsoft Azure Synapse Artifacts;$(PackageCommonTags) $(RequiredTargetFrameworks) From 6b3b227aea9faf120f89668a364fcf5b89b0cf03 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Wed, 26 Aug 2020 17:20:22 +0800 Subject: [PATCH 5/9] update changelog --- .../Azure.Analytics.Synapse.AccessControl/CHANGELOG.md | 4 +++- sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md index 6bb129c6bb9ac..be38a77d27ab0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md @@ -1,4 +1,6 @@ # Release History -## 1.0.0-preview.1 (Unreleased) +## 1.0.0-preview.2 (Unreleased) + +## 1.0.0-preview.1 (2020-06-10) - Initial release diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md index 1146920e37d23..3c64cc40b5444 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md @@ -1,5 +1,7 @@ # Release History +## 1.0.0-preview.4 (Unreleased) + ## 1.0.0-preview.3 (2020-08-18) ### Fixed From 452d3a66c5dc1c9195c32876cb94c6789ec99020 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Wed, 26 Aug 2020 20:25:06 +0800 Subject: [PATCH 6/9] update readme --- sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md index 079a1e86edee3..478d6c3b88d3b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md @@ -70,7 +70,12 @@ Notebook notebook = new Notebook( nbformatMinor: 2, new List() ); -var createdNotebook = notebookClient.StartCreateOrUpdateNotebook("MyNotebook", new NotebookResource(notebook)); +var operation = notebookClient.StartCreateOrUpdateNotebook("MyNotebook", new NotebookResource(notebook)); +while (!operation.HasValue) +{ + operation.UpdateStatus(); +} +NotebookResource notebookResource = operation.Value; ``` ### Retrieve a notebook From a6deb6939b88ee01f27c85cb84120aff5d30bde1 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Wed, 26 Aug 2020 20:47:49 +0800 Subject: [PATCH 7/9] generate export API --- ...lytics.Synapse.Artifacts.netstandard2.0.cs | 85 ++++++++++++++----- 1 file changed, 62 insertions(+), 23 deletions(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs index d1990ac171f63..4765190e45697 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs @@ -13,14 +13,27 @@ public partial class DataFlowClient protected DataFlowClient() { } public DataFlowClient(System.Uri endpoint, Azure.Core.TokenCredential credential) { } public DataFlowClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options) { } - public virtual Azure.Response CreateOrUpdateDataFlow(string dataFlowName, Azure.Analytics.Synapse.Artifacts.Models.DataFlowResource dataFlow, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CreateOrUpdateDataFlowAsync(string dataFlowName, Azure.Analytics.Synapse.Artifacts.Models.DataFlowResource dataFlow, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response DeleteDataFlow(string dataFlowName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteDataFlowAsync(string dataFlowName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response GetDataFlow(string dataFlowName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetDataFlowAsync(string dataFlowName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable GetDataFlowsByWorkspace(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AsyncPageable GetDataFlowsByWorkspaceAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.DataFlowCreateOrUpdateDataFlowOperation StartCreateOrUpdateDataFlow(string dataFlowName, Azure.Analytics.Synapse.Artifacts.Models.DataFlowResource dataFlow, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCreateOrUpdateDataFlowAsync(string dataFlowName, Azure.Analytics.Synapse.Artifacts.Models.DataFlowResource dataFlow, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.DataFlowDeleteDataFlowOperation StartDeleteDataFlow(string dataFlowName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteDataFlowAsync(string dataFlowName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class DataFlowCreateOrUpdateDataFlowOperation : Azure.Operation + { + internal DataFlowCreateOrUpdateDataFlowOperation() { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Analytics.Synapse.Artifacts.Models.DataFlowResource Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public partial class DataFlowDebugSessionClient { @@ -64,19 +77,58 @@ internal DataFlowDebugSessionExecuteCommandOperation() { } public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } + public partial class DataFlowDeleteDataFlowOperation : Azure.Operation + { + internal DataFlowDeleteDataFlowOperation() { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Response Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } public partial class DatasetClient { protected DatasetClient() { } public DatasetClient(System.Uri endpoint, Azure.Core.TokenCredential credential) { } public DatasetClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options) { } - public virtual Azure.Response CreateOrUpdateDataset(string datasetName, Azure.Analytics.Synapse.Artifacts.Models.DatasetResource dataset, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CreateOrUpdateDatasetAsync(string datasetName, Azure.Analytics.Synapse.Artifacts.Models.DatasetResource dataset, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response DeleteDataset(string datasetName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteDatasetAsync(string datasetName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response GetDataset(string datasetName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetDatasetAsync(string datasetName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable GetDatasetsByWorkspace(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AsyncPageable GetDatasetsByWorkspaceAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.DatasetCreateOrUpdateDatasetOperation StartCreateOrUpdateDataset(string datasetName, Azure.Analytics.Synapse.Artifacts.Models.DatasetResource dataset, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCreateOrUpdateDatasetAsync(string datasetName, Azure.Analytics.Synapse.Artifacts.Models.DatasetResource dataset, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.DatasetDeleteDatasetOperation StartDeleteDataset(string datasetName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteDatasetAsync(string datasetName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class DatasetCreateOrUpdateDatasetOperation : Azure.Operation + { + internal DatasetCreateOrUpdateDatasetOperation() { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Analytics.Synapse.Artifacts.Models.DatasetResource Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class DatasetDeleteDatasetOperation : Azure.Operation + { + internal DatasetDeleteDatasetOperation() { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Response Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public partial class LinkedServiceClient { @@ -182,14 +234,14 @@ public partial class PipelineClient protected PipelineClient() { } public PipelineClient(System.Uri endpoint, Azure.Core.TokenCredential credential) { } public PipelineClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options) { } + public virtual Azure.Response CreatePipelineRun(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = default(bool?), string startActivityName = null, System.Collections.Generic.IDictionary parameters = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreatePipelineRunAsync(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = default(bool?), string startActivityName = null, System.Collections.Generic.IDictionary parameters = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response GetPipeline(string pipelineName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetPipelineAsync(string pipelineName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable GetPipelinesByWorkspace(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AsyncPageable GetPipelinesByWorkspaceAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Analytics.Synapse.Artifacts.PipelineCreateOrUpdatePipelineOperation StartCreateOrUpdatePipeline(string pipelineName, Azure.Analytics.Synapse.Artifacts.Models.PipelineResource pipeline, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task StartCreateOrUpdatePipelineAsync(string pipelineName, Azure.Analytics.Synapse.Artifacts.Models.PipelineResource pipeline, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Analytics.Synapse.Artifacts.PipelineCreatePipelineRunOperation StartCreatePipelineRun(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = default(bool?), string startActivityName = null, System.Collections.Generic.IDictionary parameters = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartCreatePipelineRunAsync(string pipelineName, string referencePipelineRunId = null, bool? isRecovery = default(bool?), string startActivityName = null, System.Collections.Generic.IDictionary parameters = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Analytics.Synapse.Artifacts.PipelineDeletePipelineOperation StartDeletePipeline(string pipelineName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task StartDeletePipelineAsync(string pipelineName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } @@ -206,19 +258,6 @@ internal PipelineCreateOrUpdatePipelineOperation() { } public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class PipelineCreatePipelineRunOperation : Azure.Operation - { - internal PipelineCreatePipelineRunOperation() { } - public override bool HasCompleted { get { throw null; } } - public override bool HasValue { get { throw null; } } - public override string Id { get { throw null; } } - public override Azure.Analytics.Synapse.Artifacts.Models.CreateRunResponse Value { get { throw null; } } - public override Azure.Response GetRawResponse() { throw null; } - public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - } public partial class PipelineDeletePipelineOperation : Azure.Operation { internal PipelineDeletePipelineOperation() { } From 1768593dd2dae5f1e5f0cbf570b3f332d87b4ad5 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Tue, 1 Sep 2020 13:48:32 +0800 Subject: [PATCH 8/9] update changelog --- .../Azure.Analytics.Synapse.AccessControl/CHANGELOG.md | 1 + sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md | 2 ++ sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md | 6 +----- .../tests/samples/DataFlowSampleSnippets.cs | 6 +----- .../tests/samples/DatasetSampleSnippets.cs | 6 +----- .../tests/samples/LinkedServiceSampleSnippets.cs | 6 +----- .../tests/samples/NotebookSampleSnippets.cs | 6 +----- .../tests/samples/PipelineSampleSnippets.cs | 6 +----- .../tests/samples/TriggerSampleSnippets.cs | 6 +----- sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md | 5 ++++- .../src/Azure.Analytics.Synapse.Spark.csproj | 2 +- 11 files changed, 15 insertions(+), 37 deletions(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md index be38a77d27ab0..b2196d14dd2d4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md @@ -1,6 +1,7 @@ # Release History ## 1.0.0-preview.2 (Unreleased) +- This release contains bug fixes to improve quality. ## 1.0.0-preview.1 (2020-06-10) - Initial release diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md index 3c64cc40b5444..ffad7f6beec37 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md @@ -1,6 +1,8 @@ # Release History ## 1.0.0-preview.4 (Unreleased) +- Added test cases. +- This release contains bug fixes to improve quality. ## 1.0.0-preview.3 (2020-08-18) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md index 478d6c3b88d3b..a11c8ab86945c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/README.md @@ -71,11 +71,7 @@ Notebook notebook = new Notebook( new List() ); var operation = notebookClient.StartCreateOrUpdateNotebook("MyNotebook", new NotebookResource(notebook)); -while (!operation.HasValue) -{ - operation.UpdateStatus(); -} -NotebookResource notebookResource = operation.Value; +NotebookResource notebookResource = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); ``` ### Retrieve a notebook diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs index 8b93d05580f59..681548ae09e1d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DataFlowSampleSnippets.cs @@ -33,11 +33,7 @@ public void CreateDataFlow() { #region Snippet:CreateDataFlow var operation = DataFlowClient.StartCreateOrUpdateDataFlow("MyDataFlow", new DataFlowResource(new DataFlow())); - while (!operation.HasValue) - { - operation.UpdateStatus(); - } - DataFlowResource dataFlow = operation.Value; + DataFlowResource dataFlow = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs index 48428cc2e823e..d43dd45d3732a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/DatasetSampleSnippets.cs @@ -33,11 +33,7 @@ public void CreateDataset() { #region Snippet:CreateDataset var operation = DatasetClient.StartCreateOrUpdateDataset("MyDataset", new DatasetResource(new Dataset(new LinkedServiceReference(LinkedServiceReferenceType.LinkedServiceReference, "testsynapseworkspace-WorkspaceDefaultStorage")))); - while (!operation.HasValue) - { - operation.UpdateStatus(); - } - DatasetResource dataset = operation.Value; + DatasetResource dataset = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs index 4dc004df28218..c8d2151529093 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/LinkedServiceSampleSnippets.cs @@ -33,11 +33,7 @@ public void CreateLinkedService() { #region Snippet:CreateLinkedService var operation = LinkedServiceClient.StartCreateOrUpdateLinkedService("MyLinkedService", new LinkedServiceResource(new AzureDataLakeStoreLinkedService("adl://test.azuredatalakestore.net/"))); - while (!operation.HasValue) - { - operation.UpdateStatus(); - } - LinkedServiceResource linkedService = operation.Value; + LinkedServiceResource linkedService = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs index 505ec256d25f4..fd0b37fc229d9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/NotebookSampleSnippets.cs @@ -43,11 +43,7 @@ public void CreateNotebook() new List() ); var operation = notebookClient.StartCreateOrUpdateNotebook("MyNotebook", new NotebookResource(notebook)); - while (!operation.HasValue) - { - operation.UpdateStatus(); - } - NotebookResource notebookResource = operation.Value; + NotebookResource notebookResource = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs index 55c85e1d2a847..ddd8324d8245b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/PipelineSampleSnippets.cs @@ -33,11 +33,7 @@ public void CreatePipeline() { #region Snippet:CreatePipeline var operation = PipelineClient.StartCreateOrUpdatePipeline("MyPipeline", new PipelineResource()); - while (!operation.HasValue) - { - operation.UpdateStatus(); - } - PipelineResource pipeline = operation.Value; + PipelineResource pipeline = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs index 366d4fe09e725..acbfaa8f7060e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/samples/TriggerSampleSnippets.cs @@ -33,11 +33,7 @@ public void CreateTrigger() { #region Snippet:CreateTrigger var operation = TriggerClient.StartCreateOrUpdateTrigger("MyTrigger", new TriggerResource(new Trigger())); - while (!operation.HasValue) - { - operation.UpdateStatus(); - } - TriggerResource trigger = operation.Value; + TriggerResource trigger = operation.WaitForCompletionAsync().ConfigureAwait(true).GetAwaiter().GetResult(); #endregion } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md index 6bb129c6bb9ac..b2196d14dd2d4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md @@ -1,4 +1,7 @@ # Release History -## 1.0.0-preview.1 (Unreleased) +## 1.0.0-preview.2 (Unreleased) +- This release contains bug fixes to improve quality. + +## 1.0.0-preview.1 (2020-06-10) - Initial release diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj index b65e8506375f5..301b9234ab527 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj @@ -2,7 +2,7 @@ This is the Microsoft Azure Synapse Analytics Spark client library Azure.Analytics.Synapse.Spark - 1.0.0-preview.1 + 1.0.0-preview.2 Microsoft Azure Synapse Spark;$(PackageCommonTags) $(RequiredTargetFrameworks) From a02b07430c67ade0abda6047bd25f88b5860b388 Mon Sep 17 00:00:00 2001 From: Wan Yang Date: Tue, 1 Sep 2020 14:16:36 +0800 Subject: [PATCH 9/9] update release date --- sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md | 2 +- sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md | 2 +- sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md index b2196d14dd2d4..206f1937f37d9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0-preview.2 (Unreleased) +## 1.0.0-preview.2 (2020-09-01) - This release contains bug fixes to improve quality. ## 1.0.0-preview.1 (2020-06-10) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md index ffad7f6beec37..b75698ec7dede 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0-preview.4 (Unreleased) +## 1.0.0-preview.4 (2020-09-01) - Added test cases. - This release contains bug fixes to improve quality. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md index b2196d14dd2d4..206f1937f37d9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0-preview.2 (Unreleased) +## 1.0.0-preview.2 (2020-09-01) - This release contains bug fixes to improve quality. ## 1.0.0-preview.1 (2020-06-10)