diff --git a/src/SDKs/DataFactory/DataFactory.Tests/JsonSamples/PipelineJsonSamples.cs b/src/SDKs/DataFactory/DataFactory.Tests/JsonSamples/PipelineJsonSamples.cs index 175f3e6c4652..d6b917db33b1 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/JsonSamples/PipelineJsonSamples.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/JsonSamples/PipelineJsonSamples.cs @@ -3122,7 +3122,7 @@ public class PipelineJsonSamples : JsonSampleCollection }, enableSkipIncompatibleRow: true, parallelCopies: 32, - cloudDataMovementUnits: 16, + dataIntegrationUnits: 16, enableSkipIncompatibleRow: true, redirectIncompatibleRowSettings: { linkedServiceName: { diff --git a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/IntegrationRuntimeScenarioTests.cs b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/IntegrationRuntimeScenarioTests.cs index 260283d8dd8b..b086f00d2afb 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/IntegrationRuntimeScenarioTests.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/IntegrationRuntimeScenarioTests.cs @@ -155,7 +155,7 @@ public async Task SsisAzureIntegrationRuntimeScenarioTest() NodeSize = "Standard_D1_v2", MaxParallelExecutionsPerNode = 1, NumberOfNodes = 1, - Location = "eastUS" + Location = "WestUS" }, SsisProperties = new IntegrationRuntimeSsisProperties { diff --git a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineRunScenarioTests.cs b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineRunScenarioTests.cs index 61f7b5f30af4..4cd17be6366c 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineRunScenarioTests.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineRunScenarioTests.cs @@ -5,7 +5,7 @@ using DataFactory.Tests.Utils; using Microsoft.Azure.Management.DataFactory; using Microsoft.Azure.Management.DataFactory.Models; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Rest.Azure; using System; using System.Net; using System.Threading.Tasks; @@ -22,12 +22,12 @@ public async Task CancelPipelineRun() Func action = async (client) => { Factory createResponse = client.Factories.CreateOrUpdate(this.ResourceGroupName, this.DataFactoryName, new Factory(location: FactoryLocation)); - ErrorResponseException exception = await Assert.ThrowsAsync(async () => + CloudException exception = await Assert.ThrowsAsync(async () => { - await client.Factories.CancelPipelineRunWithHttpMessagesAsync(this.ResourceGroupName, this.DataFactoryName, "efbe5443-9879-4495-94a6-4d7c394133ad"); + await client.PipelineRuns.CancelWithHttpMessagesAsync(this.ResourceGroupName, this.DataFactoryName, "efbe5443-9879-4495-94a6-4d7c394133ad"); }); - Assert.Equal(exception.Response.StatusCode, HttpStatusCode.BadRequest); + Assert.Equal(HttpStatusCode.BadRequest, exception.Response.StatusCode); }; Func finallyAction = async (client) => diff --git a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineScenarioTests.cs b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineScenarioTests.cs index 338d0535affe..b80f6b6c3ce3 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineScenarioTests.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/PipelineScenarioTests.cs @@ -31,6 +31,7 @@ public static PipelineResource GetPipelineResource(string description, string da CopyActivity copyActivity = new CopyActivity { Name = "ExampleCopyActivity", + DataIntegrationUnits = 32, Inputs = new List { new DatasetReference diff --git a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/ScenarioTestBase.cs b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/ScenarioTestBase.cs index 16655014fe5d..26084cfdcc55 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/ScenarioTestBase.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/ScenarioTests/ScenarioTestBase.cs @@ -6,6 +6,7 @@ using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Azure.Test.HttpRecorder; using System; using System.Runtime.CompilerServices; using System.Threading.Tasks; @@ -17,7 +18,7 @@ public abstract class ScenarioTestBase { private const string ResourceGroupNamePrefix = "sdktestingadfrg"; protected const string DataFactoryNamePrefix = "sdktestingfactory"; - protected const string FactoryLocation = "East US 2"; + protected const string FactoryLocation = "West US"; protected static string ClassName = typeof(T).FullName; protected string ResourceGroupName { get; private set; } @@ -27,9 +28,16 @@ public abstract class ScenarioTestBase protected async Task RunTest(Func initialAction, Func finallyAction, [CallerMemberName] string methodName = "") { - Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); + const string modeEnvironmentVariableName = "AZURE_TEST_MODE"; + const string playback = "Playback"; + using (MockContext mockContext = MockContext.Start(ClassName, methodName)) { + string mode = Environment.GetEnvironmentVariable(modeEnvironmentVariableName); + if (mode != null && mode.Equals(playback, StringComparison.OrdinalIgnoreCase)) + { + HttpMockServer.Mode = HttpRecorderMode.Playback; + } this.ResourceGroupName = TestUtilities.GenerateName(ResourceGroupNamePrefix); this.DataFactoryName = TestUtilities.GenerateName(DataFactoryNamePrefix); this.Client = mockContext.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryE2EScenarioTests/DataFactoryE2E.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryE2EScenarioTests/DataFactoryE2E.json index 0ef520fc4a7e..d03b30d10b2d 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryE2EScenarioTests/DataFactoryE2E.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryE2EScenarioTests/DataFactoryE2E.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg111?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg600?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "476f02a3-976b-4355-a80c-3c0a3e5b4369" + "22d6f182-5353-49a0-b519-3e2489c64ca2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111\",\r\n \"name\": \"sdktestingadfrg111\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600\",\r\n \"name\": \"sdktestingadfrg600\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "189" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:49 GMT" + "Fri, 22 Jun 2018 04:23:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1077" + "1190" ], "x-ms-request-id": [ - "3799af40-9f19-4120-8146-e231871d46e0" + "91c72366-6bae-452e-936e-3ee0eb93fe45" ], "x-ms-correlation-request-id": [ - "3799af40-9f19-4120-8146-e231871d46e0" + "91c72366-6bae-452e-936e-3ee0eb93fe45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002050Z:3799af40-9f19-4120-8146-e231871d46e0" + "NORTHEUROPE:20180622T042314Z:91c72366-6bae-452e-936e-3ee0eb93fe45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTk/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "0fae988e-d537-42d1-86c6-f07584d2a521" + "93e5861d-8ac6-46ed-8566-c349db50dbde" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d405-0000-0000-0000-5b2c79ce0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:52 GMT" + "Fri, 22 Jun 2018 04:23:41 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "0fae988e-d537-42d1-86c6-f07584d2a521" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,35 +123,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1136" + "1179" + ], + "x-ms-request-id": [ + "ce1c825d-807c-4155-ae92-736983932195" ], "x-ms-correlation-request-id": [ - "0bb8e953-3d8d-4e50-af57-b71d2944796e" + "ce1c825d-807c-4155-ae92-736983932195" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002052Z:0bb8e953-3d8d-4e50-af57-b71d2944796e" + "NORTHEUROPE:20180622T042342Z:ce1c825d-807c-4155-ae92-736983932195" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTk/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "863cb065-b451-4255-a50e-d8188fcc338b" + "5d734e44-a257-4cad-ae31-64ec95874961" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d405-0000-0000-0000-5b2c79ce0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:52 GMT" + "Fri, 22 Jun 2018 04:23:41 GMT" ], "Pragma": [ "no-cache" @@ -177,9 +180,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "863cb065-b451-4255-a50e-d8188fcc338b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -190,35 +190,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14961" + ], + "x-ms-request-id": [ + "13d70cf5-0df6-4c2d-8cb3-6a170f39c921" ], "x-ms-correlation-request-id": [ - "789382c7-2fa8-4cc0-ab54-588d62499e3d" + "13d70cf5-0df6-4c2d-8cb3-6a170f39c921" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002052Z:789382c7-2fa8-4cc0-ab54-588d62499e3d" + "NORTHEUROPE:20180622T042342Z:13d70cf5-0df6-4c2d-8cb3-6a170f39c921" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTk/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf404fe4-4939-4034-aa28-a31aa4f63125" + "f3d0b3d1-3277-447f-974f-c44ce4f6b919" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d505-0000-0000-0000-5b2c79cf0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -230,7 +233,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:53 GMT" + "Fri, 22 Jun 2018 04:23:44 GMT" ], "Pragma": [ "no-cache" @@ -244,9 +247,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "bf404fe4-4939-4034-aa28-a31aa4f63125" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -257,35 +257,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14959" + ], + "x-ms-request-id": [ + "457db90a-3647-46f7-a0bf-339abda30094" ], "x-ms-correlation-request-id": [ - "7f8f38fd-caa7-4f85-b4c7-abd28c3d2e5f" + "457db90a-3647-46f7-a0bf-339abda30094" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002054Z:7f8f38fd-caa7-4f85-b4c7-abd28c3d2e5f" + "NORTHEUROPE:20180622T042344Z:457db90a-3647-46f7-a0bf-339abda30094" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c2c20b-0160-4a5d-8cc9-3e773b91f327" + "210f3051-a026-4646-b03a-d5014dce864d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d405-0000-0000-0000-5b2c79ce0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -297,7 +300,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:52 GMT" + "Fri, 22 Jun 2018 04:23:42 GMT" ], "Pragma": [ "no-cache" @@ -311,9 +314,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "d5c2c20b-0160-4a5d-8cc9-3e773b91f327" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -324,35 +324,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14960" + ], + "x-ms-request-id": [ + "41eb2d08-0441-40b7-a747-225e3e2f4ac4" ], "x-ms-correlation-request-id": [ - "b3f55a5f-d497-4101-8cbc-99142f112291" + "41eb2d08-0441-40b7-a747-225e3e2f4ac4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002052Z:b3f55a5f-d497-4101-8cbc-99142f112291" + "NORTHEUROPE:20180622T042343Z:41eb2d08-0441-40b7-a747-225e3e2f4ac4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "219d2eca-7f4d-4458-8d4b-0102cd8bca62" + "3a723da6-7bde-425e-b23a-caf10922baaf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d505-0000-0000-0000-5b2c79cf0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -364,7 +367,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:53 GMT" + "Fri, 22 Jun 2018 04:23:44 GMT" ], "Pragma": [ "no-cache" @@ -378,9 +381,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "219d2eca-7f4d-4458-8d4b-0102cd8bca62" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -391,35 +391,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14958" + ], + "x-ms-request-id": [ + "d690e55c-3602-4bc0-871b-c5d9134303c7" ], "x-ms-correlation-request-id": [ - "45cb37eb-8e5e-4253-b95f-859917b0ca20" + "d690e55c-3602-4bc0-871b-c5d9134303c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002054Z:45cb37eb-8e5e-4253-b95f-859917b0ca20" + "NORTHEUROPE:20180622T042344Z:d690e55c-3602-4bc0-871b-c5d9134303c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f55738a7-4615-4d76-87c3-4a209d663a75" + "8375f614-f1a0-49a1-bc19-efc9a9f4db9d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d505-0000-0000-0000-5b2c79cf0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -431,7 +434,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:53 GMT" + "Fri, 22 Jun 2018 04:23:44 GMT" ], "Pragma": [ "no-cache" @@ -445,9 +448,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f55738a7-4615-4d76-87c3-4a209d663a75" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -458,20 +458,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14957" + ], + "x-ms-request-id": [ + "7a3bb8e8-7404-48e9-9d38-28cf88f3b10e" ], "x-ms-correlation-request-id": [ - "5327beb3-218f-4fa4-aef4-c67c91a65457" + "7a3bb8e8-7404-48e9-9d38-28cf88f3b10e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002054Z:5327beb3-218f-4fa4-aef4-c67c91a65457" + "NORTHEUROPE:20180622T042344Z:7a3bb8e8-7404-48e9-9d38-28cf88f3b10e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTk/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n }\r\n}", "RequestHeaders": { @@ -482,17 +485,17 @@ "56" ], "x-ms-client-request-id": [ - "7b70e8e1-1ac7-40d3-a8af-46be5fcdb3f0" + "2bd5175f-c52d-4bd8-bf93-f5bafae0831a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory6259\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:20:53.0790497Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory2349\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T04:23:41.8597799Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d505-0000-0000-0000-5b2c79cf0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"exampleTag\": \"exampleValue\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -504,7 +507,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:53 GMT" + "Fri, 22 Jun 2018 04:23:42 GMT" ], "Pragma": [ "no-cache" @@ -518,9 +521,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "7b70e8e1-1ac7-40d3-a8af-46be5fcdb3f0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -531,20 +531,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1135" + "1178" + ], + "x-ms-request-id": [ + "3c1b8a30-0114-427d-a6f6-ffc6fb5186cf" ], "x-ms-correlation-request-id": [ - "3e281d69-4e0d-4b88-9b64-52e69fb26e1e" + "3c1b8a30-0114-427d-a6f6-ffc6fb5186cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002054Z:3e281d69-4e0d-4b88-9b64-52e69fb26e1e" + "NORTHEUROPE:20180622T042343Z:3c1b8a30-0114-427d-a6f6-ffc6fb5186cf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -555,17 +558,17 @@ "159" ], "x-ms-client-request-id": [ - "a469b957-9037-4797-8229-4f4304488a63" + "4f2b0c52-1ba4-4d07-a9a3-396778bf9046" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"6e00c127-0000-0000-0000-5a14c2e70000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"2e0057ce-0000-0000-0000-5b2c79d20000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -577,7 +580,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:55 GMT" + "Fri, 22 Jun 2018 04:23:46 GMT" ], "Pragma": [ "no-cache" @@ -591,9 +594,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "a469b957-9037-4797-8229-4f4304488a63" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -604,20 +604,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1134" + "1177" + ], + "x-ms-request-id": [ + "5c832fe9-10b9-491c-a19e-a7654fade387" ], "x-ms-correlation-request-id": [ - "55e04b0d-6145-42bc-943e-883f31e931f4" + "5c832fe9-10b9-491c-a19e-a7654fade387" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002055Z:55e04b0d-6145-42bc-943e-883f31e931f4" + "NORTHEUROPE:20180622T042347Z:5c832fe9-10b9-491c-a19e-a7654fade387" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n }\r\n}", "RequestHeaders": { @@ -628,17 +631,17 @@ "208" ], "x-ms-client-request-id": [ - "0afafac8-4b85-47ac-896b-96c5c5359a2c" + "0175163b-b35c-464c-9d67-e505d5546286" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n },\r\n \"etag\": \"6e00c527-0000-0000-0000-5a14c2e70000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n },\r\n \"etag\": \"2e005ece-0000-0000-0000-5b2c79d30000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -650,7 +653,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:55 GMT" + "Fri, 22 Jun 2018 04:23:47 GMT" ], "Pragma": [ "no-cache" @@ -664,9 +667,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "0afafac8-4b85-47ac-896b-96c5c5359a2c" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -677,35 +677,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1133" + "1176" + ], + "x-ms-request-id": [ + "8cf7484e-8bf9-479d-944f-49405b8d9a7f" ], "x-ms-correlation-request-id": [ - "e7328b4b-639c-45e3-975b-d82614a8c08f" + "8cf7484e-8bf9-479d-944f-49405b8d9a7f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002055Z:e7328b4b-639c-45e3-975b-d82614a8c08f" + "NORTHEUROPE:20180622T042348Z:8cf7484e-8bf9-479d-944f-49405b8d9a7f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "786a9e87-c19c-43f6-8d80-3f2d9ee770c0" + "867f9821-eaf9-4ef7-9a4c-08e28a7ad361" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n },\r\n \"etag\": \"6e00c527-0000-0000-0000-5a14c2e70000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n },\r\n \"etag\": \"2e005ece-0000-0000-0000-5b2c79d30000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -717,7 +720,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:55 GMT" + "Fri, 22 Jun 2018 04:23:47 GMT" ], "Pragma": [ "no-cache" @@ -731,9 +734,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "786a9e87-c19c-43f6-8d80-3f2d9ee770c0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -744,35 +744,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14956" + ], + "x-ms-request-id": [ + "240db06e-d564-479a-8eb3-3efce35cefd1" ], "x-ms-correlation-request-id": [ - "332b2e2e-457e-4245-bc9c-e062a2874a85" + "240db06e-d564-479a-8eb3-3efce35cefd1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002055Z:332b2e2e-457e-4245-bc9c-e062a2874a85" + "NORTHEUROPE:20180622T042348Z:240db06e-d564-479a-8eb3-3efce35cefd1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvbGlua2Vkc2VydmljZXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvbGlua2Vkc2VydmljZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2da734b-72b6-4c1f-be88-6d538f6b2272" + "3a51110f-5865-4d1d-bd79-3f880667b060" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n },\r\n \"etag\": \"6e00c527-0000-0000-0000-5a14c2e70000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n },\r\n \"description\": \"linkedService description\"\r\n },\r\n \"etag\": \"2e005ece-0000-0000-0000-5b2c79d30000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -784,7 +787,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:55 GMT" + "Fri, 22 Jun 2018 04:23:47 GMT" ], "Pragma": [ "no-cache" @@ -798,9 +801,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f2da734b-72b6-4c1f-be88-6d538f6b2272" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -811,20 +811,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14955" + ], + "x-ms-request-id": [ + "dd8b0c20-6818-44ab-9150-63c04a00e29e" ], "x-ms-correlation-request-id": [ - "f5d2dd67-0cd8-4491-bc8d-87d53071c4e6" + "dd8b0c20-6818-44ab-9150-63c04a00e29e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002055Z:f5d2dd67-0cd8-4491-bc8d-87d53071c4e6" + "NORTHEUROPE:20180622T042348Z:dd8b0c20-6818-44ab-9150-63c04a00e29e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -835,17 +838,17 @@ "625" ], "x-ms-client-request-id": [ - "e4374811-03de-4dc0-9c69-49a3a2c34c82" + "49dfe211-fd16-4879-aa1d-ffe587c7f199" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00d927-0000-0000-0000-5a14c2e80000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0062ce-0000-0000-0000-5b2c79d50000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -857,7 +860,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:55 GMT" + "Fri, 22 Jun 2018 04:23:49 GMT" ], "Pragma": [ "no-cache" @@ -871,9 +874,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "e4374811-03de-4dc0-9c69-49a3a2c34c82" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -884,20 +884,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1132" + "1175" + ], + "x-ms-request-id": [ + "33dee68e-2b55-4f1c-a765-8767462d5dcb" ], "x-ms-correlation-request-id": [ - "495838d6-5a32-4225-bf11-c311f83db7d2" + "33dee68e-2b55-4f1c-a765-8767462d5dcb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002055Z:495838d6-5a32-4225-bf11-c311f83db7d2" + "NORTHEUROPE:20180622T042349Z:33dee68e-2b55-4f1c-a765-8767462d5dcb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -908,17 +911,17 @@ "668" ], "x-ms-client-request-id": [ - "420acdf8-3feb-4048-be40-752944ed4b3d" + "7f4d12a7-2c2e-43c3-9e0f-d4d0f82c2d18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00e227-0000-0000-0000-5a14c2e80000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0064ce-0000-0000-0000-5b2c79d70000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -930,7 +933,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:56 GMT" + "Fri, 22 Jun 2018 04:23:50 GMT" ], "Pragma": [ "no-cache" @@ -944,9 +947,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "420acdf8-3feb-4048-be40-752944ed4b3d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -957,35 +957,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1131" + "1174" + ], + "x-ms-request-id": [ + "976994fb-d909-4d99-a5e0-69bd88c1acf1" ], "x-ms-correlation-request-id": [ - "9d7788c4-e957-4e83-bdfd-435c5cceae73" + "976994fb-d909-4d99-a5e0-69bd88c1acf1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002056Z:9d7788c4-e957-4e83-bdfd-435c5cceae73" + "NORTHEUROPE:20180622T042351Z:976994fb-d909-4d99-a5e0-69bd88c1acf1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe8bf2f1-0bbb-4c2f-bcac-c1b27f212624" + "73acf6c2-b5e5-42e9-8806-c4829c9830b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00d927-0000-0000-0000-5a14c2e80000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0062ce-0000-0000-0000-5b2c79d50000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -997,7 +1000,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:56 GMT" + "Fri, 22 Jun 2018 04:23:49 GMT" ], "Pragma": [ "no-cache" @@ -1011,9 +1014,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "fe8bf2f1-0bbb-4c2f-bcac-c1b27f212624" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1024,35 +1024,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14954" + ], + "x-ms-request-id": [ + "feb1ca5f-3019-48f9-ba86-d517090f15f4" ], "x-ms-correlation-request-id": [ - "ecba539e-131c-4935-8090-ea270297e7ff" + "feb1ca5f-3019-48f9-ba86-d517090f15f4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002056Z:ecba539e-131c-4935-8090-ea270297e7ff" + "NORTHEUROPE:20180622T042350Z:feb1ca5f-3019-48f9-ba86-d517090f15f4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a596e4e-9dfb-49ea-abc3-fc8da4101c6f" + "33d9c7e0-091a-4208-9be1-736a59b5e46a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00e227-0000-0000-0000-5a14c2e80000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0064ce-0000-0000-0000-5b2c79d70000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1064,7 +1067,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:56 GMT" + "Fri, 22 Jun 2018 04:23:51 GMT" ], "Pragma": [ "no-cache" @@ -1078,9 +1081,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "4a596e4e-9dfb-49ea-abc3-fc8da4101c6f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1091,35 +1091,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14952" + ], + "x-ms-request-id": [ + "c66a83a7-8635-44e8-a7eb-3921b48c6821" ], "x-ms-correlation-request-id": [ - "ed9b5292-88b9-4d45-bd5f-838c5c149411" + "c66a83a7-8635-44e8-a7eb-3921b48c6821" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002056Z:ed9b5292-88b9-4d45-bd5f-838c5c149411" + "NORTHEUROPE:20180622T042351Z:c66a83a7-8635-44e8-a7eb-3921b48c6821" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1e5cae6-ff87-4c7f-9bff-e810959ba4e1" + "51c34242-cea3-4673-b290-a476e030f8e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00d927-0000-0000-0000-5a14c2e80000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0062ce-0000-0000-0000-5b2c79d50000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1131,7 +1134,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:56 GMT" + "Fri, 22 Jun 2018 04:23:50 GMT" ], "Pragma": [ "no-cache" @@ -1145,9 +1148,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "c1e5cae6-ff87-4c7f-9bff-e810959ba4e1" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1158,35 +1158,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14953" + ], + "x-ms-request-id": [ + "9afb5f77-f4a3-494b-a492-a69fabdd846a" ], "x-ms-correlation-request-id": [ - "5580174d-49fe-4ff0-b7bd-3a98f0f70d2d" + "9afb5f77-f4a3-494b-a492-a69fabdd846a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002056Z:5580174d-49fe-4ff0-b7bd-3a98f0f70d2d" + "NORTHEUROPE:20180622T042350Z:9afb5f77-f4a3-494b-a492-a69fabdd846a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b68a13a4-6a77-4435-91e1-246d6eeda7c3" + "4cb1b596-fed4-4185-87dc-7cc9665e484b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00e227-0000-0000-0000-5a14c2e80000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0064ce-0000-0000-0000-5b2c79d70000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1198,7 +1201,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:56 GMT" + "Fri, 22 Jun 2018 04:23:51 GMT" ], "Pragma": [ "no-cache" @@ -1212,9 +1215,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "b68a13a4-6a77-4435-91e1-246d6eeda7c3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1225,41 +1225,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14951" + ], + "x-ms-request-id": [ + "00ea326d-2c01-4c0c-b5a5-6f4cbaa85d3a" ], "x-ms-correlation-request-id": [ - "42bb2892-fb17-4ba4-a57f-83cd44a9a5e7" + "00ea326d-2c01-4c0c-b5a5-6f4cbaa85d3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002056Z:42bb2892-fb17-4ba4-a57f-83cd44a9a5e7" + "NORTHEUROPE:20180622T042351Z:00ea326d-2c01-4c0c-b5a5-6f4cbaa85d3a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1611" + "1656" ], "x-ms-client-request-id": [ - "abc3c400-8d8f-4383-b158-c2ce674fa698" + "c6b410ca-c818-464a-b81a-3298959c0c14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00e927-0000-0000-0000-5a14c2e90000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"type\": \"Microsoft.DataFactory/factories/pipelines\",\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e006bce-0000-0000-0000-5b2c79d80000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1271,7 +1274,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:57 GMT" + "Fri, 22 Jun 2018 04:23:52 GMT" ], "Pragma": [ "no-cache" @@ -1285,9 +1288,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "abc3c400-8d8f-4383-b158-c2ce674fa698" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1298,41 +1298,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1130" + "1173" + ], + "x-ms-request-id": [ + "4af74393-538b-4c17-93ff-b1e892b22915" ], "x-ms-correlation-request-id": [ - "1e9c2c54-82f6-47bf-b2a8-3c74b4fd1072" + "4af74393-538b-4c17-93ff-b1e892b22915" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002057Z:1e9c2c54-82f6-47bf-b2a8-3c74b4fd1072" + "NORTHEUROPE:20180622T042352Z:4af74393-538b-4c17-93ff-b1e892b22915" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1655" + "1700" ], "x-ms-client-request-id": [ - "e1fac91d-faa8-4853-b601-e456cd0bc28f" + "0b9dbd31-4318-4e7d-81f2-6ef5402f24be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00f327-0000-0000-0000-5a14c2e90000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"type\": \"Microsoft.DataFactory/factories/pipelines\",\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0071ce-0000-0000-0000-5b2c79da0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1344,7 +1347,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:57 GMT" + "Fri, 22 Jun 2018 04:23:53 GMT" ], "Pragma": [ "no-cache" @@ -1358,9 +1361,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "e1fac91d-faa8-4853-b601-e456cd0bc28f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1371,35 +1371,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1129" + "1172" + ], + "x-ms-request-id": [ + "d9ba876c-3e5a-47b6-b6f0-c9ca67918686" ], "x-ms-correlation-request-id": [ - "e608c4ca-4a69-4f6b-8ea0-b76bdebb9d31" + "d9ba876c-3e5a-47b6-b6f0-c9ca67918686" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002057Z:e608c4ca-4a69-4f6b-8ea0-b76bdebb9d31" + "NORTHEUROPE:20180622T042354Z:d9ba876c-3e5a-47b6-b6f0-c9ca67918686" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e60dc781-b758-4370-85cb-9440210583b1" + "d131c4ac-dfb0-4f0f-a5ea-50ea2abc38f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00e927-0000-0000-0000-5a14c2e90000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"type\": \"Microsoft.DataFactory/factories/pipelines\",\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e006bce-0000-0000-0000-5b2c79d80000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1411,7 +1414,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:57 GMT" + "Fri, 22 Jun 2018 04:23:52 GMT" ], "Pragma": [ "no-cache" @@ -1425,9 +1428,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "e60dc781-b758-4370-85cb-9440210583b1" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1438,35 +1438,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14950" + ], + "x-ms-request-id": [ + "15aa3839-b13d-44be-8c5d-6e682db23dd0" ], "x-ms-correlation-request-id": [ - "1087ea9d-6664-4007-ac7e-35feb5daa7e8" + "15aa3839-b13d-44be-8c5d-6e682db23dd0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002057Z:1087ea9d-6664-4007-ac7e-35feb5daa7e8" + "NORTHEUROPE:20180622T042353Z:15aa3839-b13d-44be-8c5d-6e682db23dd0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a30ac730-05f9-4df8-b648-7b76f02fc439" + "95d6dc4d-a8f1-49fa-9d8a-b78a39ab0328" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00f327-0000-0000-0000-5a14c2e90000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"type\": \"Microsoft.DataFactory/factories/pipelines\",\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0071ce-0000-0000-0000-5b2c79da0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1478,7 +1481,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:57 GMT" + "Fri, 22 Jun 2018 04:23:53 GMT" ], "Pragma": [ "no-cache" @@ -1492,9 +1495,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "a30ac730-05f9-4df8-b648-7b76f02fc439" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1505,35 +1505,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14948" + ], + "x-ms-request-id": [ + "6b1ea0f0-d51b-4803-a0b8-35808c185756" ], "x-ms-correlation-request-id": [ - "98262bc2-bd7d-4039-bb3e-512d36ad109a" + "6b1ea0f0-d51b-4803-a0b8-35808c185756" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002058Z:98262bc2-bd7d-4039-bb3e-512d36ad109a" + "NORTHEUROPE:20180622T042354Z:6b1ea0f0-d51b-4803-a0b8-35808c185756" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "006c3efd-33c0-4361-aabc-ac997fb4360a" + "70df758a-4f6e-46e0-b87a-66ea25eb7fad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00e927-0000-0000-0000-5a14c2e90000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"type\": \"Microsoft.DataFactory/factories/pipelines\",\r\n \"properties\": {\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e006bce-0000-0000-0000-5b2c79d80000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1545,7 +1548,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:57 GMT" + "Fri, 22 Jun 2018 04:23:52 GMT" ], "Pragma": [ "no-cache" @@ -1559,9 +1562,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "006c3efd-33c0-4361-aabc-ac997fb4360a" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1572,35 +1572,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14949" + ], + "x-ms-request-id": [ + "a2678bc2-ad9a-4d76-a285-1ca4023313e8" ], "x-ms-correlation-request-id": [ - "830ecbb6-5b70-4e88-83f5-d8dafd501493" + "a2678bc2-ad9a-4d76-a285-1ca4023313e8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002057Z:830ecbb6-5b70-4e88-83f5-d8dafd501493" + "NORTHEUROPE:20180622T042353Z:a2678bc2-ad9a-4d76-a285-1ca4023313e8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e51504b5-c65a-47a1-b950-b841b094df06" + "49e18c58-bc48-4761-b80d-7d79cd014959" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n }\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"6e00f327-0000-0000-0000-5a14c2e90000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline\",\r\n \"name\": \"TestPipeline\",\r\n \"type\": \"Microsoft.DataFactory/factories/pipelines\",\r\n \"properties\": {\r\n \"description\": \"pipeline description\",\r\n \"activities\": [\r\n {\r\n \"type\": \"ForEach\",\r\n \"typeProperties\": {\r\n \"isSequential\": true,\r\n \"items\": {\r\n \"value\": \"@pipeline().parameters.OutputBlobNameList\",\r\n \"type\": \"Expression\"\r\n },\r\n \"activities\": [\r\n {\r\n \"type\": \"Copy\",\r\n \"typeProperties\": {\r\n \"source\": {\r\n \"type\": \"BlobSource\"\r\n },\r\n \"sink\": {\r\n \"type\": \"BlobSink\"\r\n },\r\n \"dataIntegrationUnits\": 32\r\n },\r\n \"inputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": \"entitylogs.csv\"\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"referenceName\": \"TestDataset\",\r\n \"parameters\": {\r\n \"MyFolderPath\": \"BlobContainerName\",\r\n \"MyFileName\": {\r\n \"value\": \"@item()\",\r\n \"type\": \"Expression\"\r\n }\r\n },\r\n \"type\": \"DatasetReference\"\r\n }\r\n ],\r\n \"name\": \"ExampleCopyActivity\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ExampleForeachActivity\"\r\n }\r\n ],\r\n \"parameters\": {\r\n \"OutputBlobNameList\": {\r\n \"type\": \"Array\"\r\n }\r\n }\r\n },\r\n \"etag\": \"2e0071ce-0000-0000-0000-5b2c79da0000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1612,7 +1615,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:57 GMT" + "Fri, 22 Jun 2018 04:23:54 GMT" ], "Pragma": [ "no-cache" @@ -1626,9 +1629,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "e51504b5-c65a-47a1-b950-b841b094df06" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1639,22 +1639,25 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14947" + ], + "x-ms-request-id": [ + "1bb02d61-1177-49e9-b647-ce9f1cfc717b" ], "x-ms-correlation-request-id": [ - "2b2b985b-edae-423c-9f2b-f9381786cb08" + "1bb02d61-1177-49e9-b647-ce9f1cfc717b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002058Z:2b2b985b-edae-423c-9f2b-f9381786cb08" + "NORTHEUROPE:20180622T042354Z:1bb02d61-1177-49e9-b647-ce9f1cfc717b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.2505573Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.2505573Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:54.8859019Z\",\r\n \"endTime\": \"2018-06-22T04:38:54.8859019Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1663,17 +1666,17 @@ "600" ], "x-ms-client-request-id": [ - "e22e8db8-bfc5-45d6-8d51-e17894c67008" + "ffa59f60-d273-454b-b49b-2bfd41de5369" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.2505573Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.2505573Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"6e00fa27-0000-0000-0000-5a14c2ea0000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"type\": \"Microsoft.DataFactory/factories/triggers\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:54.8859019Z\",\r\n \"endTime\": \"2018-06-22T04:38:54.8859019Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"2e0072ce-0000-0000-0000-5b2c79db0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1685,7 +1688,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:58 GMT" + "Fri, 22 Jun 2018 04:23:55 GMT" ], "Pragma": [ "no-cache" @@ -1699,9 +1702,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "e22e8db8-bfc5-45d6-8d51-e17894c67008" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1712,22 +1712,25 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1128" + "1171" + ], + "x-ms-request-id": [ + "485f251e-c50b-4e24-9034-dbca3434f17a" ], "x-ms-correlation-request-id": [ - "ebc41b9d-660b-4152-be03-e2c1183a3b38" + "485f251e-c50b-4e24-9034-dbca3434f17a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002058Z:ebc41b9d-660b-4152-be03-e2c1183a3b38" + "NORTHEUROPE:20180622T042355Z:485f251e-c50b-4e24-9034-dbca3434f17a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.9551405Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.9551405Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"description\": \"trigger description\",\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:56.4850077Z\",\r\n \"endTime\": \"2018-06-22T04:38:56.4850077Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"description\": \"trigger description\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1736,17 +1739,17 @@ "643" ], "x-ms-client-request-id": [ - "1aedaf00-aad9-4cee-b76e-8782b83a77b7" + "6de43d88-270e-487a-90a2-85d256b09f69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.9551405Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.9551405Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"description\": \"trigger description\",\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"6e000628-0000-0000-0000-5a14c2eb0000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"type\": \"Microsoft.DataFactory/factories/triggers\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:56.4850077Z\",\r\n \"endTime\": \"2018-06-22T04:38:56.4850077Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"description\": \"trigger description\",\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"2e0079ce-0000-0000-0000-5b2c79dd0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1758,7 +1761,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:58 GMT" + "Fri, 22 Jun 2018 04:23:57 GMT" ], "Pragma": [ "no-cache" @@ -1772,9 +1775,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "1aedaf00-aad9-4cee-b76e-8782b83a77b7" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1785,35 +1785,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1127" + "1170" + ], + "x-ms-request-id": [ + "2f341276-cd81-474c-92f6-0e2bb948843a" ], "x-ms-correlation-request-id": [ - "f57e003b-185e-47c4-abed-e874a4790fba" + "2f341276-cd81-474c-92f6-0e2bb948843a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002059Z:f57e003b-185e-47c4-abed-e874a4790fba" + "NORTHEUROPE:20180622T042357Z:2f341276-cd81-474c-92f6-0e2bb948843a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1d88373-526d-4ba0-9341-e70aeb35c77f" + "06d31968-ba8b-4bca-a028-a22109483327" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.2505573Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.2505573Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"6e00fa27-0000-0000-0000-5a14c2ea0000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"type\": \"Microsoft.DataFactory/factories/triggers\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:54.8859019Z\",\r\n \"endTime\": \"2018-06-22T04:38:54.8859019Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"2e0072ce-0000-0000-0000-5b2c79db0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1825,7 +1828,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:58 GMT" + "Fri, 22 Jun 2018 04:23:55 GMT" ], "Pragma": [ "no-cache" @@ -1839,9 +1842,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f1d88373-526d-4ba0-9341-e70aeb35c77f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1852,35 +1852,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14946" + ], + "x-ms-request-id": [ + "8bd3911d-78e0-4079-92db-7483c97e0863" ], "x-ms-correlation-request-id": [ - "50ecfb03-6df8-4219-a6ea-31dde350936e" + "8bd3911d-78e0-4079-92db-7483c97e0863" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002058Z:50ecfb03-6df8-4219-a6ea-31dde350936e" + "NORTHEUROPE:20180622T042356Z:8bd3911d-78e0-4079-92db-7483c97e0863" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f256ddee-9195-410b-8747-b9be4aa1e57b" + "a36c2f73-1fc1-430b-a6e7-fa81d65a822f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.9551405Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.9551405Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"description\": \"trigger description\",\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"6e000628-0000-0000-0000-5a14c2eb0000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"type\": \"Microsoft.DataFactory/factories/triggers\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:56.4850077Z\",\r\n \"endTime\": \"2018-06-22T04:38:56.4850077Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"description\": \"trigger description\",\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"2e0079ce-0000-0000-0000-5b2c79dd0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1892,7 +1895,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:58 GMT" + "Fri, 22 Jun 2018 04:23:57 GMT" ], "Pragma": [ "no-cache" @@ -1906,9 +1909,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f256ddee-9195-410b-8747-b9be4aa1e57b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1919,35 +1919,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14944" + ], + "x-ms-request-id": [ + "2bfb55fa-3a40-4618-bf14-920f27ba97f0" ], "x-ms-correlation-request-id": [ - "48f394eb-838f-47bd-8710-7d36058232f1" + "2bfb55fa-3a40-4618-bf14-920f27ba97f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002059Z:48f394eb-838f-47bd-8710-7d36058232f1" + "NORTHEUROPE:20180622T042357Z:2bfb55fa-3a40-4618-bf14-920f27ba97f0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "753d427f-dbe2-4c42-baaf-da38b9d9dfe6" + "a90dd3fc-91ec-45f4-bcf8-bcfeae37a647" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.2505573Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.2505573Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"6e00fa27-0000-0000-0000-5a14c2ea0000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"type\": \"Microsoft.DataFactory/factories/triggers\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:54.8859019Z\",\r\n \"endTime\": \"2018-06-22T04:38:54.8859019Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"2e0072ce-0000-0000-0000-5b2c79db0000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1959,7 +1962,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:58 GMT" + "Fri, 22 Jun 2018 04:23:55 GMT" ], "Pragma": [ "no-cache" @@ -1973,9 +1976,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "753d427f-dbe2-4c42-baaf-da38b9d9dfe6" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1986,35 +1986,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14945" + ], + "x-ms-request-id": [ + "5f14bb03-0392-4ab3-b782-7641c5beed45" ], "x-ms-correlation-request-id": [ - "e6dfaebd-cd30-4089-b2f4-0acd706af084" + "5f14bb03-0392-4ab3-b782-7641c5beed45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002058Z:e6dfaebd-cd30-4089-b2f4-0acd706af084" + "NORTHEUROPE:20180622T042356Z:5f14bb03-0392-4ab3-b782-7641c5beed45" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2595d937-94dc-49d6-b098-5b742597d5bf" + "2e0b51a6-ca6b-42cd-8ece-32c4b1e6182f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2017-11-22T00:19:58.9551405Z\",\r\n \"endTime\": \"2017-11-22T00:35:58.9551405Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"description\": \"trigger description\",\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"6e000628-0000-0000-0000-5a14c2eb0000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger\",\r\n \"name\": \"TestTrigger\",\r\n \"type\": \"Microsoft.DataFactory/factories/triggers\",\r\n \"properties\": {\r\n \"type\": \"ScheduleTrigger\",\r\n \"typeProperties\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 4,\r\n \"startTime\": \"2018-06-22T04:22:56.4850077Z\",\r\n \"endTime\": \"2018-06-22T04:38:56.4850077Z\",\r\n \"timeZone\": \"UTC\"\r\n }\r\n },\r\n \"pipelines\": [\r\n {\r\n \"pipelineReference\": {\r\n \"referenceName\": \"TestPipeline\",\r\n \"type\": \"PipelineReference\"\r\n },\r\n \"parameters\": {\r\n \"OutputBlobNameList\": [\r\n \"TestOutput.csv\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"description\": \"trigger description\",\r\n \"runtimeState\": \"Stopped\"\r\n },\r\n \"etag\": \"2e0079ce-0000-0000-0000-5b2c79dd0000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2026,7 +2029,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:58 GMT" + "Fri, 22 Jun 2018 04:23:57 GMT" ], "Pragma": [ "no-cache" @@ -2040,9 +2043,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "2595d937-94dc-49d6-b098-5b742597d5bf" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2053,32 +2053,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14943" + ], + "x-ms-request-id": [ + "d3e9c48e-bf9a-491a-be6e-6117f9b62588" ], "x-ms-correlation-request-id": [ - "cbc30c2f-8a30-404f-bd04-b728d8ae5df1" + "d3e9c48e-bf9a-491a-be6e-6117f9b62588" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002059Z:cbc30c2f-8a30-404f-bd04-b728d8ae5df1" + "NORTHEUROPE:20180622T042357Z:d3e9c48e-bf9a-491a-be6e-6117f9b62588" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7303ac94-c413-4877-b91f-adf590eb0826" + "cb4d5909-7b1c-4e4c-9a39-7f39bea9eb82" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2093,7 +2096,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:59 GMT" + "Fri, 22 Jun 2018 04:23:58 GMT" ], "Pragma": [ "no-cache" @@ -2101,9 +2104,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "7303ac94-c413-4877-b91f-adf590eb0826" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2113,33 +2113,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1126" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14978" + ], + "x-ms-request-id": [ + "88a771f9-4c2c-4f95-b4ad-1df4abecb343" ], "x-ms-correlation-request-id": [ - "c2f1d1ee-f568-4d91-8099-7983593ea559" + "88a771f9-4c2c-4f95-b4ad-1df4abecb343" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002059Z:c2f1d1ee-f568-4d91-8099-7983593ea559" + "NORTHEUROPE:20180622T042358Z:88a771f9-4c2c-4f95-b4ad-1df4abecb343" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/triggers/TestTrigger?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/triggers/TestTrigger?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvdHJpZ2dlcnMvVGVzdFRyaWdnZXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04a33ffa-42d1-4c02-be60-97aea82e4b4a" + "00e32fef-df95-4e87-b892-b333ce1ac305" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2151,7 +2154,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:59 GMT" + "Fri, 22 Jun 2018 04:23:58 GMT" ], "Pragma": [ "no-cache" @@ -2159,9 +2162,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "04a33ffa-42d1-4c02-be60-97aea82e4b4a" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2171,33 +2171,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1125" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14977" + ], + "x-ms-request-id": [ + "fa4f8fd4-2a3b-4f1e-b232-402548690ccc" ], "x-ms-correlation-request-id": [ - "5d8cd4a9-e00f-4902-8b6d-31c4158785a0" + "fa4f8fd4-2a3b-4f1e-b232-402548690ccc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002059Z:5d8cd4a9-e00f-4902-8b6d-31c4158785a0" + "NORTHEUROPE:20180622T042358Z:fa4f8fd4-2a3b-4f1e-b232-402548690ccc" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9967e7a-496b-47c2-8258-b3c47a2c43fc" + "bfdd1c44-c15e-41a4-80bb-f5f5c7f0144e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2212,7 +2215,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:59 GMT" + "Fri, 22 Jun 2018 04:23:59 GMT" ], "Pragma": [ "no-cache" @@ -2220,9 +2223,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "b9967e7a-496b-47c2-8258-b3c47a2c43fc" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2232,33 +2232,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1124" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14976" + ], + "x-ms-request-id": [ + "f2b1871a-8712-4897-82b7-c4336e8c420f" ], "x-ms-correlation-request-id": [ - "1f13a098-fe38-4a20-b39c-4f5a6088f392" + "f2b1871a-8712-4897-82b7-c4336e8c420f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002100Z:1f13a098-fe38-4a20-b39c-4f5a6088f392" + "NORTHEUROPE:20180622T042359Z:f2b1871a-8712-4897-82b7-c4336e8c420f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/pipelines/TestPipeline?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/pipelines/TestPipeline?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvcGlwZWxpbmVzL1Rlc3RQaXBlbGluZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d35d42d8-364f-49a2-be86-345e6717f366" + "94a8b096-a828-4176-a532-b3853b9fb84a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2270,7 +2273,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:59 GMT" + "Fri, 22 Jun 2018 04:23:59 GMT" ], "Pragma": [ "no-cache" @@ -2278,9 +2281,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "d35d42d8-364f-49a2-be86-345e6717f366" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2290,33 +2290,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1123" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14975" + ], + "x-ms-request-id": [ + "a653fb15-bdf1-4b09-8731-1fc63be16125" ], "x-ms-correlation-request-id": [ - "a890dc00-a889-4891-add3-3d49868ddd2f" + "a653fb15-bdf1-4b09-8731-1fc63be16125" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002100Z:a890dc00-a889-4891-add3-3d49868ddd2f" + "NORTHEUROPE:20180622T042359Z:a653fb15-bdf1-4b09-8731-1fc63be16125" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15678812-3bf1-42cd-a2d8-8f0f0aaf12eb" + "bc382890-cd8b-49bb-97e0-b7a431dfafbd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2331,7 +2334,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:00 GMT" + "Fri, 22 Jun 2018 04:23:59 GMT" ], "Pragma": [ "no-cache" @@ -2339,9 +2342,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "15678812-3bf1-42cd-a2d8-8f0f0aaf12eb" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2351,33 +2351,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1122" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14974" + ], + "x-ms-request-id": [ + "fdddb5c6-abf7-4413-814c-1004633da4f0" ], "x-ms-correlation-request-id": [ - "7d16fe29-b5a4-4264-852c-cf9353686243" + "fdddb5c6-abf7-4413-814c-1004633da4f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002100Z:7d16fe29-b5a4-4264-852c-cf9353686243" + "NORTHEUROPE:20180622T042400Z:fdddb5c6-abf7-4413-814c-1004633da4f0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvZGF0YXNldHMvVGVzdERhdGFzZXQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8640ca-53bb-4b65-a77b-4a511acc8d1b" + "da600dd5-c938-405e-8310-9b2dcb0cd676" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2389,7 +2392,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:00 GMT" + "Fri, 22 Jun 2018 04:24:00 GMT" ], "Pragma": [ "no-cache" @@ -2397,9 +2400,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "3c8640ca-53bb-4b65-a77b-4a511acc8d1b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2409,33 +2409,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1120" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14973" + ], + "x-ms-request-id": [ + "4fcecc42-f7c4-4142-8e26-5f126927f8a9" ], "x-ms-correlation-request-id": [ - "e4fafe7e-53fe-4a4d-aa7b-c986a10854ed" + "4fcecc42-f7c4-4142-8e26-5f126927f8a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002100Z:e4fafe7e-53fe-4a4d-aa7b-c986a10854ed" + "NORTHEUROPE:20180622T042400Z:4fcecc42-f7c4-4142-8e26-5f126927f8a9" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDkvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3890a451-c32d-4676-ac3e-ed7edf3c636e" + "4b3f2af5-930b-4a5e-8d2f-3c975a33ed35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2450,7 +2453,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:00 GMT" + "Fri, 22 Jun 2018 04:24:00 GMT" ], "Pragma": [ "no-cache" @@ -2458,9 +2461,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "3890a451-c32d-4676-ac3e-ed7edf3c636e" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2470,33 +2470,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1119" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14972" + ], + "x-ms-request-id": [ + "d3bf8974-859f-49d4-9841-9fb745d9d674" ], "x-ms-correlation-request-id": [ - "3b31ae13-d113-4ec6-9498-99235171f170" + "d3bf8974-859f-49d4-9841-9fb745d9d674" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002100Z:3b31ae13-d113-4ec6-9498-99235171f170" + "NORTHEUROPE:20180622T042401Z:d3bf8974-859f-49d4-9841-9fb745d9d674" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTk/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99f7557-0ffe-4fc1-aa14-fe03edae930d" + "576cd37d-e9f6-4367-a81f-2780af2364d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2511,7 +2514,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:02 GMT" + "Fri, 22 Jun 2018 04:24:02 GMT" ], "Pragma": [ "no-cache" @@ -2519,9 +2522,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "f99f7557-0ffe-4fc1-aa14-fe03edae930d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2531,33 +2531,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1118" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14971" + ], + "x-ms-request-id": [ + "490138be-98ac-4641-9145-fb49cdeb6d99" ], "x-ms-correlation-request-id": [ - "d38e0a69-dbe5-4157-8af8-7baf1822b189" + "490138be-98ac-4641-9145-fb49cdeb6d99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002102Z:d38e0a69-dbe5-4157-8af8-7baf1822b189" + "NORTHEUROPE:20180622T042402Z:490138be-98ac-4641-9145-fb49cdeb6d99" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg111/providers/Microsoft.DataFactory/factories/sdktestingfactory6259?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTYyNTk/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg600/providers/Microsoft.DataFactory/factories/sdktestingfactory2349?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTIzNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "634aec58-31de-4c5d-aeb6-e91fd132de1a" + "44aefb75-94c0-40f8-bf8e-944fe4f034d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2569,43 +2572,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:02 GMT" + "Fri, 22 Jun 2018 04:24:02 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14970" ], "x-ms-request-id": [ - "f988a7a6-7575-433d-a049-8cae9ea22fdb" + "69eda124-bb87-42ff-b300-504a35a31280" ], "x-ms-correlation-request-id": [ - "f988a7a6-7575-433d-a049-8cae9ea22fdb" + "69eda124-bb87-42ff-b300-504a35a31280" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002103Z:f988a7a6-7575-433d-a049-8cae9ea22fdb" + "NORTHEUROPE:20180622T042403Z:69eda124-bb87-42ff-b300-504a35a31280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg111?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzExMT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg600?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzYwMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "404f367f-6d5a-481e-8642-58b9f6592b50" + "64bfaced-dc8d-4740-a66c-0d1e2cf74cf0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2621,43 +2627,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:04 GMT" + "Fri, 22 Jun 2018 04:24:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1076" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14986" ], "x-ms-request-id": [ - "c7ac709a-dc84-4eb2-82e4-595af57f849f" + "f09dea9e-95e9-422a-b0d3-758aebe337f7" ], "x-ms-correlation-request-id": [ - "c7ac709a-dc84-4eb2-82e4-595af57f849f" + "f09dea9e-95e9-422a-b0d3-758aebe337f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002104Z:c7ac709a-dc84-4eb2-82e4-595af57f849f" + "NORTHEUROPE:20180622T042404Z:f09dea9e-95e9-422a-b0d3-758aebe337f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNVEV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJNREF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2673,43 +2682,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:20 GMT" + "Fri, 22 Jun 2018 04:24:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14649" + "14976" ], "x-ms-request-id": [ - "18e2e188-2c86-45a6-8d5b-0be02cdc8668" + "f4d82b1b-10c7-4bc9-a545-bec1376e5c24" ], "x-ms-correlation-request-id": [ - "18e2e188-2c86-45a6-8d5b-0be02cdc8668" + "f4d82b1b-10c7-4bc9-a545-bec1376e5c24" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002120Z:18e2e188-2c86-45a6-8d5b-0be02cdc8668" + "NORTHEUROPE:20180622T042420Z:f4d82b1b-10c7-4bc9-a545-bec1376e5c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNVEV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJNREF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2725,43 +2737,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:35 GMT" + "Fri, 22 Jun 2018 04:24:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" + "14975" ], "x-ms-request-id": [ - "ae6f52af-7268-4e14-8872-27e3dc190ff2" + "bcaf421f-7f69-4bbe-82a8-646eae20c31b" ], "x-ms-correlation-request-id": [ - "ae6f52af-7268-4e14-8872-27e3dc190ff2" + "bcaf421f-7f69-4bbe-82a8-646eae20c31b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002135Z:ae6f52af-7268-4e14-8872-27e3dc190ff2" + "NORTHEUROPE:20180622T042435Z:bcaf421f-7f69-4bbe-82a8-646eae20c31b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNVEV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJNREF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2777,37 +2792,40 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:50 GMT" + "Fri, 22 Jun 2018 04:24:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14643" + "14974" ], "x-ms-request-id": [ - "7e30f695-b1dd-4ab6-9f03-8c458e3015d5" + "959a962b-5513-4f27-bbfd-a6849922d334" ], "x-ms-correlation-request-id": [ - "7e30f695-b1dd-4ab6-9f03-8c458e3015d5" + "959a962b-5513-4f27-bbfd-a6849922d334" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002150Z:7e30f695-b1dd-4ab6-9f03-8c458e3015d5" + "NORTHEUROPE:20180622T042451Z:959a962b-5513-4f27-bbfd-a6849922d334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMTEtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNVEV0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJNREF0VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2823,25 +2841,28 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:21:50 GMT" + "Fri, 22 Jun 2018 04:24:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14643" + "14973" ], "x-ms-request-id": [ - "7e30f695-b1dd-4ab6-9f03-8c458e3015d5" + "6b76f9d9-7b79-4c20-93ea-6ca843b72057" ], "x-ms-correlation-request-id": [ - "7e30f695-b1dd-4ab6-9f03-8c458e3015d5" + "6b76f9d9-7b79-4c20-93ea-6ca843b72057" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002150Z:7e30f695-b1dd-4ab6-9f03-8c458e3015d5" + "NORTHEUROPE:20180622T042451Z:6b76f9d9-7b79-4c20-93ea-6ca843b72057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -2849,11 +2870,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg111", - "sdktestingfactory6259" + "sdktestingadfrg600", + "sdktestingfactory2349" ] }, "Variables": { - "SubscriptionId": "876407bb-5bd3-45c4-9c07-cd74a964b2fc" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryScenarioTests/DataFactoryCrud.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryScenarioTests/DataFactoryCrud.json index c92b06031c8d..14d167bdddec 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryScenarioTests/DataFactoryCrud.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DataFactoryScenarioTests/DataFactoryCrud.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg6461?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg4712?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "8c355505-8729-4690-bcec-f0182f141882" + "7ef2513d-c451-42a2-8634-665f7e7354cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461\",\r\n \"name\": \"sdktestingadfrg6461\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712\",\r\n \"name\": \"sdktestingadfrg4712\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "192" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:34 GMT" + "Fri, 22 Jun 2018 03:42:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1081" + "1187" ], "x-ms-request-id": [ - "986e00a4-1a1c-4364-a881-a63a93149707" + "54c1327a-9969-4a41-893d-a0ac06f9a886" ], "x-ms-correlation-request-id": [ - "986e00a4-1a1c-4364-a881-a63a93149707" + "54c1327a-9969-4a41-893d-a0ac06f9a886" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001734Z:986e00a4-1a1c-4364-a881-a63a93149707" + "NORTHEUROPE:20180622T034214Z:54c1327a-9969-4a41-893d-a0ac06f9a886" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMjM1P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk5Nzc2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "7db82c82-a371-4dbb-8cbd-315299ef60c9" + "ad09e823-4630-473d-8e53-871017d152cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory1235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:17:36.2292574Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory9776\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:42:16.6466913Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cd05-0000-0000-0000-5b2c70180000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:36 GMT" + "Fri, 22 Jun 2018 03:42:17 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "7db82c82-a371-4dbb-8cbd-315299ef60c9" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,41 +123,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1105" + "1193" + ], + "x-ms-request-id": [ + "9b4f57dc-1576-4799-8cd7-69297abd7516" ], "x-ms-correlation-request-id": [ - "a094c2d8-e611-4f79-864b-2572e81c05a0" + "9b4f57dc-1576-4799-8cd7-69297abd7516" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001736Z:a094c2d8-e611-4f79-864b-2572e81c05a0" + "NORTHEUROPE:20180622T034217Z:9b4f57dc-1576-4799-8cd7-69297abd7516" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMjM1P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk5Nzc2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "85df5132-8934-4c66-bcda-3772ee3fac8c" + "62c6ef12-fc32-4eb7-9915-091e849b2345" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory1235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:17:36.2292574Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory9776\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:42:16.6466913Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cd05-0000-0000-0000-5b2c70180000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:36 GMT" + "Fri, 22 Jun 2018 03:42:17 GMT" ], "Pragma": [ "no-cache" @@ -183,9 +186,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "85df5132-8934-4c66-bcda-3772ee3fac8c" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -196,35 +196,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1104" + "1192" + ], + "x-ms-request-id": [ + "0d90a64b-c78c-4351-9955-0e3e6ab85659" ], "x-ms-correlation-request-id": [ - "aa0c28c8-c6c9-48d9-b2ba-18da26ce5346" + "0d90a64b-c78c-4351-9955-0e3e6ab85659" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001737Z:aa0c28c8-c6c9-48d9-b2ba-18da26ce5346" + "NORTHEUROPE:20180622T034217Z:0d90a64b-c78c-4351-9955-0e3e6ab85659" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMjM1P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk5Nzc2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b2713a5-4efc-4558-a20c-5ad084d675f0" + "ab85be78-09e8-469b-9a88-0f0268d7a96e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory1235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:17:36.2292574Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory9776\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:42:16.6466913Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cd05-0000-0000-0000-5b2c70180000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -236,7 +239,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:36 GMT" + "Fri, 22 Jun 2018 03:42:17 GMT" ], "Pragma": [ "no-cache" @@ -250,9 +253,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "7b2713a5-4efc-4558-a20c-5ad084d675f0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -263,35 +263,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14980" + ], + "x-ms-request-id": [ + "3d487ab7-a276-448f-bf6b-74fc547b7c9c" ], "x-ms-correlation-request-id": [ - "da36193b-6f03-4277-8bcc-4b65f4f023f2" + "3d487ab7-a276-448f-bf6b-74fc547b7c9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001736Z:da36193b-6f03-4277-8bcc-4b65f4f023f2" + "NORTHEUROPE:20180622T034217Z:3d487ab7-a276-448f-bf6b-74fc547b7c9c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMjM1P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk5Nzc2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e40e9a07-3a5e-45f7-8ac4-112054f6d32d" + "e168676e-ca20-4ba9-9c60-791768fbbb61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory1235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:17:36.2292574Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory9776\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:42:16.6466913Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cd05-0000-0000-0000-5b2c70180000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -303,7 +306,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:36 GMT" + "Fri, 22 Jun 2018 03:42:17 GMT" ], "Pragma": [ "no-cache" @@ -317,9 +320,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "e40e9a07-3a5e-45f7-8ac4-112054f6d32d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -330,35 +330,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" + "14978" + ], + "x-ms-request-id": [ + "45d96109-38f0-4f2e-bc05-a2e43acbdf66" ], "x-ms-correlation-request-id": [ - "07d13fbe-1d8b-4e34-9bae-fc72239dc523" + "45d96109-38f0-4f2e-bc05-a2e43acbdf66" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001737Z:07d13fbe-1d8b-4e34-9bae-fc72239dc523" + "NORTHEUROPE:20180622T034218Z:45d96109-38f0-4f2e-bc05-a2e43acbdf66" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adbd5b6a-1ad7-4e4c-b8f1-c136ffe78fbe" + "c4b24187-8771-4c1f-be55-8ce2adf64f50" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory1235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:17:36.2292574Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory9776\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:42:16.6466913Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cd05-0000-0000-0000-5b2c70180000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -370,7 +373,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:36 GMT" + "Fri, 22 Jun 2018 03:42:17 GMT" ], "Pragma": [ "no-cache" @@ -384,9 +387,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "adbd5b6a-1ad7-4e4c-b8f1-c136ffe78fbe" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -397,35 +397,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14979" + ], + "x-ms-request-id": [ + "3d08c513-c839-4b4e-91b4-4de3fe318e0f" ], "x-ms-correlation-request-id": [ - "0821b33f-8d1d-4b2d-a446-f8e193dad74c" + "3d08c513-c839-4b4e-91b4-4de3fe318e0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001736Z:0821b33f-8d1d-4b2d-a446-f8e193dad74c" + "NORTHEUROPE:20180622T034217Z:3d08c513-c839-4b4e-91b4-4de3fe318e0f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bdbaed0-f336-4587-9a9f-09138dc1b656" + "07a383bc-2faf-472f-8064-cd00ad64288d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory1235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:17:36.2292574Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory9776\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:42:16.6466913Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cd05-0000-0000-0000-5b2c70180000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -437,7 +440,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:37 GMT" + "Fri, 22 Jun 2018 03:42:18 GMT" ], "Pragma": [ "no-cache" @@ -451,9 +454,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "8bdbaed0-f336-4587-9a9f-09138dc1b656" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -464,32 +464,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14977" + ], + "x-ms-request-id": [ + "4f9ddbd1-5a0c-45fb-948b-ec7ff49cfc64" ], "x-ms-correlation-request-id": [ - "76f55778-8204-4753-b958-6e87bdda6602" + "4f9ddbd1-5a0c-45fb-948b-ec7ff49cfc64" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001737Z:76f55778-8204-4753-b958-6e87bdda6602" + "NORTHEUROPE:20180622T034218Z:4f9ddbd1-5a0c-45fb-948b-ec7ff49cfc64" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMjM1P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk5Nzc2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "614a7b1e-2a44-4cb6-b050-b255b0027921" + "fe3b4974-ca93-4e1e-b51e-752cf0cd13e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -504,7 +507,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:38 GMT" + "Fri, 22 Jun 2018 03:42:20 GMT" ], "Pragma": [ "no-cache" @@ -512,9 +515,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "614a7b1e-2a44-4cb6-b050-b255b0027921" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -524,33 +524,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1103" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14992" + ], + "x-ms-request-id": [ + "ed9d09c8-ddd8-4cdf-ae78-19aa4caec1e8" ], "x-ms-correlation-request-id": [ - "0ee51658-2687-4870-a163-201d4c115976" + "ed9d09c8-ddd8-4cdf-ae78-19aa4caec1e8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001739Z:0ee51658-2687-4870-a163-201d4c115976" + "NORTHEUROPE:20180622T034220Z:ed9d09c8-ddd8-4cdf-ae78-19aa4caec1e8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg6461/providers/Microsoft.DataFactory/factories/sdktestingfactory1235?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMjM1P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4712/providers/Microsoft.DataFactory/factories/sdktestingfactory9776?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk5Nzc2P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72cb5b6e-11c7-410e-911a-9ce448b1a263" + "8f888f02-26d1-4873-aec9-a667ab975d8e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -562,43 +565,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:39 GMT" + "Fri, 22 Jun 2018 03:42:20 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1102" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14991" ], "x-ms-request-id": [ - "411a6bec-8615-44ea-973c-efe8b1760a6e" + "39c604c1-60d2-4f05-81f6-f1aa97724c89" ], "x-ms-correlation-request-id": [ - "411a6bec-8615-44ea-973c-efe8b1760a6e" + "39c604c1-60d2-4f05-81f6-f1aa97724c89" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001739Z:411a6bec-8615-44ea-973c-efe8b1760a6e" + "NORTHEUROPE:20180622T034220Z:39c604c1-60d2-4f05-81f6-f1aa97724c89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg6461?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY0NjE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg4712?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQ3MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b69c5b3-bd49-4702-8677-7fef488566b3" + "61fb3724-0dc2-4786-9d8b-3608037e4f30" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -614,43 +620,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:40 GMT" + "Fri, 22 Jun 2018 03:42:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1080" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14986" ], "x-ms-request-id": [ - "05939e7a-6b20-43e8-9e1c-58383b3da32d" + "d21629cc-8eda-4d31-9e1c-be3c2a545015" ], "x-ms-correlation-request-id": [ - "05939e7a-6b20-43e8-9e1c-58383b3da32d" + "d21629cc-8eda-4d31-9e1c-be3c2a545015" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001740Z:05939e7a-6b20-43e8-9e1c-58383b3da32d" + "NORTHEUROPE:20180622T034222Z:d21629cc-8eda-4d31-9e1c-be3c2a545015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJORFl4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBOekV5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -666,43 +675,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:55 GMT" + "Fri, 22 Jun 2018 03:42:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14976" ], "x-ms-request-id": [ - "bb9792fb-6605-460b-95d6-1b39a4b3d676" + "9fb06ff5-8994-4679-af49-30ab8db5a928" ], "x-ms-correlation-request-id": [ - "bb9792fb-6605-460b-95d6-1b39a4b3d676" + "9fb06ff5-8994-4679-af49-30ab8db5a928" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001756Z:bb9792fb-6605-460b-95d6-1b39a4b3d676" + "NORTHEUROPE:20180622T034237Z:9fb06ff5-8994-4679-af49-30ab8db5a928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJORFl4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBOekV5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -718,43 +730,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:10 GMT" + "Fri, 22 Jun 2018 03:42:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" + "14975" ], "x-ms-request-id": [ - "c2b0f583-850f-4727-ba1f-8aeec977868b" + "7618ad24-17bd-4e04-93d2-7ffb5b678e03" ], "x-ms-correlation-request-id": [ - "c2b0f583-850f-4727-ba1f-8aeec977868b" + "7618ad24-17bd-4e04-93d2-7ffb5b678e03" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001811Z:c2b0f583-850f-4727-ba1f-8aeec977868b" + "NORTHEUROPE:20180622T034252Z:7618ad24-17bd-4e04-93d2-7ffb5b678e03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJORFl4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBOekV5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -770,37 +785,40 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:26 GMT" + "Fri, 22 Jun 2018 03:43:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14974" ], "x-ms-request-id": [ - "e6b494c9-e4f7-4018-8249-d9447b7cd063" + "f19cbaed-e72a-4e4f-826d-fc1841497bad" ], "x-ms-correlation-request-id": [ - "e6b494c9-e4f7-4018-8249-d9447b7cd063" + "f19cbaed-e72a-4e4f-826d-fc1841497bad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001826Z:e6b494c9-e4f7-4018-8249-d9447b7cd063" + "NORTHEUROPE:20180622T034308Z:f19cbaed-e72a-4e4f-826d-fc1841497bad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NDYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJORFl4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0NzEyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBOekV5TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -816,25 +834,28 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:26 GMT" + "Fri, 22 Jun 2018 03:43:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14973" ], "x-ms-request-id": [ - "e6b494c9-e4f7-4018-8249-d9447b7cd063" + "ede2c301-02ac-471a-b8f1-cca43dbdc8c0" ], "x-ms-correlation-request-id": [ - "e6b494c9-e4f7-4018-8249-d9447b7cd063" + "ede2c301-02ac-471a-b8f1-cca43dbdc8c0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001826Z:e6b494c9-e4f7-4018-8249-d9447b7cd063" + "NORTHEUROPE:20180622T034308Z:ede2c301-02ac-471a-b8f1-cca43dbdc8c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -842,11 +863,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg6461", - "sdktestingfactory1235" + "sdktestingadfrg4712", + "sdktestingfactory9776" ] }, "Variables": { - "SubscriptionId": "876407bb-5bd3-45c4-9c07-cd74a964b2fc" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DatasetScenarioTests/DatasetCrud.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DatasetScenarioTests/DatasetCrud.json index 0223ea3c8443..2f21c215fbbf 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DatasetScenarioTests/DatasetCrud.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.DatasetScenarioTests/DatasetCrud.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg9261?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg5657?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "8abf2a9b-24e2-46f5-b6be-fff5e367230d" + "7c347c37-34a8-4c8e-8df5-9242df4eb7fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261\",\r\n \"name\": \"sdktestingadfrg9261\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657\",\r\n \"name\": \"sdktestingadfrg5657\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "192" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:43 GMT" + "Fri, 22 Jun 2018 03:48:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1105" + "1191" ], "x-ms-request-id": [ - "839a679b-7c67-491d-b61e-4f6f41432d24" + "9f158674-63fa-4c30-b012-17c34e668151" ], "x-ms-correlation-request-id": [ - "839a679b-7c67-491d-b61e-4f6f41432d24" + "9f158674-63fa-4c30-b012-17c34e668151" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001944Z:839a679b-7c67-491d-b61e-4f6f41432d24" + "NORTHEUROPE:20180622T034835Z:9f158674-63fa-4c30-b012-17c34e668151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "f135943c-0ab4-41b9-9f7a-96920a258868" + "eb08ac11-de2f-4a93-9604-950ec46040ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory8372\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:19:46.7826904Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory3408\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:48:37.3886553Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d305-0000-0000-0000-5b2c71950000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:46 GMT" + "Fri, 22 Jun 2018 03:48:37 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f135943c-0ab4-41b9-9f7a-96920a258868" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,35 +123,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1077" + "1196" + ], + "x-ms-request-id": [ + "4b4d466d-0be3-4ca1-8caa-8d9abce66b76" ], "x-ms-correlation-request-id": [ - "695abaf6-7dda-4639-a487-d7121f01921e" + "4b4d466d-0be3-4ca1-8caa-8d9abce66b76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001946Z:695abaf6-7dda-4639-a487-d7121f01921e" + "NORTHEUROPE:20180622T034837Z:4b4d466d-0be3-4ca1-8caa-8d9abce66b76" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94010589-77cc-4e1d-a3bb-0e89b2b4e619" + "c7add780-8d1e-492a-9bc7-cad5e07232db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory8372\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:19:46.7826904Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory3408\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:48:37.3886553Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d305-0000-0000-0000-5b2c71950000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:46 GMT" + "Fri, 22 Jun 2018 03:48:37 GMT" ], "Pragma": [ "no-cache" @@ -177,9 +180,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "94010589-77cc-4e1d-a3bb-0e89b2b4e619" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -190,35 +190,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14633" + "14987" + ], + "x-ms-request-id": [ + "25dd2ee3-e50b-40c4-94e5-e54e62cd9122" ], "x-ms-correlation-request-id": [ - "fdf27c83-1c42-47db-ac38-f42b7495a4cf" + "25dd2ee3-e50b-40c4-94e5-e54e62cd9122" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001946Z:fdf27c83-1c42-47db-ac38-f42b7495a4cf" + "NORTHEUROPE:20180622T034838Z:25dd2ee3-e50b-40c4-94e5-e54e62cd9122" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79146376-1d2f-4710-9206-66e938274e61" + "ee59e595-6942-45c4-843e-f961df6ca73c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory8372\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:19:46.7826904Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory3408\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:48:37.3886553Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d305-0000-0000-0000-5b2c71950000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -230,7 +233,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:46 GMT" + "Fri, 22 Jun 2018 03:48:37 GMT" ], "Pragma": [ "no-cache" @@ -244,9 +247,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "79146376-1d2f-4710-9206-66e938274e61" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -257,20 +257,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14632" + "14986" + ], + "x-ms-request-id": [ + "4fd54bed-5aff-48d4-b741-f484bb6eed45" ], "x-ms-correlation-request-id": [ - "b197917f-cc2a-4988-8192-c000de816bf7" + "4fd54bed-5aff-48d4-b741-f484bb6eed45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001946Z:b197917f-cc2a-4988-8192-c000de816bf7" + "NORTHEUROPE:20180622T034838Z:4fd54bed-5aff-48d4-b741-f484bb6eed45" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2xpbmtlZHNlcnZpY2VzL1Rlc3REYXRhTGFrZVN0b3JlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2xpbmtlZHNlcnZpY2VzL1Rlc3REYXRhTGFrZVN0b3JlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -281,17 +284,17 @@ "159" ], "x-ms-client-request-id": [ - "f1dfc4e0-f14e-4d1a-a331-06d4c3d9da91" + "324cffd5-ee4d-477b-81f6-9f4ed803d68f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"1c005f36-0000-0000-0000-5a14c2a30000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"0f006000-0000-0000-0000-5b2c71980000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -303,7 +306,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:46 GMT" + "Fri, 22 Jun 2018 03:48:40 GMT" ], "Pragma": [ "no-cache" @@ -317,9 +320,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f1dfc4e0-f14e-4d1a-a331-06d4c3d9da91" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -330,20 +330,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1075" + "1195" + ], + "x-ms-request-id": [ + "b93b08d5-b0e1-4a79-b744-9d0e82ce9351" ], "x-ms-correlation-request-id": [ - "0f4f58ae-0652-43cc-a9d3-e8f8f84c0b82" + "b93b08d5-b0e1-4a79-b744-9d0e82ce9351" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001947Z:0f4f58ae-0652-43cc-a9d3-e8f8f84c0b82" + "NORTHEUROPE:20180622T034840Z:b93b08d5-b0e1-4a79-b744-9d0e82ce9351" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -354,17 +357,17 @@ "625" ], "x-ms-client-request-id": [ - "c9ad966a-ca78-4f62-8d73-26bcdf1b974e" + "510814ae-964b-45a4-9492-8f54af89ba10" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"1c006136-0000-0000-0000-5a14c2a30000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"0f006200-0000-0000-0000-5b2c71990000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -376,7 +379,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:47 GMT" + "Fri, 22 Jun 2018 03:48:41 GMT" ], "Pragma": [ "no-cache" @@ -390,9 +393,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "c9ad966a-ca78-4f62-8d73-26bcdf1b974e" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -403,20 +403,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1074" + "1194" + ], + "x-ms-request-id": [ + "dee2ea33-014f-4056-8f58-4cfba882041d" ], "x-ms-correlation-request-id": [ - "f51270aa-6015-49ca-94b1-8f75f32515d8" + "dee2ea33-014f-4056-8f58-4cfba882041d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001947Z:f51270aa-6015-49ca-94b1-8f75f32515d8" + "NORTHEUROPE:20180622T034841Z:dee2ea33-014f-4056-8f58-4cfba882041d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -427,17 +430,17 @@ "668" ], "x-ms-client-request-id": [ - "69292906-a721-4931-b8e3-0c6d6d8e7461" + "3db31d27-a289-4db7-9a4d-a61625b83cbe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"1c006436-0000-0000-0000-5a14c2a40000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"0f006700-0000-0000-0000-5b2c719b0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -449,7 +452,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:47 GMT" + "Fri, 22 Jun 2018 03:48:42 GMT" ], "Pragma": [ "no-cache" @@ -463,9 +466,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "69292906-a721-4931-b8e3-0c6d6d8e7461" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -476,35 +476,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1073" + "1193" + ], + "x-ms-request-id": [ + "ca6b3b83-40f7-4a56-96f1-8af87db399f5" ], "x-ms-correlation-request-id": [ - "fbf351f1-fa1b-4c59-bfb1-63b0e04d2bb0" + "ca6b3b83-40f7-4a56-96f1-8af87db399f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001948Z:fbf351f1-fa1b-4c59-bfb1-63b0e04d2bb0" + "NORTHEUROPE:20180622T034843Z:ca6b3b83-40f7-4a56-96f1-8af87db399f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca85473-2e87-4c8a-b546-81c7c10987f7" + "4c15a40d-6da4-4700-b36e-d124783ce9a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"1c006136-0000-0000-0000-5a14c2a30000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"0f006200-0000-0000-0000-5b2c71990000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -516,7 +519,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:47 GMT" + "Fri, 22 Jun 2018 03:48:41 GMT" ], "Pragma": [ "no-cache" @@ -530,9 +533,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "8ca85473-2e87-4c8a-b546-81c7c10987f7" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -543,35 +543,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14631" + "14985" + ], + "x-ms-request-id": [ + "04361e5b-64cd-4c19-b1d1-7d459ae3d342" ], "x-ms-correlation-request-id": [ - "04802d05-fa8d-443c-b900-7aa68d49c026" + "04361e5b-64cd-4c19-b1d1-7d459ae3d342" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001947Z:04802d05-fa8d-443c-b900-7aa68d49c026" + "NORTHEUROPE:20180622T034842Z:04361e5b-64cd-4c19-b1d1-7d459ae3d342" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92625c8f-03fa-4521-a03c-c52979ffb5f9" + "95f48186-2a8e-4c63-99ba-abdb62e34250" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"1c006436-0000-0000-0000-5a14c2a40000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"0f006700-0000-0000-0000-5b2c719b0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -583,7 +586,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:47 GMT" + "Fri, 22 Jun 2018 03:48:42 GMT" ], "Pragma": [ "no-cache" @@ -597,9 +600,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "92625c8f-03fa-4521-a03c-c52979ffb5f9" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -610,35 +610,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14629" + "14983" + ], + "x-ms-request-id": [ + "353d132e-7fe1-4c75-a8b5-3605a618f750" ], "x-ms-correlation-request-id": [ - "70d92a60-d2d7-4d2e-a0b8-1015401d3029" + "353d132e-7fe1-4c75-a8b5-3605a618f750" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001948Z:70d92a60-d2d7-4d2e-a0b8-1015401d3029" + "NORTHEUROPE:20180622T034843Z:353d132e-7fe1-4c75-a8b5-3605a618f750" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9b8e098-5a93-4965-996d-ab82116b2491" + "84c4e77d-2748-4eed-9acb-1dd274f20ab4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"1c006136-0000-0000-0000-5a14c2a30000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"0f006200-0000-0000-0000-5b2c71990000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -650,7 +653,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:47 GMT" + "Fri, 22 Jun 2018 03:48:41 GMT" ], "Pragma": [ "no-cache" @@ -664,9 +667,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "d9b8e098-5a93-4965-996d-ab82116b2491" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -677,35 +677,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14630" + "14984" + ], + "x-ms-request-id": [ + "6ad899eb-3dba-407f-9183-db03bc391ba7" ], "x-ms-correlation-request-id": [ - "8a5bc786-ca0e-4e5d-a8d5-5bb681a674fd" + "6ad899eb-3dba-407f-9183-db03bc391ba7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001947Z:8a5bc786-ca0e-4e5d-a8d5-5bb681a674fd" + "NORTHEUROPE:20180622T034842Z:6ad899eb-3dba-407f-9183-db03bc391ba7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5b9b060-7842-4c49-a171-84ed5a208e4a" + "30a64202-0924-445a-bbc3-ef442075934b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"1c006436-0000-0000-0000-5a14c2a40000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset\",\r\n \"name\": \"TestDataset\",\r\n \"type\": \"Microsoft.DataFactory/factories/datasets\",\r\n \"properties\": {\r\n \"type\": \"AzureBlob\",\r\n \"typeProperties\": {\r\n \"folderPath\": {\r\n \"value\": \"@dataset().MyFolderPath\",\r\n \"type\": \"Expression\"\r\n },\r\n \"fileName\": {\r\n \"value\": \"@dataset().MyFileName\",\r\n \"type\": \"Expression\"\r\n },\r\n \"format\": {\r\n \"type\": \"TextFormat\"\r\n }\r\n },\r\n \"description\": \"dataset description\",\r\n \"linkedServiceName\": {\r\n \"referenceName\": \"TestDataLakeStore\",\r\n \"type\": \"LinkedServiceReference\"\r\n },\r\n \"parameters\": {\r\n \"MyFolderPath\": {\r\n \"type\": \"String\"\r\n },\r\n \"MyFileName\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"etag\": \"0f006700-0000-0000-0000-5b2c719b0000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -717,7 +720,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:48 GMT" + "Fri, 22 Jun 2018 03:48:43 GMT" ], "Pragma": [ "no-cache" @@ -731,9 +734,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "f5b9b060-7842-4c49-a171-84ed5a208e4a" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -744,32 +744,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14627" + "14982" + ], + "x-ms-request-id": [ + "d5ac4091-09ab-4031-87c6-37c059f025af" ], "x-ms-correlation-request-id": [ - "73651b8b-1e7f-4a3b-9765-728cdf945bd9" + "d5ac4091-09ab-4031-87c6-37c059f025af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001948Z:73651b8b-1e7f-4a3b-9765-728cdf945bd9" + "NORTHEUROPE:20180622T034843Z:d5ac4091-09ab-4031-87c6-37c059f025af" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aef75f5-6ec3-4a77-bd4f-d41e1e13b9d8" + "20faad6d-1137-46b5-8f6f-adde9ea3f194" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -784,7 +787,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:48 GMT" + "Fri, 22 Jun 2018 03:48:43 GMT" ], "Pragma": [ "no-cache" @@ -792,9 +795,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "1aef75f5-6ec3-4a77-bd4f-d41e1e13b9d8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -804,33 +804,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1072" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14993" + ], + "x-ms-request-id": [ + "4dd10d6c-cb54-4da4-9379-9fd5d3f0f8b7" ], "x-ms-correlation-request-id": [ - "df165f86-12f2-4918-9d33-065de6637a48" + "4dd10d6c-cb54-4da4-9379-9fd5d3f0f8b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001948Z:df165f86-12f2-4918-9d33-065de6637a48" + "NORTHEUROPE:20180622T034844Z:4dd10d6c-cb54-4da4-9379-9fd5d3f0f8b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/datasets/TestDataset?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/datasets/TestDataset?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2RhdGFzZXRzL1Rlc3REYXRhc2V0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab6530c8-c901-4bc0-970c-6b1ef5dfda5d" + "d4dd9b38-32ee-42a8-8e78-0144b11aa4b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -842,7 +845,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:48 GMT" + "Fri, 22 Jun 2018 03:48:43 GMT" ], "Pragma": [ "no-cache" @@ -850,9 +853,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ab6530c8-c901-4bc0-970c-6b1ef5dfda5d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -862,33 +862,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1071" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14992" + ], + "x-ms-request-id": [ + "1ecc213e-9677-43f3-b2e9-dbab0d38cda0" ], "x-ms-correlation-request-id": [ - "2de566bb-ba3c-4455-ba3b-c9696248f4ef" + "1ecc213e-9677-43f3-b2e9-dbab0d38cda0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001948Z:2de566bb-ba3c-4455-ba3b-c9696248f4ef" + "NORTHEUROPE:20180622T034844Z:1ecc213e-9677-43f3-b2e9-dbab0d38cda0" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyL2xpbmtlZHNlcnZpY2VzL1Rlc3REYXRhTGFrZVN0b3JlP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4L2xpbmtlZHNlcnZpY2VzL1Rlc3REYXRhTGFrZVN0b3JlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d78bafdc-9fe1-45a7-874e-a2f0ac302fb8" + "a7d09a8d-ce98-4c99-a54b-6c4198c1e76c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -903,7 +906,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:48 GMT" + "Fri, 22 Jun 2018 03:48:44 GMT" ], "Pragma": [ "no-cache" @@ -911,9 +914,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "d78bafdc-9fe1-45a7-874e-a2f0ac302fb8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -923,33 +923,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1070" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14991" + ], + "x-ms-request-id": [ + "f2059096-3660-499a-a2ba-22c5beee2823" ], "x-ms-correlation-request-id": [ - "97272d32-44e8-4aab-b02b-2b2925cdfb15" + "f2059096-3660-499a-a2ba-22c5beee2823" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001949Z:97272d32-44e8-4aab-b02b-2b2925cdfb15" + "NORTHEUROPE:20180622T034845Z:f2059096-3660-499a-a2ba-22c5beee2823" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg9261/providers/Microsoft.DataFactory/factories/sdktestingfactory8372?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk4MzcyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5657/providers/Microsoft.DataFactory/factories/sdktestingfactory3408?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNDA4P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56b060aa-fa10-44f9-b46d-29b1b7040b7d" + "a129b725-1a86-4ee1-b3bf-e449425955cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -964,7 +967,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:49 GMT" + "Fri, 22 Jun 2018 03:48:47 GMT" ], "Pragma": [ "no-cache" @@ -972,9 +975,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "56b060aa-fa10-44f9-b46d-29b1b7040b7d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -984,32 +984,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1069" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14990" + ], + "x-ms-request-id": [ + "2abc8134-e518-454e-a351-4233025ec18f" ], "x-ms-correlation-request-id": [ - "4b6eaa5b-6a7a-49cc-b1d8-f44a4598a740" + "2abc8134-e518-454e-a351-4233025ec18f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001950Z:4b6eaa5b-6a7a-49cc-b1d8-f44a4598a740" + "NORTHEUROPE:20180622T034847Z:2abc8134-e518-454e-a351-4233025ec18f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg9261?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzkyNjE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg5657?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU2NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b83bb4a-089f-4ccb-a4a3-0dce22c9bea2" + "e10ef98b-cdc8-4a1e-9799-1c9d9d2d38c7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1025,43 +1028,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:52 GMT" + "Fri, 22 Jun 2018 03:48:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1103" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14987" ], "x-ms-request-id": [ - "ef4067db-e0ea-43f6-b4f3-e43d8713bc7a" + "af905311-0515-4cdd-8717-60a1940fb928" ], "x-ms-correlation-request-id": [ - "ef4067db-e0ea-43f6-b4f3-e43d8713bc7a" + "af905311-0515-4cdd-8717-60a1940fb928" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001952Z:ef4067db-e0ea-43f6-b4f3-e43d8713bc7a" + "NORTHEUROPE:20180622T034848Z:af905311-0515-4cdd-8717-60a1940fb928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVNall4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOalUzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1077,43 +1083,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:07 GMT" + "Fri, 22 Jun 2018 03:49:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14672" + "14980" ], "x-ms-request-id": [ - "b519c8d1-973b-4957-8940-9db69cdd8ab8" + "1849381e-5b33-492a-98fd-e9818540245b" ], "x-ms-correlation-request-id": [ - "b519c8d1-973b-4957-8940-9db69cdd8ab8" + "1849381e-5b33-492a-98fd-e9818540245b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002007Z:b519c8d1-973b-4957-8940-9db69cdd8ab8" + "NORTHEUROPE:20180622T034904Z:1849381e-5b33-492a-98fd-e9818540245b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVNall4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOalUzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1129,43 +1138,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:22 GMT" + "Fri, 22 Jun 2018 03:49:19 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14671" + "14979" ], "x-ms-request-id": [ - "5bbca13c-82a6-4e22-9c2f-208e0f391a36" + "a28e48cd-6d20-4591-9bd1-368628346cfa" ], "x-ms-correlation-request-id": [ - "5bbca13c-82a6-4e22-9c2f-208e0f391a36" + "a28e48cd-6d20-4591-9bd1-368628346cfa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002022Z:5bbca13c-82a6-4e22-9c2f-208e0f391a36" + "NORTHEUROPE:20180622T034919Z:a28e48cd-6d20-4591-9bd1-368628346cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVNall4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOalUzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1181,37 +1193,40 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:37 GMT" + "Fri, 22 Jun 2018 03:49:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "14978" ], "x-ms-request-id": [ - "59f45909-bf01-43e3-a29f-837a670d4221" + "27690cab-3ec3-4add-a984-02d48f62e734" ], "x-ms-correlation-request-id": [ - "59f45909-bf01-43e3-a29f-837a670d4221" + "27690cab-3ec3-4add-a984-02d48f62e734" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002038Z:59f45909-bf01-43e3-a29f-837a670d4221" + "NORTHEUROPE:20180622T034934Z:27690cab-3ec3-4add-a984-02d48f62e734" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5MjYxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVNall4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NjU3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOalUzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1227,25 +1242,28 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:20:37 GMT" + "Fri, 22 Jun 2018 03:49:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14669" + "14977" ], "x-ms-request-id": [ - "59f45909-bf01-43e3-a29f-837a670d4221" + "327e25d9-e88b-4618-b4d8-983544cc1ba0" ], "x-ms-correlation-request-id": [ - "59f45909-bf01-43e3-a29f-837a670d4221" + "327e25d9-e88b-4618-b4d8-983544cc1ba0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T002038Z:59f45909-bf01-43e3-a29f-837a670d4221" + "NORTHEUROPE:20180622T034935Z:327e25d9-e88b-4618-b4d8-983544cc1ba0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -1253,11 +1271,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg9261", - "sdktestingfactory8372" + "sdktestingadfrg5657", + "sdktestingfactory3408" ] }, "Variables": { - "SubscriptionId": "876407bb-5bd3-45c4-9c07-cd74a964b2fc" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/AzureIntegrationRuntimeScenarioTest.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/AzureIntegrationRuntimeScenarioTest.json index 9f24f0b25429..1b47f4b4d070 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/AzureIntegrationRuntimeScenarioTest.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/AzureIntegrationRuntimeScenarioTest.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourcegroups/sdktestingadfrg896?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg4047?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "231e07fe-366d-49de-83be-01a76b3aabff" + "4548e572-c446-4a6c-b5c7-ddf45ee63583" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896\",\r\n \"name\": \"sdktestingadfrg896\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047\",\r\n \"name\": \"sdktestingadfrg4047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:44 GMT" + "Fri, 22 Jun 2018 03:47:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "9a98b136-39c3-4bee-a558-6ace9feda4b5" + "11d65aa3-08dc-439c-932d-6eac663ac387" ], "x-ms-correlation-request-id": [ - "9a98b136-39c3-4bee-a558-6ace9feda4b5" + "11d65aa3-08dc-439c-932d-6eac663ac387" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075644Z:9a98b136-39c3-4bee-a558-6ace9feda4b5" + "NORTHEUROPE:20180622T034728Z:11d65aa3-08dc-439c-932d-6eac663ac387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTc/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "51494550-97e1-4742-83be-ab248e901bba" + "94ee8f24-6685-4d50-aa6a-b9e20de2291e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory2797\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-16T07:56:47.9180831Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory4904\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:47:29.8139283Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d205-0000-0000-0000-5b2c71510000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:48 GMT" + "Fri, 22 Jun 2018 03:47:29 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "51494550-97e1-4742-83be-ab248e901bba" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,20 +123,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1181" + ], + "x-ms-request-id": [ + "ae3dcc52-892c-447f-a074-924d428e8ce6" ], "x-ms-correlation-request-id": [ - "925b56bf-3fcc-4164-a594-522995e95019" + "ae3dcc52-892c-447f-a074-924d428e8ce6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075648Z:925b56bf-3fcc-4164-a594-522995e95019" + "NORTHEUROPE:20180622T034730Z:ae3dcc52-892c-447f-a074-924d428e8ce6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationRuntimes/azureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTcvaW50ZWdyYXRpb25SdW50aW1lcy9henVyZWludGVncmF0aW9ucnVudGltZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationRuntimes/azureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0L2ludGVncmF0aW9uUnVudGltZXMvYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n }\r\n}", "RequestHeaders": { @@ -147,17 +150,17 @@ "101" ], "x-ms-client-request-id": [ - "ce594049-a48a-4eaf-bf09-4b1d5137c9a4" + "e13b1e8c-f132-40fe-889c-af51873b2597" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationruntimes/azureintegrationruntime\",\r\n \"name\": \"azureintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n },\r\n \"etag\": \"8f004022-0000-0000-0000-5a0d44c10000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationruntimes/azureintegrationruntime\",\r\n \"name\": \"azureintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n },\r\n \"etag\": \"16002afd-0000-0000-0000-5b2c71530000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:49 GMT" + "Fri, 22 Jun 2018 03:47:31 GMT" ], "Pragma": [ "no-cache" @@ -183,9 +186,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "ce594049-a48a-4eaf-bf09-4b1d5137c9a4" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -196,35 +196,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1180" + ], + "x-ms-request-id": [ + "dddb8c78-03d8-49f5-bf17-313245ef686f" ], "x-ms-correlation-request-id": [ - "3816696d-04f6-4136-872c-9675c641d44b" + "dddb8c78-03d8-49f5-bf17-313245ef686f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075649Z:3816696d-04f6-4136-872c-9675c641d44b" + "NORTHEUROPE:20180622T034731Z:dddb8c78-03d8-49f5-bf17-313245ef686f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationRuntimes/azureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTcvaW50ZWdyYXRpb25SdW50aW1lcy9henVyZWludGVncmF0aW9ucnVudGltZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationRuntimes/azureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0L2ludGVncmF0aW9uUnVudGltZXMvYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d072cc1-17bb-4c9d-a9cf-fe6bb9336415" + "972484ca-ee1b-4802-a9da-a6cf64ba2fb9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationruntimes/azureintegrationruntime\",\r\n \"name\": \"azureintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n },\r\n \"etag\": \"8f004022-0000-0000-0000-5a0d44c10000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationruntimes/azureintegrationruntime\",\r\n \"name\": \"azureintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n },\r\n \"etag\": \"16002afd-0000-0000-0000-5b2c71530000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -236,7 +239,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:49 GMT" + "Fri, 22 Jun 2018 03:47:31 GMT" ], "Pragma": [ "no-cache" @@ -250,9 +253,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "2d072cc1-17bb-4c9d-a9cf-fe6bb9336415" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -263,32 +263,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14964" + ], + "x-ms-request-id": [ + "9904553d-5b03-4da0-83c2-5b1fd9d234d5" ], "x-ms-correlation-request-id": [ - "da25ffbf-3e50-4d02-ae46-1c310c43a64f" + "9904553d-5b03-4da0-83c2-5b1fd9d234d5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075649Z:da25ffbf-3e50-4d02-ae46-1c310c43a64f" + "NORTHEUROPE:20180622T034731Z:9904553d-5b03-4da0-83c2-5b1fd9d234d5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationRuntimes/azureintegrationruntime/getStatus?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTcvaW50ZWdyYXRpb25SdW50aW1lcy9henVyZWludGVncmF0aW9ucnVudGltZS9nZXRTdGF0dXM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationRuntimes/azureintegrationruntime/getStatus?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0L2ludGVncmF0aW9uUnVudGltZXMvYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvZ2V0U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fca6fd8-b14f-4268-9d5c-730d7839abef" + "4d5d12e0-13da-4247-a2ec-0fbabfe3b324" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Online\",\r\n \"type\": \"Managed\"\r\n }\r\n}", @@ -303,7 +306,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:50 GMT" + "Fri, 22 Jun 2018 03:47:32 GMT" ], "Pragma": [ "no-cache" @@ -317,9 +320,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "9fca6fd8-b14f-4268-9d5c-730d7839abef" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -330,35 +330,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14963" + ], + "x-ms-request-id": [ + "b6daa6ad-0d91-4e9e-8d71-83bb48f48fd0" ], "x-ms-correlation-request-id": [ - "044db4d0-97b6-419f-afe3-843f1b3f9992" + "b6daa6ad-0d91-4e9e-8d71-83bb48f48fd0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075650Z:044db4d0-97b6-419f-afe3-843f1b3f9992" + "NORTHEUROPE:20180622T034732Z:b6daa6ad-0d91-4e9e-8d71-83bb48f48fd0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationRuntimes?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTcvaW50ZWdyYXRpb25SdW50aW1lcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationRuntimes?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0L2ludGVncmF0aW9uUnVudGltZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7749805b-bf3b-4d8c-92f4-16ffae185b62" + "8d6ceac9-9eb9-436e-a05c-22d5449b041e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationruntimes/azureintegrationruntime\",\r\n \"name\": \"azureintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n },\r\n \"etag\": \"8f004022-0000-0000-0000-5a0d44c10000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationruntimes/azureintegrationruntime\",\r\n \"name\": \"azureintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"description\": \"Azure integration runtime.\"\r\n },\r\n \"etag\": \"16002afd-0000-0000-0000-5b2c71530000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -370,7 +373,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:50 GMT" + "Fri, 22 Jun 2018 03:47:32 GMT" ], "Pragma": [ "no-cache" @@ -384,9 +387,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "7749805b-bf3b-4d8c-92f4-16ffae185b62" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -397,32 +397,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14962" + ], + "x-ms-request-id": [ + "e18ea5e1-41ad-4059-aaf1-e0384a8b933f" ], "x-ms-correlation-request-id": [ - "b0732e91-1edd-4f31-b57d-ca0097da8508" + "e18ea5e1-41ad-4059-aaf1-e0384a8b933f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075650Z:b0732e91-1edd-4f31-b57d-ca0097da8508" + "NORTHEUROPE:20180622T034732Z:e18ea5e1-41ad-4059-aaf1-e0384a8b933f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationRuntimes/azureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTcvaW50ZWdyYXRpb25SdW50aW1lcy9henVyZWludGVncmF0aW9ucnVudGltZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationRuntimes/azureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0L2ludGVncmF0aW9uUnVudGltZXMvYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba537738-cc58-470b-9ac2-229686b4330b" + "748dd12c-cf11-470d-aac0-f2599242fac8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -437,7 +440,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:50 GMT" + "Fri, 22 Jun 2018 03:47:32 GMT" ], "Pragma": [ "no-cache" @@ -445,9 +448,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ba537738-cc58-470b-9ac2-229686b4330b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -457,33 +457,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14981" + ], + "x-ms-request-id": [ + "680490c1-2651-4413-9525-b4dd63c37443" ], "x-ms-correlation-request-id": [ - "8f19da39-c78a-400d-8c8a-ed385adbf209" + "680490c1-2651-4413-9525-b4dd63c37443" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075650Z:8f19da39-c78a-400d-8c8a-ed385adbf209" + "NORTHEUROPE:20180622T034733Z:680490c1-2651-4413-9525-b4dd63c37443" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797/integrationRuntimes/azureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTcvaW50ZWdyYXRpb25SdW50aW1lcy9henVyZWludGVncmF0aW9ucnVudGltZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904/integrationRuntimes/azureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0L2ludGVncmF0aW9uUnVudGltZXMvYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c74478e5-12a8-47df-b0fd-a7841fc1be74" + "97b9d2e5-c13d-4a65-97f7-0f3e2ac169e4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -495,7 +498,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:51 GMT" + "Fri, 22 Jun 2018 03:47:33 GMT" ], "Pragma": [ "no-cache" @@ -503,9 +506,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "c74478e5-12a8-47df-b0fd-a7841fc1be74" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -515,33 +515,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14980" + ], + "x-ms-request-id": [ + "c1c32754-093b-4f8b-81ad-e6fdb0626356" ], "x-ms-correlation-request-id": [ - "73c78fb7-1187-4c45-a208-b4115307629f" + "c1c32754-093b-4f8b-81ad-e6fdb0626356" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075651Z:73c78fb7-1187-4c45-a208-b4115307629f" + "NORTHEUROPE:20180622T034733Z:c1c32754-093b-4f8b-81ad-e6fdb0626356" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg896/providers/Microsoft.DataFactory/factories/sdktestingfactory2797?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTI3OTc/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4047/providers/Microsoft.DataFactory/factories/sdktestingfactory4904?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0OTA0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc6592d6-00aa-4cbd-966d-f8c3150c02cc" + "8d74ea7c-cbd2-4924-95c7-f5e7bf0859ac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -556,7 +559,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:53 GMT" + "Fri, 22 Jun 2018 03:47:34 GMT" ], "Pragma": [ "no-cache" @@ -564,9 +567,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fc6592d6-00aa-4cbd-966d-f8c3150c02cc" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -576,32 +576,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14979" + ], + "x-ms-request-id": [ + "66596cbf-3452-4642-bc84-6c3b863a6311" ], "x-ms-correlation-request-id": [ - "ed0ded1e-d6e7-47ce-a281-50afda253cf1" + "66596cbf-3452-4642-bc84-6c3b863a6311" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075653Z:ed0ded1e-d6e7-47ce-a281-50afda253cf1" + "NORTHEUROPE:20180622T034734Z:66596cbf-3452-4642-bc84-6c3b863a6311" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourcegroups/sdktestingadfrg896?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzg5Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg4047?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQwNDc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34152860-6416-4901-8c08-b379121edc42" + "0950ed8a-9b48-4bf5-a530-7865152bd43f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -617,43 +620,46 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:57 GMT" + "Fri, 22 Jun 2018 03:47:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" ], "x-ms-request-id": [ - "22c9464a-54d9-421b-a73e-e2708c489fb0" + "3775dc47-e2fa-4a97-8506-23868ecee2c3" ], "x-ms-correlation-request-id": [ - "22c9464a-54d9-421b-a73e-e2708c489fb0" + "3775dc47-e2fa-4a97-8506-23868ecee2c3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075657Z:22c9464a-54d9-421b-a73e-e2708c489fb0" + "NORTHEUROPE:20180622T034736Z:3775dc47-e2fa-4a97-8506-23868ecee2c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRPVFl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNRFEzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -669,43 +675,46 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:57:12 GMT" + "Fri, 22 Jun 2018 03:47:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14991" ], "x-ms-request-id": [ - "90a81b09-6918-4463-8f29-428474df98d0" + "4326c697-d43d-4809-9a1d-735d6a9de251" ], "x-ms-correlation-request-id": [ - "90a81b09-6918-4463-8f29-428474df98d0" + "4326c697-d43d-4809-9a1d-735d6a9de251" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075712Z:90a81b09-6918-4463-8f29-428474df98d0" + "NORTHEUROPE:20180622T034751Z:4326c697-d43d-4809-9a1d-735d6a9de251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRPVFl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNRFEzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -721,43 +730,46 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:57:28 GMT" + "Fri, 22 Jun 2018 03:48:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14990" ], "x-ms-request-id": [ - "26c9a56a-b6c2-42e1-8ae0-7e155b93d43b" + "9204f1a1-1ac7-48d1-8e06-56e5bd29513f" ], "x-ms-correlation-request-id": [ - "26c9a56a-b6c2-42e1-8ae0-7e155b93d43b" + "9204f1a1-1ac7-48d1-8e06-56e5bd29513f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075728Z:26c9a56a-b6c2-42e1-8ae0-7e155b93d43b" + "NORTHEUROPE:20180622T034807Z:9204f1a1-1ac7-48d1-8e06-56e5bd29513f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRPVFl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNRFEzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -773,37 +785,40 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:57:43 GMT" + "Fri, 22 Jun 2018 03:48:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14989" ], "x-ms-request-id": [ - "0e66230c-b380-464f-9e47-0525c7dfc32b" + "b0f2a347-c3e8-4d92-962a-6830bb991f47" ], "x-ms-correlation-request-id": [ - "0e66230c-b380-464f-9e47-0525c7dfc32b" + "b0f2a347-c3e8-4d92-962a-6830bb991f47" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075744Z:0e66230c-b380-464f-9e47-0525c7dfc32b" + "NORTHEUROPE:20180622T034822Z:b0f2a347-c3e8-4d92-962a-6830bb991f47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4OTYtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRPVFl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0MDQ3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNRFEzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -819,25 +834,28 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:57:43 GMT" + "Fri, 22 Jun 2018 03:48:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14988" ], "x-ms-request-id": [ - "0e66230c-b380-464f-9e47-0525c7dfc32b" + "de0b3d7c-0ea0-4f8c-bffd-0a56df62948e" ], "x-ms-correlation-request-id": [ - "0e66230c-b380-464f-9e47-0525c7dfc32b" + "de0b3d7c-0ea0-4f8c-bffd-0a56df62948e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075744Z:0e66230c-b380-464f-9e47-0525c7dfc32b" + "NORTHEUROPE:20180622T034822Z:de0b3d7c-0ea0-4f8c-bffd-0a56df62948e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -845,11 +863,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg896", - "sdktestingfactory2797" + "sdktestingadfrg4047", + "sdktestingfactory4904" ] }, "Variables": { - "SubscriptionId": "b371d9e7-d3c2-4b1a-83ec-84e1f50c2222" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SelfHostedIntegrationRuntimeScenarioTest.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SelfHostedIntegrationRuntimeScenarioTest.json index 55e113a9ccc9..b07dcc721bde 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SelfHostedIntegrationRuntimeScenarioTest.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SelfHostedIntegrationRuntimeScenarioTest.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourcegroups/sdktestingadfrg6757?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg953?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "a291eb23-03c5-4bda-9079-8197e2819293" + "3d0c732e-79fe-4af2-a520-5db14c81340f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757\",\r\n \"name\": \"sdktestingadfrg6757\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953\",\r\n \"name\": \"sdktestingadfrg953\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "192" + "189" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:54:45 GMT" + "Fri, 22 Jun 2018 03:45:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "33692b32-8d34-420c-8a72-24caf80fd5f2" + "da35d096-a8c1-4909-a898-bfe1c5e2109c" ], "x-ms-correlation-request-id": [ - "33692b32-8d34-420c-8a72-24caf80fd5f2" + "da35d096-a8c1-4909-a898-bfe1c5e2109c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075446Z:33692b32-8d34-420c-8a72-24caf80fd5f2" + "NORTHEUROPE:20180622T034512Z:da35d096-a8c1-4909-a898-bfe1c5e2109c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzY/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDE/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "ede819b0-ea5d-49aa-a126-e0e8a703b125" + "c2995256-f95e-45aa-903f-68950c38297f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory136\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-16T07:55:10.5938443Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory5901\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:45:14.1051905Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000d005-0000-0000-0000-5b2c70ca0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:11 GMT" + "Fri, 22 Jun 2018 03:45:14 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "ede819b0-ea5d-49aa-a126-e0e8a703b125" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,20 +123,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" + ], + "x-ms-request-id": [ + "4674db78-7b6e-4458-a314-3881902aa586" ], "x-ms-correlation-request-id": [ - "e620c2ad-71ec-4d74-a9cd-19a055daacd8" + "4674db78-7b6e-4458-a314-3881902aa586" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075511Z:e620c2ad-71ec-4d74-a9cd-19a055daacd8" + "NORTHEUROPE:20180622T034514Z:4674db78-7b6e-4458-a314-3881902aa586" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationRuntimes/selfhostedintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzYvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationRuntimes/selfhostedintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDEvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n }\r\n}", "RequestHeaders": { @@ -147,17 +150,17 @@ "110" ], "x-ms-client-request-id": [ - "4bb38dd6-fca0-4e88-b0ed-f9d8efbcbef1" + "c50f1cf7-8b76-42d1-8272-02e2de86cc85" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationruntimes/selfhostedintegrationruntime\",\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n },\r\n \"etag\": \"14009f8a-0000-0000-0000-5a0d44610000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationruntimes/selfhostedintegrationruntime\",\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n },\r\n \"etag\": \"02000c74-0000-0000-0000-5b2c70cc0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:13 GMT" + "Fri, 22 Jun 2018 03:45:16 GMT" ], "Pragma": [ "no-cache" @@ -183,9 +186,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "4bb38dd6-fca0-4e88-b0ed-f9d8efbcbef1" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -196,35 +196,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" + ], + "x-ms-request-id": [ + "2695a633-288a-4dea-9eac-8fe369f4d107" ], "x-ms-correlation-request-id": [ - "f007fdf8-6a06-4f77-a3de-d4924c64390b" + "2695a633-288a-4dea-9eac-8fe369f4d107" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075513Z:f007fdf8-6a06-4f77-a3de-d4924c64390b" + "NORTHEUROPE:20180622T034516Z:2695a633-288a-4dea-9eac-8fe369f4d107" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationRuntimes/selfhostedintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzYvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationRuntimes/selfhostedintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDEvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "679e0258-0e5d-4f26-958b-0290320845b3" + "5bf94a06-7199-42f8-bcca-6c2574980dcb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationruntimes/selfhostedintegrationruntime\",\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n },\r\n \"etag\": \"14009f8a-0000-0000-0000-5a0d44610000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationruntimes/selfhostedintegrationruntime\",\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n },\r\n \"etag\": \"02000c74-0000-0000-0000-5b2c70cc0000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -236,7 +239,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:14 GMT" + "Fri, 22 Jun 2018 03:45:16 GMT" ], "Pragma": [ "no-cache" @@ -250,9 +253,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "679e0258-0e5d-4f26-958b-0290320845b3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -263,35 +263,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14987" + ], + "x-ms-request-id": [ + "c9f90ff2-a947-45ef-b1c6-401bb94ef8ea" ], "x-ms-correlation-request-id": [ - "54c2074f-411b-4492-83fb-d3d4a6387da6" + "c9f90ff2-a947-45ef-b1c6-401bb94ef8ea" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075514Z:54c2074f-411b-4492-83fb-d3d4a6387da6" + "NORTHEUROPE:20180622T034517Z:c9f90ff2-a947-45ef-b1c6-401bb94ef8ea" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationRuntimes/selfhostedintegrationruntime/getStatus?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzYvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lL2dldFN0YXR1cz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationRuntimes/selfhostedintegrationruntime/getStatus?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDEvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lL2dldFN0YXR1cz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbaf01ef-8b1c-49dc-ab93-60996ee82aa2" + "66d9bf30-45ef-4a5b-a8a6-f4d927126084" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory136\",\r\n \"state\": \"NeedRegistration\",\r\n \"iRType\": \"SelfHosted\",\r\n \"type\": \"SelfHosted\",\r\n \"typeProperties\": {\r\n \"taskQueueId\": \"287fedf7-8b69-4a7d-984b-c6d5859b10e6\",\r\n \"nodes\": [],\r\n \"serviceUrls\": [\r\n \"eu2.frontend.clouddatahub.net\",\r\n \"*.servicebus.windows.net\"\r\n ],\r\n \"capabilities\": {},\r\n \"state\": \"NeedRegistration\",\r\n \"createTime\": \"2017-11-16T07:55:12.5559488Z\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory5901\",\r\n \"state\": \"NeedRegistration\",\r\n \"type\": \"SelfHosted\",\r\n \"typeProperties\": {\r\n \"autoUpdate\": \"On\",\r\n \"taskQueueId\": \"d0ec11d7-b226-4e1c-afc0-feb7d9df47a6\",\r\n \"nodes\": [],\r\n \"serviceUrls\": [\r\n \"wu.frontend.int.clouddatahub-int.net\",\r\n \"*.servicebus.windows.net\"\r\n ],\r\n \"links\": [],\r\n \"versionStatus\": \"None\",\r\n \"capabilities\": {},\r\n \"lastestVersion\": \"3.7.6711.1\",\r\n \"state\": \"NeedRegistration\",\r\n \"createTime\": \"2018-06-22T03:45:15.9121285Z\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -303,7 +306,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:14 GMT" + "Fri, 22 Jun 2018 03:45:17 GMT" ], "Pragma": [ "no-cache" @@ -317,9 +320,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "bbaf01ef-8b1c-49dc-ab93-60996ee82aa2" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -330,35 +330,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14986" + ], + "x-ms-request-id": [ + "d07d396c-adcc-4837-bc7c-0f8cb2b4d6e3" ], "x-ms-correlation-request-id": [ - "fcea2be4-287f-4a85-be3a-49629703e248" + "d07d396c-adcc-4837-bc7c-0f8cb2b4d6e3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075514Z:fcea2be4-287f-4a85-be3a-49629703e248" + "NORTHEUROPE:20180622T034518Z:d07d396c-adcc-4837-bc7c-0f8cb2b4d6e3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationRuntimes?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzYvaW50ZWdyYXRpb25SdW50aW1lcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationRuntimes?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDEvaW50ZWdyYXRpb25SdW50aW1lcz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29c958ed-f5f6-4e3b-b058-1e3aaf3f6b40" + "6fa78da8-e703-457e-82df-047018352843" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationruntimes/selfhostedintegrationruntime\",\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n },\r\n \"etag\": \"14009f8a-0000-0000-0000-5a0d44610000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationruntimes/selfhostedintegrationruntime\",\r\n \"name\": \"selfhostedintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"SelfHosted\",\r\n \"description\": \"Self-Hosted integration runtime.\"\r\n },\r\n \"etag\": \"02000c74-0000-0000-0000-5b2c70cc0000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -370,7 +373,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:14 GMT" + "Fri, 22 Jun 2018 03:45:18 GMT" ], "Pragma": [ "no-cache" @@ -384,9 +387,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "29c958ed-f5f6-4e3b-b058-1e3aaf3f6b40" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -397,32 +397,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14985" + ], + "x-ms-request-id": [ + "362cd467-7a76-401c-97aa-3be1e35e898b" ], "x-ms-correlation-request-id": [ - "bc87a74a-32c8-4819-abc6-33b7746d2bb3" + "362cd467-7a76-401c-97aa-3be1e35e898b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075515Z:bc87a74a-32c8-4819-abc6-33b7746d2bb3" + "NORTHEUROPE:20180622T034518Z:362cd467-7a76-401c-97aa-3be1e35e898b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationRuntimes/selfhostedintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzYvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationRuntimes/selfhostedintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDEvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c777c1fe-41d1-4ab6-91a4-de019b622ace" + "4542f387-f773-4df3-9ca7-c917879a0939" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -437,7 +440,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:15 GMT" + "Fri, 22 Jun 2018 03:45:19 GMT" ], "Pragma": [ "no-cache" @@ -445,9 +448,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "c777c1fe-41d1-4ab6-91a4-de019b622ace" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -457,33 +457,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14993" + ], + "x-ms-request-id": [ + "66cef8a5-fc3c-4b56-87f6-f859d7cdb848" ], "x-ms-correlation-request-id": [ - "63019e59-ad84-4b39-9b44-ad3a47667d8b" + "66cef8a5-fc3c-4b56-87f6-f859d7cdb848" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075516Z:63019e59-ad84-4b39-9b44-ad3a47667d8b" + "NORTHEUROPE:20180622T034519Z:66cef8a5-fc3c-4b56-87f6-f859d7cdb848" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136/integrationRuntimes/selfhostedintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzYvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901/integrationRuntimes/selfhostedintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDEvaW50ZWdyYXRpb25SdW50aW1lcy9zZWxmaG9zdGVkaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea6b0c5e-fd4c-448b-a6bc-ce26891f21e3" + "6bc13816-4ace-4f20-b693-a04fd6453b26" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -495,7 +498,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:16 GMT" + "Fri, 22 Jun 2018 03:45:19 GMT" ], "Pragma": [ "no-cache" @@ -503,9 +506,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ea6b0c5e-fd4c-448b-a6bc-ce26891f21e3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -515,33 +515,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14992" + ], + "x-ms-request-id": [ + "6db6f209-1057-4edf-9f75-905082102bf5" ], "x-ms-correlation-request-id": [ - "2baa9920-0f03-424d-9015-3cd419e20a3f" + "6db6f209-1057-4edf-9f75-905082102bf5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075516Z:2baa9920-0f03-424d-9015-3cd419e20a3f" + "NORTHEUROPE:20180622T034520Z:6db6f209-1057-4edf-9f75-905082102bf5" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg6757/providers/Microsoft.DataFactory/factories/sdktestingfactory136?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMzY/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg953/providers/Microsoft.DataFactory/factories/sdktestingfactory5901?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTU5MDE/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c38fbc4-85e3-466c-814f-3aedc4d72270" + "257d0f7b-cf1f-4650-b355-50a624c92c8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -556,7 +559,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:18 GMT" + "Fri, 22 Jun 2018 03:45:21 GMT" ], "Pragma": [ "no-cache" @@ -564,9 +567,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "6c38fbc4-85e3-466c-814f-3aedc4d72270" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -576,32 +576,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14991" + ], + "x-ms-request-id": [ + "002de9d7-28ca-45d1-a17d-406cbe3b0e2a" ], "x-ms-correlation-request-id": [ - "18b5d51c-91b1-42c1-b206-b5c9fa2f9afe" + "002de9d7-28ca-45d1-a17d-406cbe3b0e2a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075518Z:18b5d51c-91b1-42c1-b206-b5c9fa2f9afe" + "NORTHEUROPE:20180622T034521Z:002de9d7-28ca-45d1-a17d-406cbe3b0e2a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourcegroups/sdktestingadfrg6757?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzY3NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg953?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk1Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "015e07d3-4ec8-4369-9dd8-5db7d939cecd" + "decef41a-0f0b-44bf-9d9b-6ead01aff61c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -617,43 +620,46 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:21 GMT" + "Fri, 22 Jun 2018 03:45:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" ], "x-ms-request-id": [ - "2aa82be4-dbe4-408a-ad67-3f467f860166" + "194ec538-5d57-4b46-89ef-966158079a72" ], "x-ms-correlation-request-id": [ - "2aa82be4-dbe4-408a-ad67-3f467f860166" + "194ec538-5d57-4b46-89ef-966158079a72" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075521Z:2aa82be4-dbe4-408a-ad67-3f467f860166" + "NORTHEUROPE:20180622T034523Z:194ec538-5d57-4b46-89ef-966158079a72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJOelUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVOVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -669,43 +675,46 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:37 GMT" + "Fri, 22 Jun 2018 03:45:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14995" ], "x-ms-request-id": [ - "b7b9965e-298d-49f5-a88f-e3845cd0412a" + "2d63dd86-3563-434e-a0a4-f882585c5528" ], "x-ms-correlation-request-id": [ - "b7b9965e-298d-49f5-a88f-e3845cd0412a" + "2d63dd86-3563-434e-a0a4-f882585c5528" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075537Z:b7b9965e-298d-49f5-a88f-e3845cd0412a" + "NORTHEUROPE:20180622T034538Z:2d63dd86-3563-434e-a0a4-f882585c5528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJOelUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVOVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -721,43 +730,46 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:55:52 GMT" + "Fri, 22 Jun 2018 03:45:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14994" ], "x-ms-request-id": [ - "d934d407-76aa-4950-8b7f-95462ff000ee" + "b7cd0011-0d5d-4cff-844f-b6d2cdd21aac" ], "x-ms-correlation-request-id": [ - "d934d407-76aa-4950-8b7f-95462ff000ee" + "b7cd0011-0d5d-4cff-844f-b6d2cdd21aac" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075552Z:d934d407-76aa-4950-8b7f-95462ff000ee" + "NORTHEUROPE:20180622T034553Z:b7cd0011-0d5d-4cff-844f-b6d2cdd21aac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJOelUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVOVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -773,37 +785,40 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:08 GMT" + "Fri, 22 Jun 2018 03:46:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14993" ], "x-ms-request-id": [ - "934b38fa-ff09-4f01-8037-b8a5f46d47fb" + "c8454ddd-35b1-45e0-b5ae-798e3d7ed5f4" ], "x-ms-correlation-request-id": [ - "934b38fa-ff09-4f01-8037-b8a5f46d47fb" + "c8454ddd-35b1-45e0-b5ae-798e3d7ed5f4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075608Z:934b38fa-ff09-4f01-8037-b8a5f46d47fb" + "NORTHEUROPE:20180622T034609Z:c8454ddd-35b1-45e0-b5ae-798e3d7ed5f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc2NzU3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzJOelUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5NTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVOVE10VjBWVFZGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -819,25 +834,28 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:56:08 GMT" + "Fri, 22 Jun 2018 03:46:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14992" ], "x-ms-request-id": [ - "934b38fa-ff09-4f01-8037-b8a5f46d47fb" + "05bb843c-90de-428a-b36c-6736611ceb34" ], "x-ms-correlation-request-id": [ - "934b38fa-ff09-4f01-8037-b8a5f46d47fb" + "05bb843c-90de-428a-b36c-6736611ceb34" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075608Z:934b38fa-ff09-4f01-8037-b8a5f46d47fb" + "NORTHEUROPE:20180622T034609Z:05bb843c-90de-428a-b36c-6736611ceb34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -845,11 +863,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg6757", - "sdktestingfactory136" + "sdktestingadfrg953", + "sdktestingfactory5901" ] }, "Variables": { - "SubscriptionId": "b371d9e7-d3c2-4b1a-83ec-84e1f50c2222" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SsisAzureIntegrationRuntimeScenarioTest.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SsisAzureIntegrationRuntimeScenarioTest.json index 0f863b0671cf..3af81b862f69 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SsisAzureIntegrationRuntimeScenarioTest.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.IntegrationRuntimeScenarioTests/SsisAzureIntegrationRuntimeScenarioTest.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourcegroups/sdktestingadfrg5335?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg5566?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "33" ], "x-ms-client-request-id": [ - "681013d5-6263-43d1-923f-54f10ee31c62" + "af875c2b-65f4-49f4-853f-c5247bad5b55" ], "accept-language": [ "en-US" @@ -23,10 +23,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335\",\r\n \"name\": \"sdktestingadfrg5335\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566\",\r\n \"name\": \"sdktestingadfrg5566\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "192" + "195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,7 +38,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:58:06 GMT" + "Fri, 22 Jun 2018 08:48:12 GMT" ], "Pragma": [ "no-cache" @@ -47,44 +47,47 @@ "1199" ], "x-ms-request-id": [ - "91fd78d5-baa1-4f70-8199-8fa674fc4403" + "a5c56670-2f78-4172-850d-312ed89a4a72" ], "x-ms-correlation-request-id": [ - "91fd78d5-baa1-4f70-8199-8fa674fc4403" + "a5c56670-2f78-4172-850d-312ed89a4a72" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075806Z:91fd78d5-baa1-4f70-8199-8fa674fc4403" + "NORTHEUROPE:20180622T084812Z:a5c56670-2f78-4172-850d-312ed89a4a72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "86" ], "x-ms-client-request-id": [ - "abac8190-e749-4bdc-aff8-f632d0a8c343" + "4808c448-b061-4870-b187-fc437367140a" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory5569\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-16T07:58:32.2469155Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory352\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0e49e7a2-4c24-476a-8cee-4aea989bb128\",\r\n \"tenantId\": \"f686d426-8d16-42db-81b7-ab578e110ccd\"\r\n },\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T08:48:49.4807089Z\",\r\n \"version\": \"2018-06-01\"\r\n },\r\n \"eTag\": \"\\\"0000ee05-0000-0000-0000-5b2cb7f10000\\\"\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:58:33 GMT" + "Fri, 22 Jun 2018 08:48:49 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "abac8190-e749-4bdc-aff8-f632d0a8c343" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -125,39 +125,42 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ + "e982a5fb-b3eb-4af5-a04c-2a0862a688b7" + ], "x-ms-correlation-request-id": [ - "86c23f09-6145-4ee2-946a-cbba92d148cf" + "e982a5fb-b3eb-4af5-a04c-2a0862a688b7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075833Z:86c23f09-6145-4ee2-946a-cbba92d148cf" + "NORTHEUROPE:20180622T084849Z:e982a5fb-b3eb-4af5-a04c-2a0862a688b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"typeProperties\": {\r\n \"computeProperties\": {\r\n \"location\": \"eastUS\",\r\n \"nodeSize\": \"Standard_D1_v2\",\r\n \"numberOfNodes\": 1,\r\n \"maxParallelExecutionsPerNode\": 1\r\n },\r\n \"ssisProperties\": {\r\n \"catalogInfo\": {\r\n \"catalogServerEndpoint\": \"yandongtestsvr.database.windows.net\",\r\n \"catalogAdminUserName\": \"yanzhang\",\r\n \"catalogAdminPassword\": {\r\n \"type\": \"SecureString\",\r\n \"value\": \"Passw0rd1\"\r\n },\r\n \"catalogPricingTier\": \"S1\"\r\n }\r\n }\r\n },\r\n \"description\": \"SSIS-Azure integration runtime.\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"typeProperties\": {\r\n \"computeProperties\": {\r\n \"location\": \"West US\",\r\n \"nodeSize\": \"Standard_D1_v2\",\r\n \"numberOfNodes\": 1,\r\n \"maxParallelExecutionsPerNode\": 1\r\n },\r\n \"ssisProperties\": {\r\n \"catalogInfo\": {\r\n \"catalogServerEndpoint\": \"dummy\",\r\n \"catalogAdminUserName\": \"dummyuser\",\r\n \"catalogAdminPassword\": {\r\n \"type\": \"SecureString\",\r\n \"value\": \"***\"\r\n },\r\n \"catalogPricingTier\": \"Basic\"\r\n }\r\n }\r\n },\r\n \"description\": \"SSIS-Azure integration runtime.\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "676" + "691" ], "x-ms-client-request-id": [ - "058da44c-9fa6-4b9d-a854-bc6b4f52bc17" + "21725bda-4696-4918-b112-34ac04706ccf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationruntimes/ssisazureintegrationruntime\",\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"typeProperties\": {\r\n \"computeProperties\": {\r\n \"location\": \"eastUS\",\r\n \"nodeSize\": \"Standard_D1_v2\",\r\n \"numberOfNodes\": 1,\r\n \"maxParallelExecutionsPerNode\": 1\r\n },\r\n \"ssisProperties\": {\r\n \"catalogInfo\": {\r\n \"catalogServerEndpoint\": \"yandongtestsvr.database.windows.net\",\r\n \"catalogAdminUserName\": \"yanzhang\",\r\n \"catalogAdminPassword\": {\r\n \"type\": \"SecureString\",\r\n \"value\": \"**********\"\r\n },\r\n \"catalogPricingTier\": \"S1\"\r\n }\r\n }\r\n },\r\n \"description\": \"SSIS-Azure integration runtime.\",\r\n \"state\": \"Initial\"\r\n },\r\n \"etag\": \"3c015b48-0000-0000-0000-5a0d452a0000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationruntimes/ssisazureintegrationruntime\",\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"type\": \"Microsoft.DataFactory/factories/integrationruntimes\",\r\n \"properties\": {\r\n \"type\": \"Managed\",\r\n \"typeProperties\": {\r\n \"computeProperties\": {\r\n \"location\": \"West US\",\r\n \"nodeSize\": \"Standard_D1_v2\",\r\n \"numberOfNodes\": 1,\r\n \"maxParallelExecutionsPerNode\": 1\r\n },\r\n \"ssisProperties\": {\r\n \"catalogInfo\": {\r\n \"catalogServerEndpoint\": \"yanzhangnightlywesteurope.database.windows.net\",\r\n \"catalogAdminUserName\": \"yanzhang\",\r\n \"catalogAdminPassword\": {\r\n \"type\": \"SecureString\",\r\n \"value\": \"**********\"\r\n },\r\n \"catalogPricingTier\": \"Basic\"\r\n }\r\n }\r\n },\r\n \"description\": \"SSIS-Azure integration runtime.\",\r\n \"state\": \"Initial\"\r\n },\r\n \"etag\": \"0f009a0a-0000-0000-0000-5b2cb7f70000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:58:34 GMT" + "Fri, 22 Jun 2018 08:48:54 GMT" ], "Pragma": [ "no-cache" @@ -183,9 +186,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "058da44c-9fa6-4b9d-a854-bc6b4f52bc17" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -198,30 +198,33 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ + "8df8b508-c349-43f3-9b75-5ed5d07451f1" + ], "x-ms-correlation-request-id": [ - "8937d30b-26a6-4797-a442-9017ecaab63c" + "8df8b508-c349-43f3-9b75-5ed5d07451f1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075834Z:8937d30b-26a6-4797-a442-9017ecaab63c" + "NORTHEUROPE:20180622T084855Z:8df8b508-c349-43f3-9b75-5ed5d07451f1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5384b6c3-ec07-4b48-a239-898bf524a4d8" + "4546db97-e2f6-43b1-af1d-8f68bda0a05e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -236,13 +239,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:58:37 GMT" + "Fri, 22 Jun 2018 08:48:57 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -250,9 +253,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "5384b6c3-ec07-4b48-a239-898bf524a4d8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -265,24 +265,27 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ + "35dee06d-5b8e-42dd-a664-19b413cca4c4" + ], "x-ms-correlation-request-id": [ - "566e8f8a-f8bb-48b3-b4c3-b16d140be811" + "35dee06d-5b8e-42dd-a664-19b413cca4c4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075837Z:566e8f8a-f8bb-48b3-b4c3-b16d140be811" + "NORTHEUROPE:20180622T084857Z:35dee06d-5b8e-42dd-a664-19b413cca4c4" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -297,13 +300,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:58:52 GMT" + "Fri, 22 Jun 2018 08:49:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -311,9 +314,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "b64a36a1-5a7d-4ee3-88c9-a6d83bb7d1fe" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -324,26 +324,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14999" + ], + "x-ms-request-id": [ + "497b7661-5be8-49e6-bdeb-bfc646c83e17" ], "x-ms-correlation-request-id": [ - "0718f607-872e-4e97-b288-fd9a37b65c48" + "497b7661-5be8-49e6-bdeb-bfc646c83e17" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075853Z:0718f607-872e-4e97-b288-fd9a37b65c48" + "NORTHEUROPE:20180622T084913Z:497b7661-5be8-49e6-bdeb-bfc646c83e17" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -358,13 +361,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:59:07 GMT" + "Fri, 22 Jun 2018 08:49:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -372,9 +375,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "d55ee030-f747-48f7-9696-1c2d959c9e59" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -385,26 +385,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14998" + ], + "x-ms-request-id": [ + "43510cbe-cd53-47de-9022-d6ee6b57c25c" ], "x-ms-correlation-request-id": [ - "dc7271ff-d031-44ef-9389-fb632a993c31" + "43510cbe-cd53-47de-9022-d6ee6b57c25c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075908Z:dc7271ff-d031-44ef-9389-fb632a993c31" + "NORTHEUROPE:20180622T084928Z:43510cbe-cd53-47de-9022-d6ee6b57c25c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -419,13 +422,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:59:23 GMT" + "Fri, 22 Jun 2018 08:49:45 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -433,9 +436,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "20c87f2e-ccee-4a72-9187-cd45353be928" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -446,26 +446,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14997" + ], + "x-ms-request-id": [ + "0874852c-1907-4d7e-8ac9-13df59e14824" ], "x-ms-correlation-request-id": [ - "3f192a43-47ee-4276-99fc-9d324d165841" + "0874852c-1907-4d7e-8ac9-13df59e14824" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075923Z:3f192a43-47ee-4276-99fc-9d324d165841" + "NORTHEUROPE:20180622T084945Z:0874852c-1907-4d7e-8ac9-13df59e14824" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -480,13 +483,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:59:38 GMT" + "Fri, 22 Jun 2018 08:50:01 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -494,9 +497,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fe95b47c-0366-409a-9a86-16b677d5d90a" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -507,26 +507,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14996" + ], + "x-ms-request-id": [ + "4aa4150b-8193-45d2-98ba-38299dc37f58" ], "x-ms-correlation-request-id": [ - "29c142eb-3554-4f45-ac9c-e87b2b2178d3" + "4aa4150b-8193-45d2-98ba-38299dc37f58" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075939Z:29c142eb-3554-4f45-ac9c-e87b2b2178d3" + "NORTHEUROPE:20180622T085002Z:4aa4150b-8193-45d2-98ba-38299dc37f58" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -541,13 +544,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 07:59:54 GMT" + "Fri, 22 Jun 2018 08:50:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -555,9 +558,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "972c2051-6ff1-4cdf-b0b4-5d8cc1ff282d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -568,26 +568,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14995" + ], + "x-ms-request-id": [ + "4f311961-f655-4431-8abd-2105d6b9469c" ], "x-ms-correlation-request-id": [ - "3a3fbbf5-2340-49c5-9a30-8bbd8dc43a97" + "4f311961-f655-4431-8abd-2105d6b9469c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T075954Z:3a3fbbf5-2340-49c5-9a30-8bbd8dc43a97" + "NORTHEUROPE:20180622T085017Z:4f311961-f655-4431-8abd-2105d6b9469c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -602,13 +605,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:00:09 GMT" + "Fri, 22 Jun 2018 08:50:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -616,9 +619,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "9744dbe5-0094-4c22-984b-4be3b18734e7" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -629,26 +629,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14994" + ], + "x-ms-request-id": [ + "e915a285-61d5-4cf0-8bad-b9d821feae2e" ], "x-ms-correlation-request-id": [ - "a816311f-6c5c-45a7-9a6c-710cf5301e36" + "e915a285-61d5-4cf0-8bad-b9d821feae2e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080010Z:a816311f-6c5c-45a7-9a6c-710cf5301e36" + "NORTHEUROPE:20180622T085033Z:e915a285-61d5-4cf0-8bad-b9d821feae2e" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -663,13 +666,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:00:25 GMT" + "Fri, 22 Jun 2018 08:50:48 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -677,9 +680,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "facd6e9b-8ed6-4124-8a41-afb1501321ff" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -690,26 +690,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14993" + ], + "x-ms-request-id": [ + "eb4d9e32-2441-4b45-a571-85a3062f9aaf" ], "x-ms-correlation-request-id": [ - "e8d27aeb-700c-464a-8b77-c8a636aedb1e" + "eb4d9e32-2441-4b45-a571-85a3062f9aaf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080025Z:e8d27aeb-700c-464a-8b77-c8a636aedb1e" + "NORTHEUROPE:20180622T085049Z:eb4d9e32-2441-4b45-a571-85a3062f9aaf" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -724,13 +727,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:00:40 GMT" + "Fri, 22 Jun 2018 08:51:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -738,9 +741,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "e2c2fdc6-ec89-423c-8e25-4bad6da775bd" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -751,26 +751,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14992" + ], + "x-ms-request-id": [ + "b565a104-3c10-47a7-909d-f5ed87505664" ], "x-ms-correlation-request-id": [ - "496d7758-4040-49ec-afbc-89a79d713c68" + "b565a104-3c10-47a7-909d-f5ed87505664" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080040Z:496d7758-4040-49ec-afbc-89a79d713c68" + "NORTHEUROPE:20180622T085104Z:b565a104-3c10-47a7-909d-f5ed87505664" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -785,13 +788,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:00:55 GMT" + "Fri, 22 Jun 2018 08:51:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -799,9 +802,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "acfdfae2-c58a-46b3-8421-767dd2689d07" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -812,26 +812,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14991" + ], + "x-ms-request-id": [ + "3b335177-bba4-465a-9537-fa18d7b1ec2c" ], "x-ms-correlation-request-id": [ - "691724f4-350a-4a4c-9731-e17a3f311b3b" + "3b335177-bba4-465a-9537-fa18d7b1ec2c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080056Z:691724f4-350a-4a4c-9731-e17a3f311b3b" + "NORTHEUROPE:20180622T085122Z:3b335177-bba4-465a-9537-fa18d7b1ec2c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -846,13 +849,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:01:10 GMT" + "Fri, 22 Jun 2018 08:51:38 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -860,9 +863,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "03bd630e-2fc7-4849-a5e4-4f7252b7056f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -873,26 +873,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14990" + ], + "x-ms-request-id": [ + "e6f49cac-a61c-4d0b-8537-2d463e0ddee0" ], "x-ms-correlation-request-id": [ - "416f9cb2-ae84-4e1d-82fb-8fc72e1e1ede" + "e6f49cac-a61c-4d0b-8537-2d463e0ddee0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080111Z:416f9cb2-ae84-4e1d-82fb-8fc72e1e1ede" + "NORTHEUROPE:20180622T085139Z:e6f49cac-a61c-4d0b-8537-2d463e0ddee0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -907,13 +910,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:01:26 GMT" + "Fri, 22 Jun 2018 08:51:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -921,9 +924,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "93083f75-6f37-486c-b95a-6d98bc2ba3a8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -934,26 +934,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14989" + ], + "x-ms-request-id": [ + "5bb53d60-dfba-46eb-8e9a-a5af44723007" ], "x-ms-correlation-request-id": [ - "c8071d10-f16d-4cb6-a431-9e189c52c73e" + "5bb53d60-dfba-46eb-8e9a-a5af44723007" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080127Z:c8071d10-f16d-4cb6-a431-9e189c52c73e" + "NORTHEUROPE:20180622T085154Z:5bb53d60-dfba-46eb-8e9a-a5af44723007" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -968,13 +971,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:01:42 GMT" + "Fri, 22 Jun 2018 08:52:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -982,9 +985,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "673032aa-b44a-428f-ac9a-e58c46632c83" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -995,26 +995,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14988" + ], + "x-ms-request-id": [ + "189e3097-112c-46d4-8d18-86653b2bed2e" ], "x-ms-correlation-request-id": [ - "521c24df-a1a9-4ab1-9f27-0505f9ee7110" + "189e3097-112c-46d4-8d18-86653b2bed2e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080142Z:521c24df-a1a9-4ab1-9f27-0505f9ee7110" + "NORTHEUROPE:20180622T085210Z:189e3097-112c-46d4-8d18-86653b2bed2e" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1029,13 +1032,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:01:57 GMT" + "Fri, 22 Jun 2018 08:52:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1043,9 +1046,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "4f1c69ca-43c7-4412-bf44-f67dd4515391" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1056,26 +1056,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14987" + ], + "x-ms-request-id": [ + "ab043e8c-1c52-4831-b99f-82864a533c2f" ], "x-ms-correlation-request-id": [ - "23c2bbc6-949f-44a7-8705-62d71aa7b1c1" + "ab043e8c-1c52-4831-b99f-82864a533c2f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080157Z:23c2bbc6-949f-44a7-8705-62d71aa7b1c1" + "NORTHEUROPE:20180622T085225Z:ab043e8c-1c52-4831-b99f-82864a533c2f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1090,13 +1093,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:02:12 GMT" + "Fri, 22 Jun 2018 08:52:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1104,9 +1107,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "0cebc116-4084-4032-9ec1-bb3d0aa0a0a3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1117,26 +1117,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14986" + ], + "x-ms-request-id": [ + "1916b2e9-f074-4a42-936c-0043721b7d96" ], "x-ms-correlation-request-id": [ - "b30c57a6-b01b-40aa-a9f3-f3c296ec98cd" + "1916b2e9-f074-4a42-936c-0043721b7d96" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080213Z:b30c57a6-b01b-40aa-a9f3-f3c296ec98cd" + "NORTHEUROPE:20180622T085241Z:1916b2e9-f074-4a42-936c-0043721b7d96" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1151,13 +1154,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:02:28 GMT" + "Fri, 22 Jun 2018 08:52:57 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1165,9 +1168,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "7a69c904-974e-4f66-937f-ff26adc2d1e3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1178,26 +1178,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14985" + ], + "x-ms-request-id": [ + "7b26b001-4976-4a69-9065-b9ab833dcc27" ], "x-ms-correlation-request-id": [ - "e67c7ef2-c366-4a9e-b06b-d40d8cd330a4" + "7b26b001-4976-4a69-9065-b9ab833dcc27" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080228Z:e67c7ef2-c366-4a9e-b06b-d40d8cd330a4" + "NORTHEUROPE:20180622T085257Z:7b26b001-4976-4a69-9065-b9ab833dcc27" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1212,13 +1215,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:02:43 GMT" + "Fri, 22 Jun 2018 08:53:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1226,9 +1229,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "7ba93dcd-db32-45a5-984f-cf611c42d7b8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1239,26 +1239,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14984" + ], + "x-ms-request-id": [ + "ac8b6f26-7096-4c3f-9630-c931b6ae46f9" ], "x-ms-correlation-request-id": [ - "d3f57799-b4df-4fb3-b66a-63f60cd0506a" + "ac8b6f26-7096-4c3f-9630-c931b6ae46f9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080244Z:d3f57799-b4df-4fb3-b66a-63f60cd0506a" + "NORTHEUROPE:20180622T085313Z:ac8b6f26-7096-4c3f-9630-c931b6ae46f9" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1273,13 +1276,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:02:58 GMT" + "Fri, 22 Jun 2018 08:53:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1287,9 +1290,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "29ae4bfe-55c3-47c1-bed2-00ebb82e7e63" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1300,26 +1300,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14983" + ], + "x-ms-request-id": [ + "ff5c19c7-bc42-41d5-8109-84c802b81f05" ], "x-ms-correlation-request-id": [ - "78a90d3a-10c5-4171-8eb8-3211f15a8533" + "ff5c19c7-bc42-41d5-8109-84c802b81f05" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080259Z:78a90d3a-10c5-4171-8eb8-3211f15a8533" + "NORTHEUROPE:20180622T085328Z:ff5c19c7-bc42-41d5-8109-84c802b81f05" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1334,13 +1337,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:03:15 GMT" + "Fri, 22 Jun 2018 08:53:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1348,9 +1351,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fc775c5a-ae56-40a4-9638-bb57ee052724" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1361,26 +1361,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14982" + ], + "x-ms-request-id": [ + "cbeeb761-eba9-4d97-8da3-7c14ad38785d" ], "x-ms-correlation-request-id": [ - "be1197a4-1447-464b-a051-032510644cd9" + "cbeeb761-eba9-4d97-8da3-7c14ad38785d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080315Z:be1197a4-1447-464b-a051-032510644cd9" + "NORTHEUROPE:20180622T085344Z:cbeeb761-eba9-4d97-8da3-7c14ad38785d" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1395,13 +1398,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:03:30 GMT" + "Fri, 22 Jun 2018 08:54:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1409,9 +1412,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "95c19bfe-7df7-4281-b2ed-784ef2934e81" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1422,26 +1422,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14981" + ], + "x-ms-request-id": [ + "1f8519db-1060-4bbe-a53c-15b0970eb184" ], "x-ms-correlation-request-id": [ - "29b915eb-6285-4696-8dca-6b01fb42250a" + "1f8519db-1060-4bbe-a53c-15b0970eb184" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080330Z:29b915eb-6285-4696-8dca-6b01fb42250a" + "NORTHEUROPE:20180622T085401Z:1f8519db-1060-4bbe-a53c-15b0970eb184" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1456,13 +1459,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:03:45 GMT" + "Fri, 22 Jun 2018 08:54:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1470,9 +1473,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "726ab5ad-e5c5-4d8c-b010-737ce29c23dd" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1483,26 +1483,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14980" + ], + "x-ms-request-id": [ + "034889fd-803f-45ac-a5e9-080797257a06" ], "x-ms-correlation-request-id": [ - "766e1ec3-090d-4e05-88e4-e9882285a3ed" + "034889fd-803f-45ac-a5e9-080797257a06" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080345Z:766e1ec3-090d-4e05-88e4-e9882285a3ed" + "NORTHEUROPE:20180622T085416Z:034889fd-803f-45ac-a5e9-080797257a06" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1517,13 +1520,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:04:00 GMT" + "Fri, 22 Jun 2018 08:54:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1531,9 +1534,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "a57f8993-d1c6-4329-b2eb-e6b3ac531d82" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1544,26 +1544,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14979" + ], + "x-ms-request-id": [ + "2a728ae8-1d85-4206-b3eb-d17d5022cbd2" ], "x-ms-correlation-request-id": [ - "1f4da661-05ac-4a1e-a584-c90eecf04d4f" + "2a728ae8-1d85-4206-b3eb-d17d5022cbd2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080401Z:1f4da661-05ac-4a1e-a584-c90eecf04d4f" + "NORTHEUROPE:20180622T085432Z:2a728ae8-1d85-4206-b3eb-d17d5022cbd2" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1578,13 +1581,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:04:15 GMT" + "Fri, 22 Jun 2018 08:54:48 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1592,9 +1595,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "1aeb9948-9d71-4fe1-86a5-cba2a4ec692d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1605,26 +1605,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14978" + ], + "x-ms-request-id": [ + "9b17bd7d-ca59-4b66-aac1-eff467b3d27a" ], "x-ms-correlation-request-id": [ - "7fe95b34-7573-4cf3-a80f-b53e45509a30" + "9b17bd7d-ca59-4b66-aac1-eff467b3d27a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080416Z:7fe95b34-7573-4cf3-a80f-b53e45509a30" + "NORTHEUROPE:20180622T085448Z:9b17bd7d-ca59-4b66-aac1-eff467b3d27a" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1639,13 +1642,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:04:31 GMT" + "Fri, 22 Jun 2018 08:55:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1653,9 +1656,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "7ba299df-c1d1-4bf3-9ef3-a9b45e56f605" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1666,26 +1666,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14977" + ], + "x-ms-request-id": [ + "542a1a36-71ec-4b92-b777-bbb9fa76f97f" ], "x-ms-correlation-request-id": [ - "b898657d-daaa-4f13-bc04-d4f8b37aff06" + "542a1a36-71ec-4b92-b777-bbb9fa76f97f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080432Z:b898657d-daaa-4f13-bc04-d4f8b37aff06" + "NORTHEUROPE:20180622T085503Z:542a1a36-71ec-4b92-b777-bbb9fa76f97f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1700,13 +1703,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:04:47 GMT" + "Fri, 22 Jun 2018 08:55:19 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1714,9 +1717,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "dfa78955-f447-45fa-9758-9980b56f6d3b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1727,26 +1727,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14976" + ], + "x-ms-request-id": [ + "e98c45e8-88c8-401e-996b-5cf7dce14d56" ], "x-ms-correlation-request-id": [ - "ad86e0b7-3c1c-41e6-b757-44bba81ceb00" + "e98c45e8-88c8-401e-996b-5cf7dce14d56" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080447Z:ad86e0b7-3c1c-41e6-b757-44bba81ceb00" + "NORTHEUROPE:20180622T085519Z:e98c45e8-88c8-401e-996b-5cf7dce14d56" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1761,13 +1764,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:05:02 GMT" + "Fri, 22 Jun 2018 08:55:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1775,9 +1778,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "13f744c5-1858-4201-b270-5eba0e166fcb" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1788,26 +1788,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14975" + ], + "x-ms-request-id": [ + "73339f0d-9092-411b-950d-c2b2711648a6" ], "x-ms-correlation-request-id": [ - "ba646a25-9bbc-4128-9eee-7dc855d6f81c" + "73339f0d-9092-411b-950d-c2b2711648a6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080502Z:ba646a25-9bbc-4128-9eee-7dc855d6f81c" + "NORTHEUROPE:20180622T085535Z:73339f0d-9092-411b-950d-c2b2711648a6" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1822,13 +1825,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:05:17 GMT" + "Fri, 22 Jun 2018 08:55:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1836,9 +1839,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "a981f055-5483-48da-aca9-fbb1b849e769" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1849,26 +1849,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14974" + ], + "x-ms-request-id": [ + "dd4af2ea-0a77-4981-a740-89b20b235289" ], "x-ms-correlation-request-id": [ - "2953de6e-1ea5-4545-bbc3-96b5c097e554" + "dd4af2ea-0a77-4981-a740-89b20b235289" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080518Z:2953de6e-1ea5-4545-bbc3-96b5c097e554" + "NORTHEUROPE:20180622T085551Z:dd4af2ea-0a77-4981-a740-89b20b235289" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1883,13 +1886,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:05:32 GMT" + "Fri, 22 Jun 2018 08:56:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1897,9 +1900,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "003e49fc-01b5-464f-8199-237d31ebb4c0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1910,26 +1910,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14973" + ], + "x-ms-request-id": [ + "45eeaec9-24c6-4cf2-b968-ab07d4ffc7a9" ], "x-ms-correlation-request-id": [ - "7a71e1f0-5314-4230-bdb0-4a8b94a7d46f" + "45eeaec9-24c6-4cf2-b968-ab07d4ffc7a9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080533Z:7a71e1f0-5314-4230-bdb0-4a8b94a7d46f" + "NORTHEUROPE:20180622T085606Z:45eeaec9-24c6-4cf2-b968-ab07d4ffc7a9" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -1944,13 +1947,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:05:48 GMT" + "Fri, 22 Jun 2018 08:56:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -1958,9 +1961,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "07487486-d1c0-49fb-afe1-46793258b7fa" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1971,26 +1971,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14972" + ], + "x-ms-request-id": [ + "73ef80dd-ac1d-4c18-ba49-549d249ce18f" ], "x-ms-correlation-request-id": [ - "9da60d20-4aae-4c76-930c-81fc98eceef5" + "73ef80dd-ac1d-4c18-ba49-549d249ce18f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080548Z:9da60d20-4aae-4c76-930c-81fc98eceef5" + "NORTHEUROPE:20180622T085622Z:73ef80dd-ac1d-4c18-ba49-549d249ce18f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2005,13 +2008,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:06:03 GMT" + "Fri, 22 Jun 2018 08:56:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2019,9 +2022,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "5aa5bb00-5ae7-49bf-883a-d55c8a36c9bf" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2032,26 +2032,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14971" + ], + "x-ms-request-id": [ + "1e9b8512-4d59-4d22-b3c6-ca7aed2897b2" ], "x-ms-correlation-request-id": [ - "915b934d-32c7-40ba-b680-2475aa5ade0f" + "1e9b8512-4d59-4d22-b3c6-ca7aed2897b2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080604Z:915b934d-32c7-40ba-b680-2475aa5ade0f" + "NORTHEUROPE:20180622T085638Z:1e9b8512-4d59-4d22-b3c6-ca7aed2897b2" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2066,13 +2069,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:06:19 GMT" + "Fri, 22 Jun 2018 08:56:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2080,9 +2083,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "888719c5-d588-4176-96dd-45670ac506e6" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2093,26 +2093,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14970" + ], + "x-ms-request-id": [ + "f8fa8b33-ad43-46cd-a756-2244891e36a0" ], "x-ms-correlation-request-id": [ - "31b654b1-bc63-46a1-a55c-be1b080828d2" + "f8fa8b33-ad43-46cd-a756-2244891e36a0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080619Z:31b654b1-bc63-46a1-a55c-be1b080828d2" + "NORTHEUROPE:20180622T085653Z:f8fa8b33-ad43-46cd-a756-2244891e36a0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2127,13 +2130,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:06:34 GMT" + "Fri, 22 Jun 2018 08:57:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2141,9 +2144,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ef8d165d-0dd3-4a6c-a36e-3dde09abab02" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2154,26 +2154,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14969" + ], + "x-ms-request-id": [ + "a99f14f4-95d7-43d1-b1a1-817d1f5835f6" ], "x-ms-correlation-request-id": [ - "e87a2b0d-f3ab-439f-a8f5-12866fdbf9cb" + "a99f14f4-95d7-43d1-b1a1-817d1f5835f6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080635Z:e87a2b0d-f3ab-439f-a8f5-12866fdbf9cb" + "NORTHEUROPE:20180622T085709Z:a99f14f4-95d7-43d1-b1a1-817d1f5835f6" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2188,13 +2191,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:06:50 GMT" + "Fri, 22 Jun 2018 08:57:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2202,9 +2205,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "b7ee33e0-9339-40cd-938e-25a9138b4ef5" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2215,26 +2215,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14968" + ], + "x-ms-request-id": [ + "0c0d86dd-17bc-4f3d-a265-daf296506ee7" ], "x-ms-correlation-request-id": [ - "81bb63e6-b37e-4598-ab62-60fc90bc8cc3" + "0c0d86dd-17bc-4f3d-a265-daf296506ee7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080650Z:81bb63e6-b37e-4598-ab62-60fc90bc8cc3" + "NORTHEUROPE:20180622T085724Z:0c0d86dd-17bc-4f3d-a265-daf296506ee7" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2249,13 +2252,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:07:05 GMT" + "Fri, 22 Jun 2018 08:57:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2263,9 +2266,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "7eb8c5d6-bb57-449c-b65e-703d1f0f8dea" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2276,26 +2276,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14967" + ], + "x-ms-request-id": [ + "14950a40-7824-4f32-8aa4-8dacc39440b3" ], "x-ms-correlation-request-id": [ - "b61954e6-5902-44af-ad62-d33b2a6671f2" + "14950a40-7824-4f32-8aa4-8dacc39440b3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080705Z:b61954e6-5902-44af-ad62-d33b2a6671f2" + "NORTHEUROPE:20180622T085742Z:14950a40-7824-4f32-8aa4-8dacc39440b3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2310,13 +2313,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:07:20 GMT" + "Fri, 22 Jun 2018 08:57:57 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2324,9 +2327,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "bffed1b6-fbfa-4d88-86f2-f09e304a5686" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2337,26 +2337,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14966" + ], + "x-ms-request-id": [ + "05b26eac-d136-4649-94c1-9014251839db" ], "x-ms-correlation-request-id": [ - "9b6a26b0-291c-41c5-84af-72c0879295aa" + "05b26eac-d136-4649-94c1-9014251839db" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080721Z:9b6a26b0-291c-41c5-84af-72c0879295aa" + "NORTHEUROPE:20180622T085757Z:05b26eac-d136-4649-94c1-9014251839db" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2371,13 +2374,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:07:36 GMT" + "Fri, 22 Jun 2018 08:58:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2385,9 +2388,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "8f3dd53b-08f8-48a3-9b67-b1a6b3e192b0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2398,26 +2398,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14965" + ], + "x-ms-request-id": [ + "b75c20c9-1963-4b6b-bcdd-6bdfbf70cb10" ], "x-ms-correlation-request-id": [ - "3de6a4d3-ed91-47ae-86f8-4b902ab7c91d" + "b75c20c9-1963-4b6b-bcdd-6bdfbf70cb10" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080736Z:3de6a4d3-ed91-47ae-86f8-4b902ab7c91d" + "NORTHEUROPE:20180622T085814Z:b75c20c9-1963-4b6b-bcdd-6bdfbf70cb10" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2432,13 +2435,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:07:51 GMT" + "Fri, 22 Jun 2018 08:58:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2446,9 +2449,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ee37c3fd-a1d7-43ad-9c15-45cb9dcc10b3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2459,26 +2459,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14964" + ], + "x-ms-request-id": [ + "fb52b80e-1aa2-4ee5-b6de-868a50bafc46" ], "x-ms-correlation-request-id": [ - "1f3d683f-2e14-4213-93af-cf6804e6803d" + "fb52b80e-1aa2-4ee5-b6de-868a50bafc46" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080751Z:1f3d683f-2e14-4213-93af-cf6804e6803d" + "NORTHEUROPE:20180622T085830Z:fb52b80e-1aa2-4ee5-b6de-868a50bafc46" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2493,13 +2496,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:08:07 GMT" + "Fri, 22 Jun 2018 08:58:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2507,9 +2510,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ca4b0a30-2cb9-4c97-9a94-3d40891e2659" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2520,26 +2520,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14963" + ], + "x-ms-request-id": [ + "0854202f-a530-4220-bfac-dbf5ec7db305" ], "x-ms-correlation-request-id": [ - "673021a1-9a4b-46fe-84fd-1b909ecf8dc0" + "0854202f-a530-4220-bfac-dbf5ec7db305" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080807Z:673021a1-9a4b-46fe-84fd-1b909ecf8dc0" + "NORTHEUROPE:20180622T085847Z:0854202f-a530-4220-bfac-dbf5ec7db305" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2554,13 +2557,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:08:22 GMT" + "Fri, 22 Jun 2018 08:59:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2568,9 +2571,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "032814ba-5f0d-4b9d-9c16-d7615452f4d8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2581,26 +2581,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14962" + ], + "x-ms-request-id": [ + "3868dc27-19b8-42ed-839c-c00266dcec05" ], "x-ms-correlation-request-id": [ - "215c411d-db1f-4f97-8ec5-af83888505cb" + "3868dc27-19b8-42ed-839c-c00266dcec05" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080822Z:215c411d-db1f-4f97-8ec5-af83888505cb" + "NORTHEUROPE:20180622T085903Z:3868dc27-19b8-42ed-839c-c00266dcec05" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2615,13 +2618,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:08:37 GMT" + "Fri, 22 Jun 2018 08:59:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2629,9 +2632,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "76d5af86-fde8-46b9-b7d3-9788f3378429" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2642,26 +2642,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14961" + ], + "x-ms-request-id": [ + "195df4c1-68f5-48ba-9aaa-00ddbf9af48e" ], "x-ms-correlation-request-id": [ - "4a1970d5-15a1-4a47-ae29-47655cda8bb5" + "195df4c1-68f5-48ba-9aaa-00ddbf9af48e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080838Z:4a1970d5-15a1-4a47-ae29-47655cda8bb5" + "NORTHEUROPE:20180622T085918Z:195df4c1-68f5-48ba-9aaa-00ddbf9af48e" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2676,13 +2679,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:08:52 GMT" + "Fri, 22 Jun 2018 08:59:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2690,9 +2693,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "6e4f9dcf-4753-4771-9cd3-24838a6c850b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2703,26 +2703,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14960" + ], + "x-ms-request-id": [ + "439de1fc-c25a-4acb-8d56-c47835f03afb" ], "x-ms-correlation-request-id": [ - "96c71071-9263-4359-84af-8f614b490b09" + "439de1fc-c25a-4acb-8d56-c47835f03afb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080853Z:96c71071-9263-4359-84af-8f614b490b09" + "NORTHEUROPE:20180622T085934Z:439de1fc-c25a-4acb-8d56-c47835f03afb" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2737,13 +2740,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:09:08 GMT" + "Fri, 22 Jun 2018 08:59:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2751,9 +2754,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "6c711f33-0291-4ba4-a728-48715e27d700" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2764,26 +2764,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14959" + ], + "x-ms-request-id": [ + "7301fdff-188e-4cb6-a600-3b6391271928" ], "x-ms-correlation-request-id": [ - "238ae1ac-5fdb-4273-8889-3e383f50d11e" + "7301fdff-188e-4cb6-a600-3b6391271928" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080908Z:238ae1ac-5fdb-4273-8889-3e383f50d11e" + "NORTHEUROPE:20180622T085950Z:7301fdff-188e-4cb6-a600-3b6391271928" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2798,13 +2801,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:09:23 GMT" + "Fri, 22 Jun 2018 09:00:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2812,9 +2815,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "b19fd3f6-1da1-401a-abb2-9ffb0c52650f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2825,26 +2825,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14958" + ], + "x-ms-request-id": [ + "969d37ff-cf05-408d-b3d2-c72718f8dc4b" ], "x-ms-correlation-request-id": [ - "9ac86d89-defe-40f4-920e-21be633a1aeb" + "969d37ff-cf05-408d-b3d2-c72718f8dc4b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080924Z:9ac86d89-defe-40f4-920e-21be633a1aeb" + "NORTHEUROPE:20180622T090005Z:969d37ff-cf05-408d-b3d2-c72718f8dc4b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2859,13 +2862,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:09:39 GMT" + "Fri, 22 Jun 2018 09:00:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2873,9 +2876,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "9f51d2d3-1684-497c-a819-4393a22ba7c0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2886,26 +2886,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14957" + ], + "x-ms-request-id": [ + "51e13738-9bed-41d0-9725-036e84fdd6ce" ], "x-ms-correlation-request-id": [ - "53f1230b-842c-4ab4-819b-45c3c162e260" + "51e13738-9bed-41d0-9725-036e84fdd6ce" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080939Z:53f1230b-842c-4ab4-819b-45c3c162e260" + "NORTHEUROPE:20180622T090021Z:51e13738-9bed-41d0-9725-036e84fdd6ce" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2920,13 +2923,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:09:54 GMT" + "Fri, 22 Jun 2018 09:00:38 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2934,9 +2937,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "00b9f14d-db0b-4945-a217-26eeac2cc715" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -2947,26 +2947,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14956" + ], + "x-ms-request-id": [ + "a3c96af1-1b41-4d5d-baff-dd16ed6ba5ae" ], "x-ms-correlation-request-id": [ - "49f2b903-bd5b-413b-b9a2-45fe49fb134f" + "a3c96af1-1b41-4d5d-baff-dd16ed6ba5ae" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T080955Z:49f2b903-bd5b-413b-b9a2-45fe49fb134f" + "NORTHEUROPE:20180622T090039Z:a3c96af1-1b41-4d5d-baff-dd16ed6ba5ae" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -2981,13 +2984,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:10:10 GMT" + "Fri, 22 Jun 2018 09:00:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -2995,9 +2998,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fe0e778a-fdec-4d7c-baa0-6c4ff3fbd395" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3008,26 +3008,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14955" + ], + "x-ms-request-id": [ + "d25c36b6-724e-4bec-b570-7226813cf160" ], "x-ms-correlation-request-id": [ - "b0a3af54-9cac-4ff2-ab5a-4827b1f0237e" + "d25c36b6-724e-4bec-b570-7226813cf160" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081010Z:b0a3af54-9cac-4ff2-ab5a-4827b1f0237e" + "NORTHEUROPE:20180622T090054Z:d25c36b6-724e-4bec-b570-7226813cf160" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3042,13 +3045,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:10:25 GMT" + "Fri, 22 Jun 2018 09:01:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3056,9 +3059,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "38eb8c02-019c-45b6-839e-fd556eb275a4" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3069,26 +3069,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14954" + ], + "x-ms-request-id": [ + "77eec500-5474-4d83-855c-cd8affd0335c" ], "x-ms-correlation-request-id": [ - "8f8eda40-0c46-478e-a247-bf92743373ed" + "77eec500-5474-4d83-855c-cd8affd0335c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081025Z:8f8eda40-0c46-478e-a247-bf92743373ed" + "NORTHEUROPE:20180622T090110Z:77eec500-5474-4d83-855c-cd8affd0335c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3103,13 +3106,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:10:40 GMT" + "Fri, 22 Jun 2018 09:01:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3117,9 +3120,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "6e7b171f-55bc-4bb8-a890-112f157f40b4" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3130,26 +3130,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14953" + ], + "x-ms-request-id": [ + "05b33667-bc46-4b17-8a46-2213b4e2351c" ], "x-ms-correlation-request-id": [ - "cce004fd-894c-4b6c-a462-fed575f26c81" + "05b33667-bc46-4b17-8a46-2213b4e2351c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081041Z:cce004fd-894c-4b6c-a462-fed575f26c81" + "NORTHEUROPE:20180622T090126Z:05b33667-bc46-4b17-8a46-2213b4e2351c" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3164,13 +3167,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:10:55 GMT" + "Fri, 22 Jun 2018 09:01:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3178,9 +3181,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "48d3dd1c-9d9a-47b9-8457-a851921cfa49" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3191,26 +3191,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14952" + ], + "x-ms-request-id": [ + "ae67e86b-fa9c-498e-b616-caeccfc7dee5" ], "x-ms-correlation-request-id": [ - "c8f5bbdb-af8a-4db2-a6ed-85a2373066da" + "ae67e86b-fa9c-498e-b616-caeccfc7dee5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081056Z:c8f5bbdb-af8a-4db2-a6ed-85a2373066da" + "NORTHEUROPE:20180622T090141Z:ae67e86b-fa9c-498e-b616-caeccfc7dee5" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3225,13 +3228,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:11:10 GMT" + "Fri, 22 Jun 2018 09:01:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3239,9 +3242,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "4a1510bc-a502-4012-9d86-be13ee29bd88" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3252,26 +3252,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14951" + ], + "x-ms-request-id": [ + "950aca13-6077-4bca-8218-78d9ecc8af14" ], "x-ms-correlation-request-id": [ - "db2939c1-fd84-469e-8040-33ba38578d8f" + "950aca13-6077-4bca-8218-78d9ecc8af14" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081111Z:db2939c1-fd84-469e-8040-33ba38578d8f" + "NORTHEUROPE:20180622T090157Z:950aca13-6077-4bca-8218-78d9ecc8af14" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3286,13 +3289,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:11:27 GMT" + "Fri, 22 Jun 2018 09:02:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3300,9 +3303,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "1586262d-c010-4acc-9cda-92046ce4365f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3313,26 +3313,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14950" + ], + "x-ms-request-id": [ + "4c6f1b8a-c324-4e92-bb98-591349f207fb" ], "x-ms-correlation-request-id": [ - "121b0e67-829e-4e9a-a3c8-55ec7dc3407d" + "4c6f1b8a-c324-4e92-bb98-591349f207fb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081127Z:121b0e67-829e-4e9a-a3c8-55ec7dc3407d" + "NORTHEUROPE:20180622T090213Z:4c6f1b8a-c324-4e92-bb98-591349f207fb" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3347,13 +3350,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:11:42 GMT" + "Fri, 22 Jun 2018 09:02:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3361,9 +3364,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "3d9b4f4a-a812-44f7-abcd-9561eb7b31bd" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3374,26 +3374,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14949" + ], + "x-ms-request-id": [ + "77ce3c74-339c-474f-a6e2-5ade809d80bd" ], "x-ms-correlation-request-id": [ - "a4179c67-cb22-40f5-91bb-08baaecb9fe6" + "77ce3c74-339c-474f-a6e2-5ade809d80bd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081142Z:a4179c67-cb22-40f5-91bb-08baaecb9fe6" + "NORTHEUROPE:20180622T090229Z:77ce3c74-339c-474f-a6e2-5ade809d80bd" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3408,13 +3411,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:11:57 GMT" + "Fri, 22 Jun 2018 09:02:45 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3422,9 +3425,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "9ca409df-4f12-47de-96a6-e61b396fdeda" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3435,26 +3435,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14948" + ], + "x-ms-request-id": [ + "1082e9a0-61e0-4550-b95a-707622553750" ], "x-ms-correlation-request-id": [ - "1be1531f-94a3-42b6-92e7-441907832e87" + "1082e9a0-61e0-4550-b95a-707622553750" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081158Z:1be1531f-94a3-42b6-92e7-441907832e87" + "NORTHEUROPE:20180622T090245Z:1082e9a0-61e0-4550-b95a-707622553750" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3469,13 +3472,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:12:12 GMT" + "Fri, 22 Jun 2018 09:03:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3483,9 +3486,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fb124bad-e0ba-4b2f-85b7-a28dd2fb968c" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3496,26 +3496,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14947" + ], + "x-ms-request-id": [ + "e4378eae-23f6-4e23-ac50-f39a73cd0a8b" ], "x-ms-correlation-request-id": [ - "02024225-77b3-4c24-bb63-a0618a5e4577" + "e4378eae-23f6-4e23-ac50-f39a73cd0a8b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081213Z:02024225-77b3-4c24-bb63-a0618a5e4577" + "NORTHEUROPE:20180622T090304Z:e4378eae-23f6-4e23-ac50-f39a73cd0a8b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3530,13 +3533,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:12:28 GMT" + "Fri, 22 Jun 2018 09:03:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3544,9 +3547,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "589c2850-0fdc-4125-a6e6-68748adb38d2" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3557,26 +3557,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14946" + ], + "x-ms-request-id": [ + "b52b64c2-5cd6-4aa8-8ac4-78ecfe543db3" ], "x-ms-correlation-request-id": [ - "5f9ad2c6-f77b-4ea1-982d-d29cfff7be43" + "b52b64c2-5cd6-4aa8-8ac4-78ecfe543db3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081228Z:5f9ad2c6-f77b-4ea1-982d-d29cfff7be43" + "NORTHEUROPE:20180622T090321Z:b52b64c2-5cd6-4aa8-8ac4-78ecfe543db3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3591,13 +3594,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:12:43 GMT" + "Fri, 22 Jun 2018 09:03:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3605,9 +3608,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "14afd55e-b069-4914-abb1-cdec42b73c52" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3618,26 +3618,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14945" + ], + "x-ms-request-id": [ + "0ead0fbf-ff97-4f71-84f8-56f7ed82a9ad" ], "x-ms-correlation-request-id": [ - "f0636d15-9bbf-4161-8e1d-529b657f7085" + "0ead0fbf-ff97-4f71-84f8-56f7ed82a9ad" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081244Z:f0636d15-9bbf-4161-8e1d-529b657f7085" + "NORTHEUROPE:20180622T090336Z:0ead0fbf-ff97-4f71-84f8-56f7ed82a9ad" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3652,13 +3655,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:12:59 GMT" + "Fri, 22 Jun 2018 09:03:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3666,9 +3669,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "34361d93-b216-43f5-8c37-16d6ae389bc3" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3679,26 +3679,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14944" + ], + "x-ms-request-id": [ + "fbfcaf32-68f7-4753-8d54-442d19f4d73e" ], "x-ms-correlation-request-id": [ - "aa36ff02-4b6c-48b4-b9e7-fa4fe205b59e" + "fbfcaf32-68f7-4753-8d54-442d19f4d73e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081259Z:aa36ff02-4b6c-48b4-b9e7-fa4fe205b59e" + "NORTHEUROPE:20180622T090352Z:fbfcaf32-68f7-4753-8d54-442d19f4d73e" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3713,13 +3716,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:13:14 GMT" + "Fri, 22 Jun 2018 09:04:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3727,9 +3730,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "114e605f-4c40-4a26-9543-61d62c1362e8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3740,26 +3740,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14943" + ], + "x-ms-request-id": [ + "b6bcf5f9-781d-48a6-85a3-4807fc834530" ], "x-ms-correlation-request-id": [ - "dcf0e24c-591a-4c2e-8e34-75640d8bb838" + "b6bcf5f9-781d-48a6-85a3-4807fc834530" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081315Z:dcf0e24c-591a-4c2e-8e34-75640d8bb838" + "NORTHEUROPE:20180622T090407Z:b6bcf5f9-781d-48a6-85a3-4807fc834530" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3774,13 +3777,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:13:30 GMT" + "Fri, 22 Jun 2018 09:04:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3788,9 +3791,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "72987e28-cd49-4590-9325-1fd5046ab8e2" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3801,26 +3801,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14942" + ], + "x-ms-request-id": [ + "973cc64c-6827-4d70-9c4d-df249defe83f" ], "x-ms-correlation-request-id": [ - "ca11ef9e-08e0-4e42-b9cf-70493cf34657" + "973cc64c-6827-4d70-9c4d-df249defe83f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081330Z:ca11ef9e-08e0-4e42-b9cf-70493cf34657" + "NORTHEUROPE:20180622T090423Z:973cc64c-6827-4d70-9c4d-df249defe83f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3835,13 +3838,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:13:45 GMT" + "Fri, 22 Jun 2018 09:04:38 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3849,9 +3852,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "66304441-77e4-4fc4-be5e-c6e6661f459d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3862,26 +3862,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14941" + ], + "x-ms-request-id": [ + "a95d4857-c6ff-4e4d-82ae-9f9e90f8fc37" ], "x-ms-correlation-request-id": [ - "02f27e00-0b87-4748-88cd-a447c852e695" + "a95d4857-c6ff-4e4d-82ae-9f9e90f8fc37" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081345Z:02f27e00-0b87-4748-88cd-a447c852e695" + "NORTHEUROPE:20180622T090439Z:a95d4857-c6ff-4e4d-82ae-9f9e90f8fc37" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3896,13 +3899,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:14:00 GMT" + "Fri, 22 Jun 2018 09:04:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3910,9 +3913,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "2a97f33e-9170-484b-b331-02db5d90f40b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3923,26 +3923,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14940" + ], + "x-ms-request-id": [ + "56aced75-967d-482d-b5ed-20796f231c00" ], "x-ms-correlation-request-id": [ - "f3860f26-b583-442f-84f5-3cbd738972c9" + "56aced75-967d-482d-b5ed-20796f231c00" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081401Z:f3860f26-b583-442f-84f5-3cbd738972c9" + "NORTHEUROPE:20180622T090454Z:56aced75-967d-482d-b5ed-20796f231c00" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -3957,13 +3960,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:14:15 GMT" + "Fri, 22 Jun 2018 09:05:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -3971,9 +3974,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "3958f9fc-7c75-4bf3-864d-cf9d81660520" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -3984,26 +3984,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14939" + ], + "x-ms-request-id": [ + "66250cf6-3c90-4322-8827-da117c48fac7" ], "x-ms-correlation-request-id": [ - "31247359-4f9e-4eca-8969-99af2599b0f2" + "66250cf6-3c90-4322-8827-da117c48fac7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081416Z:31247359-4f9e-4eca-8969-99af2599b0f2" + "NORTHEUROPE:20180622T090510Z:66250cf6-3c90-4322-8827-da117c48fac7" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4018,13 +4021,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:14:30 GMT" + "Fri, 22 Jun 2018 09:05:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4032,9 +4035,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "2122b93a-0950-4c37-b058-964b1725c37b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4045,26 +4045,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14938" + ], + "x-ms-request-id": [ + "800877b9-3bc6-4a85-a1be-643b05379fde" ], "x-ms-correlation-request-id": [ - "6be4821c-e06c-42c9-b5b0-4840257debb0" + "800877b9-3bc6-4a85-a1be-643b05379fde" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081431Z:6be4821c-e06c-42c9-b5b0-4840257debb0" + "NORTHEUROPE:20180622T090526Z:800877b9-3bc6-4a85-a1be-643b05379fde" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4079,13 +4082,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:14:47 GMT" + "Fri, 22 Jun 2018 09:05:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4093,9 +4096,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "4daf8dae-ca97-4e6a-a484-3fd5ade6719c" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4106,26 +4106,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14937" + ], + "x-ms-request-id": [ + "b82c9d63-c967-4941-be3f-200e9e0ceb1f" ], "x-ms-correlation-request-id": [ - "8310e23e-ab75-412b-b2e1-6edf10cb35ce" + "b82c9d63-c967-4941-be3f-200e9e0ceb1f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081447Z:8310e23e-ab75-412b-b2e1-6edf10cb35ce" + "NORTHEUROPE:20180622T090542Z:b82c9d63-c967-4941-be3f-200e9e0ceb1f" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4140,13 +4143,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:15:02 GMT" + "Fri, 22 Jun 2018 09:05:57 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4154,9 +4157,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "8d1aceac-fb5e-4a85-87af-3586722a7644" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4167,26 +4167,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14936" + ], + "x-ms-request-id": [ + "c81d39cf-eaee-4401-bd2c-51fc6ae81fd3" ], "x-ms-correlation-request-id": [ - "00bfabe0-f12b-4977-ad30-cb0ecd0e1f03" + "c81d39cf-eaee-4401-bd2c-51fc6ae81fd3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081502Z:00bfabe0-f12b-4977-ad30-cb0ecd0e1f03" + "NORTHEUROPE:20180622T090557Z:c81d39cf-eaee-4401-bd2c-51fc6ae81fd3" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4201,13 +4204,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:15:17 GMT" + "Fri, 22 Jun 2018 09:06:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4215,9 +4218,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "e68dfabb-b781-4933-8f21-e5561585feab" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4228,26 +4228,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14935" + ], + "x-ms-request-id": [ + "e428e876-0a27-41b0-bab4-7e3b2b4e041a" ], "x-ms-correlation-request-id": [ - "7cb03ec4-1094-4179-8454-01cae16b3e41" + "e428e876-0a27-41b0-bab4-7e3b2b4e041a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081518Z:7cb03ec4-1094-4179-8454-01cae16b3e41" + "NORTHEUROPE:20180622T090613Z:e428e876-0a27-41b0-bab4-7e3b2b4e041a" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4262,13 +4265,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:15:32 GMT" + "Fri, 22 Jun 2018 09:06:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4276,9 +4279,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "aaae39c2-7bca-45be-a870-5fa3b5be7fdd" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4289,26 +4289,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14934" + ], + "x-ms-request-id": [ + "2a31ea5e-a340-4eef-ad98-d89ef9e3be07" ], "x-ms-correlation-request-id": [ - "a84206be-4cb7-4040-af8b-c7b789b933dc" + "2a31ea5e-a340-4eef-ad98-d89ef9e3be07" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081533Z:a84206be-4cb7-4040-af8b-c7b789b933dc" + "NORTHEUROPE:20180622T090629Z:2a31ea5e-a340-4eef-ad98-d89ef9e3be07" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4323,13 +4326,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:15:48 GMT" + "Fri, 22 Jun 2018 09:06:44 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4337,9 +4340,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "850bbba6-5533-4ab0-afda-6739856a0c14" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4350,26 +4350,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14933" + ], + "x-ms-request-id": [ + "25b4957a-4cbd-4568-bdf7-6948fdb1370d" ], "x-ms-correlation-request-id": [ - "6f0160e1-4b74-419f-a74e-bc967ce693b7" + "25b4957a-4cbd-4568-bdf7-6948fdb1370d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081548Z:6f0160e1-4b74-419f-a74e-bc967ce693b7" + "NORTHEUROPE:20180622T090644Z:25b4957a-4cbd-4568-bdf7-6948fdb1370d" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4384,13 +4387,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:16:03 GMT" + "Fri, 22 Jun 2018 09:06:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4398,9 +4401,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ac56019e-cb38-4576-ab37-945e6bedddb5" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4411,26 +4411,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14932" + ], + "x-ms-request-id": [ + "a9933c97-b6bb-4e7d-850d-8aebea12bf39" ], "x-ms-correlation-request-id": [ - "dff2e9c3-653f-4eca-974c-b60df0e41e73" + "a9933c97-b6bb-4e7d-850d-8aebea12bf39" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081604Z:dff2e9c3-653f-4eca-974c-b60df0e41e73" + "NORTHEUROPE:20180622T090700Z:a9933c97-b6bb-4e7d-850d-8aebea12bf39" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4445,13 +4448,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:16:19 GMT" + "Fri, 22 Jun 2018 09:07:15 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4459,9 +4462,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "1a2755c5-e5a1-419b-b95d-08219917a8f1" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4472,26 +4472,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14931" + ], + "x-ms-request-id": [ + "2a2a3983-595a-461f-9465-47e1ee290cb6" ], "x-ms-correlation-request-id": [ - "c2043fcc-1153-4fbe-ad03-609b4bc72f82" + "2a2a3983-595a-461f-9465-47e1ee290cb6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081619Z:c2043fcc-1153-4fbe-ad03-609b4bc72f82" + "NORTHEUROPE:20180622T090716Z:2a2a3983-595a-461f-9465-47e1ee290cb6" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4506,13 +4509,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:16:34 GMT" + "Fri, 22 Jun 2018 09:07:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4520,9 +4523,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "d5797eb2-d314-4726-9b25-c50554ad39c1" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4533,26 +4533,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14930" + ], + "x-ms-request-id": [ + "5009351a-a397-4483-8cd9-ee7b9165e5bd" ], "x-ms-correlation-request-id": [ - "8510341f-3031-4f6d-b105-96732ed33981" + "5009351a-a397-4483-8cd9-ee7b9165e5bd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081635Z:8510341f-3031-4f6d-b105-96732ed33981" + "NORTHEUROPE:20180622T090731Z:5009351a-a397-4483-8cd9-ee7b9165e5bd" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4567,13 +4570,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:16:50 GMT" + "Fri, 22 Jun 2018 09:07:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4581,9 +4584,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "59f92e1a-0a2e-4f7d-aacb-17f72a9118d7" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4594,26 +4594,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14929" + ], + "x-ms-request-id": [ + "5c6635f4-9e24-4a3d-b3bd-035c37557258" ], "x-ms-correlation-request-id": [ - "e617f1fa-b530-411c-8bde-fa1cdcd49765" + "5c6635f4-9e24-4a3d-b3bd-035c37557258" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081650Z:e617f1fa-b530-411c-8bde-fa1cdcd49765" + "NORTHEUROPE:20180622T090747Z:5c6635f4-9e24-4a3d-b3bd-035c37557258" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4628,13 +4631,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:17:05 GMT" + "Fri, 22 Jun 2018 09:08:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4642,9 +4645,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "f20a34a7-74ee-4ba8-bb51-0db0ee585243" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4655,26 +4655,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14862" + "14928" + ], + "x-ms-request-id": [ + "a2fef830-da1e-40c1-92f7-c74637028d89" ], "x-ms-correlation-request-id": [ - "b5ccc1a1-e299-4e4d-9e59-e46ba63a691e" + "a2fef830-da1e-40c1-92f7-c74637028d89" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081705Z:b5ccc1a1-e299-4e4d-9e59-e46ba63a691e" + "NORTHEUROPE:20180622T090802Z:a2fef830-da1e-40c1-92f7-c74637028d89" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4689,13 +4692,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:17:20 GMT" + "Fri, 22 Jun 2018 09:08:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4703,9 +4706,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "27bb676a-74ed-44e9-b4fc-0e5eefccbb32" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4716,26 +4716,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14927" + ], + "x-ms-request-id": [ + "8f30473f-1ac4-4139-83f6-c4230e7be212" ], "x-ms-correlation-request-id": [ - "1b4c95d1-1c4a-4761-8751-8f1bd835fabd" + "8f30473f-1ac4-4139-83f6-c4230e7be212" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081721Z:1b4c95d1-1c4a-4761-8751-8f1bd835fabd" + "NORTHEUROPE:20180622T090818Z:8f30473f-1ac4-4139-83f6-c4230e7be212" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4750,13 +4753,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:17:35 GMT" + "Fri, 22 Jun 2018 09:08:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4764,9 +4767,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "6f6b371d-ca96-4f56-a216-f56a16e03e01" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4777,26 +4777,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14860" + "14926" + ], + "x-ms-request-id": [ + "ec9d270a-c240-4055-90e6-05ccc472f008" ], "x-ms-correlation-request-id": [ - "5b6e99fc-04ca-4b26-8e84-66ac32e0ae78" + "ec9d270a-c240-4055-90e6-05ccc472f008" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081736Z:5b6e99fc-04ca-4b26-8e84-66ac32e0ae78" + "NORTHEUROPE:20180622T090834Z:ec9d270a-c240-4055-90e6-05ccc472f008" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4811,13 +4814,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:17:51 GMT" + "Fri, 22 Jun 2018 09:08:49 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4825,9 +4828,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "2f6b5f4c-722d-4145-8d7f-d665ca0352bb" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4838,26 +4838,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14859" + "14925" + ], + "x-ms-request-id": [ + "6d5f5e4d-e8f1-42c8-99d9-0dd461c5adec" ], "x-ms-correlation-request-id": [ - "264b2808-9e45-4b1a-9b2a-29637783a55d" + "6d5f5e4d-e8f1-42c8-99d9-0dd461c5adec" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081752Z:264b2808-9e45-4b1a-9b2a-29637783a55d" + "NORTHEUROPE:20180622T090849Z:6d5f5e4d-e8f1-42c8-99d9-0dd461c5adec" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4872,13 +4875,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:18:07 GMT" + "Fri, 22 Jun 2018 09:09:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4886,9 +4889,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "eb32e960-505b-4a22-873f-feb0301f24c1" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4899,26 +4899,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14924" + ], + "x-ms-request-id": [ + "4e97cb8d-6ef9-4d5f-a177-ce088bbeb4ba" ], "x-ms-correlation-request-id": [ - "c276738c-d191-4f64-b215-87ce8c981911" + "4e97cb8d-6ef9-4d5f-a177-ce088bbeb4ba" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081807Z:c276738c-d191-4f64-b215-87ce8c981911" + "NORTHEUROPE:20180622T090905Z:4e97cb8d-6ef9-4d5f-a177-ce088bbeb4ba" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4933,13 +4936,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:18:22 GMT" + "Fri, 22 Jun 2018 09:09:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -4947,9 +4950,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "3af8d7e1-10e1-4b05-8ec6-1ad7228f0c8b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -4960,26 +4960,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14923" + ], + "x-ms-request-id": [ + "6049e28a-5606-4b82-9a3d-239a25f7f2b1" ], "x-ms-correlation-request-id": [ - "d68228ef-77c7-478c-bfb0-52a256f0c3dc" + "6049e28a-5606-4b82-9a3d-239a25f7f2b1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081822Z:d68228ef-77c7-478c-bfb0-52a256f0c3dc" + "NORTHEUROPE:20180622T090921Z:6049e28a-5606-4b82-9a3d-239a25f7f2b1" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -4994,13 +4997,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:18:37 GMT" + "Fri, 22 Jun 2018 09:09:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5008,9 +5011,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "609666a9-831f-485c-802b-0c2c2c7d7d8b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5021,26 +5021,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14922" + ], + "x-ms-request-id": [ + "f04772f9-3776-4786-af0e-85cbccca2b14" ], "x-ms-correlation-request-id": [ - "dbdcd3a2-b325-404b-aabb-1abb7a060dd9" + "f04772f9-3776-4786-af0e-85cbccca2b14" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081838Z:dbdcd3a2-b325-404b-aabb-1abb7a060dd9" + "NORTHEUROPE:20180622T090936Z:f04772f9-3776-4786-af0e-85cbccca2b14" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5055,13 +5058,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:18:53 GMT" + "Fri, 22 Jun 2018 09:09:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5069,9 +5072,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "e4bc18df-d0b6-45d7-b7fa-501936e1bb67" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5082,26 +5082,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14921" + ], + "x-ms-request-id": [ + "d0d67b03-c475-4359-b957-1b08aa439816" ], "x-ms-correlation-request-id": [ - "3babcf2e-5412-43b4-9789-c1f494c1021c" + "d0d67b03-c475-4359-b957-1b08aa439816" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081853Z:3babcf2e-5412-43b4-9789-c1f494c1021c" + "NORTHEUROPE:20180622T090952Z:d0d67b03-c475-4359-b957-1b08aa439816" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5116,13 +5119,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:19:08 GMT" + "Fri, 22 Jun 2018 09:10:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5130,9 +5133,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "3491935b-2669-4728-a55c-e2d99b3bb35e" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5143,32 +5143,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14920" + ], + "x-ms-request-id": [ + "8c595072-384a-4463-88e5-a3ac9bc43382" ], "x-ms-correlation-request-id": [ - "4a7708f3-e63a-44be-bdc4-c811af8cca90" + "8c595072-384a-4463-88e5-a3ac9bc43382" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081909Z:4a7708f3-e63a-44be-bdc4-c811af8cca90" + "NORTHEUROPE:20180622T091008Z:8c595072-384a-4463-88e5-a3ac9bc43382" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory5569\",\r\n \"state\": \"Started\",\r\n \"iRType\": \"Managed\",\r\n \"type\": \"Managed\",\r\n \"dataFactoryLocation\": null,\r\n \"resourceUri\": null,\r\n \"typeProperties\": {\r\n \"nodes\": [\r\n {\r\n \"nodeId\": \"tvm-1392786932_1-20171116t075953z\",\r\n \"status\": \"Available\",\r\n \"errors\": []\r\n }\r\n ],\r\n \"otherErrors\": [],\r\n \"lastOperation\": {\r\n \"type\": \"Start\",\r\n \"startTime\": \"2017-11-16T07:58:37.0170435Z\",\r\n \"result\": \"Succeeded\",\r\n \"parameters\": []\r\n },\r\n \"state\": \"Started\",\r\n \"createTime\": \"2017-11-16T07:58:35.6732491Z\"\r\n }\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" @@ -5177,23 +5180,20 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:19:23 GMT" + "Fri, 22 Jun 2018 09:10:23 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" + ], + "Retry-After": [ + "15" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "af9099da-803b-4fbb-b4a2-b331c2a12242" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5204,32 +5204,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14919" + ], + "x-ms-request-id": [ + "8784abd9-eed0-48ae-981d-52ab409d1e9b" ], "x-ms-correlation-request-id": [ - "f6d756b5-5a1e-45ed-9a27-8fd6206572b4" + "8784abd9-eed0-48ae-981d-52ab409d1e9b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081924Z:f6d756b5-5a1e-45ed-9a27-8fd6206572b4" + "NORTHEUROPE:20180622T091023Z:8784abd9-eed0-48ae-981d-52ab409d1e9b" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/b9a68ba247154ade89860eae050678b4?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0YXJ0L29wZXJhdGlvbnJlc3VsdHMvYjlhNjhiYTI0NzE1NGFkZTg5ODYwZWFlMDUwNjc4YjQ/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory5569\",\r\n \"state\": \"Started\",\r\n \"iRType\": \"Managed\",\r\n \"type\": \"Managed\",\r\n \"dataFactoryLocation\": null,\r\n \"resourceUri\": null,\r\n \"typeProperties\": {\r\n \"nodes\": [\r\n {\r\n \"nodeId\": \"tvm-1392786932_1-20171116t075953z\",\r\n \"status\": \"Available\",\r\n \"errors\": []\r\n }\r\n ],\r\n \"otherErrors\": [],\r\n \"lastOperation\": {\r\n \"type\": \"Start\",\r\n \"startTime\": \"2017-11-16T07:58:37.0170435Z\",\r\n \"result\": \"Succeeded\",\r\n \"parameters\": []\r\n },\r\n \"state\": \"Started\",\r\n \"createTime\": \"2017-11-16T07:58:35.6732491Z\"\r\n }\r\n }\r\n}", + "ResponseBody": "", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" @@ -5238,23 +5241,20 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:19:23 GMT" + "Fri, 22 Jun 2018 09:10:38 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" + ], + "Retry-After": [ + "15" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "af9099da-803b-4fbb-b4a2-b331c2a12242" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5265,32 +5265,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14918" + ], + "x-ms-request-id": [ + "8a2c974e-f49c-4603-b05d-08efd70e9048" ], "x-ms-correlation-request-id": [ - "f6d756b5-5a1e-45ed-9a27-8fd6206572b4" + "8a2c974e-f49c-4603-b05d-08efd70e9048" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081924Z:f6d756b5-5a1e-45ed-9a27-8fd6206572b4" + "NORTHEUROPE:20180622T091039Z:8a2c974e-f49c-4603-b05d-08efd70e9048" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fe485fa7-2228-447c-9b94-28dc51d7594f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5305,13 +5302,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:19:25 GMT" + "Fri, 22 Jun 2018 09:10:55 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5319,9 +5316,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fe485fa7-2228-447c-9b94-28dc51d7594f" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5331,27 +5325,30 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "de2743d4-42fa-4e39-ac93-1e6df52d4b6b" ], "x-ms-correlation-request-id": [ - "c83897dc-9602-4e58-8100-de43a084899e" + "de2743d4-42fa-4e39-ac93-1e6df52d4b6b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081926Z:c83897dc-9602-4e58-8100-de43a084899e" + "NORTHEUROPE:20180622T091055Z:de2743d4-42fa-4e39-ac93-1e6df52d4b6b" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3Avb3BlcmF0aW9ucmVzdWx0cy81MTc0ZGViNDhkOTg0YjY5ODM5MzUzMjcwMmQ5M2U0OT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5366,13 +5363,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:19:40 GMT" + "Fri, 22 Jun 2018 09:11:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5380,9 +5377,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "fa2a051c-e248-4e15-8ee7-acb2eb9538ad" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5393,26 +5387,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14916" + ], + "x-ms-request-id": [ + "50d9726f-dae5-4ecd-b877-51c83b09d506" ], "x-ms-correlation-request-id": [ - "a0ef5b2a-f9b9-4f05-bb87-fc07f5d52706" + "50d9726f-dae5-4ecd-b877-51c83b09d506" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081941Z:a0ef5b2a-f9b9-4f05-bb87-fc07f5d52706" + "NORTHEUROPE:20180622T091110Z:50d9726f-dae5-4ecd-b877-51c83b09d506" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3Avb3BlcmF0aW9ucmVzdWx0cy81MTc0ZGViNDhkOTg0YjY5ODM5MzUzMjcwMmQ5M2U0OT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5427,13 +5424,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:19:57 GMT" + "Fri, 22 Jun 2018 09:11:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5441,9 +5438,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ab7153fa-5bd6-4b98-adf7-20ab42f56cb8" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5454,26 +5448,29 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14915" + ], + "x-ms-request-id": [ + "3e6c64cb-76a9-4e64-bd99-3df32f823060" ], "x-ms-correlation-request-id": [ - "107be0d1-2039-4b58-9105-5e8768c1cc4a" + "3e6c64cb-76a9-4e64-bd99-3df32f823060" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T081957Z:107be0d1-2039-4b58-9105-5e8768c1cc4a" + "NORTHEUROPE:20180622T091126Z:3e6c64cb-76a9-4e64-bd99-3df32f823060" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3Avb3BlcmF0aW9ucmVzdWx0cy81MTc0ZGViNDhkOTg0YjY5ODM5MzUzMjcwMmQ5M2U0OT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5488,13 +5485,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:12 GMT" + "Fri, 22 Jun 2018 09:11:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01" ], "Retry-After": [ "15" @@ -5502,9 +5499,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "31a4959d-954a-466a-a427-c72f48e6dc0d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5515,32 +5509,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14914" + ], + "x-ms-request-id": [ + "0af0b357-a5dd-4189-aa32-91eeefa8f416" ], "x-ms-correlation-request-id": [ - "b462ea70-d4c4-46a0-b5f0-89e37aeab097" + "0af0b357-a5dd-4189-aa32-91eeefa8f416" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082012Z:b462ea70-d4c4-46a0-b5f0-89e37aeab097" + "NORTHEUROPE:20180622T091142Z:0af0b357-a5dd-4189-aa32-91eeefa8f416" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3Avb3BlcmF0aW9ucmVzdWx0cy81MTc0ZGViNDhkOTg0YjY5ODM5MzUzMjcwMmQ5M2U0OT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory352\",\r\n \"state\": \"Started\",\r\n \"type\": \"Managed\",\r\n \"dataFactoryLocation\": null,\r\n \"resourceUri\": null,\r\n \"typeProperties\": {\r\n \"nodes\": [],\r\n \"otherErrors\": [],\r\n \"state\": \"Started\",\r\n \"createTime\": \"2018-06-22T08:48:55.9274916Z\"\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -5549,22 +5546,19 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:27 GMT" + "Fri, 22 Jun 2018 09:11:57 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview" - ], - "Retry-After": [ - "15" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "9c48798b-89d6-44fb-8106-f5ed37545b3b" + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5576,29 +5570,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14913" + ], + "x-ms-request-id": [ + "0f08f6f7-c899-4e66-8b05-0fb83c9b4daf" ], "x-ms-correlation-request-id": [ - "7c24bbeb-5312-4e9f-b829-0678ec2e4a9d" + "0f08f6f7-c899-4e66-8b05-0fb83c9b4daf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082027Z:7c24bbeb-5312-4e9f-b829-0678ec2e4a9d" + "NORTHEUROPE:20180622T091157Z:0f08f6f7-c899-4e66-8b05-0fb83c9b4daf" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3Avb3BlcmF0aW9ucmVzdWx0cy81MTc0ZGViNDhkOTg0YjY5ODM5MzUzMjcwMmQ5M2U0OT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/start/operationresults/5c82b2db769d4047a9a9203092b6243c?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RhcnQvb3BlcmF0aW9ucmVzdWx0cy81YzgyYjJkYjc2OWQ0MDQ3YTlhOTIwMzA5MmI2MjQzYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory352\",\r\n \"state\": \"Started\",\r\n \"type\": \"Managed\",\r\n \"dataFactoryLocation\": null,\r\n \"resourceUri\": null,\r\n \"typeProperties\": {\r\n \"nodes\": [],\r\n \"otherErrors\": [],\r\n \"state\": \"Started\",\r\n \"createTime\": \"2018-06-22T08:48:55.9274916Z\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5610,7 +5607,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:42 GMT" + "Fri, 22 Jun 2018 09:11:57 GMT" ], "Pragma": [ "no-cache" @@ -5624,9 +5621,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "668f5d46-1073-40d6-a4e8-19841356ae01" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5637,29 +5631,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14912" + ], + "x-ms-request-id": [ + "f08e5aca-d926-4d5a-9d54-b77c81b1eeef" ], "x-ms-correlation-request-id": [ - "aac95d8e-87ac-4920-87ca-fa256f5c5f9d" + "f08e5aca-d926-4d5a-9d54-b77c81b1eeef" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082043Z:aac95d8e-87ac-4920-87ca-fa256f5c5f9d" + "NORTHEUROPE:20180622T091158Z:f08e5aca-d926-4d5a-9d54-b77c81b1eeef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/stop/operationresults/5174deb48d984b698393532702d93e49?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL3N0b3Avb3BlcmF0aW9ucmVzdWx0cy81MTc0ZGViNDhkOTg0YjY5ODM5MzUzMjcwMmQ5M2U0OT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/stop?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvc3RvcD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5a9b4a7f-ca7b-4aca-b677-a793400ffb01" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationruntimes/ssisazureintegrationruntime\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5671,7 +5674,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:42 GMT" + "Fri, 22 Jun 2018 09:11:59 GMT" ], "Pragma": [ "no-cache" @@ -5685,9 +5688,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "668f5d46-1073-40d6-a4e8-19841356ae01" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5697,36 +5697,39 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "5740c4f1-9bb2-4ee1-bc15-71c0b4652258" ], "x-ms-correlation-request-id": [ - "aac95d8e-87ac-4920-87ca-fa256f5c5f9d" + "5740c4f1-9bb2-4ee1-bc15-71c0b4652258" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082043Z:aac95d8e-87ac-4920-87ca-fa256f5c5f9d" + "NORTHEUROPE:20180622T091159Z:5740c4f1-9bb2-4ee1-bc15-71c0b4652258" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime/getStatus?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lL2dldFN0YXR1cz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime/getStatus?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWUvZ2V0U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df41839e-ba3f-449f-9498-04712b379189" + "a8010bda-5d3a-4a64-8862-cbb79c787d6d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory5569\",\r\n \"state\": \"Stopped\",\r\n \"iRType\": \"Managed\",\r\n \"type\": \"Managed\",\r\n \"dataFactoryLocation\": \"eastUS\",\r\n \"resourceUri\": \"/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationruntimes/ssisazureintegrationruntime\",\r\n \"typeProperties\": {}\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ssisazureintegrationruntime\",\r\n \"properties\": {\r\n \"dataFactoryName\": \"sdktestingfactory352\",\r\n \"state\": \"Stopped\",\r\n \"type\": \"Managed\",\r\n \"dataFactoryLocation\": \"WestUS\",\r\n \"resourceUri\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationruntimes/ssisazureintegrationruntime\",\r\n \"typeProperties\": {}\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5738,7 +5741,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:43 GMT" + "Fri, 22 Jun 2018 09:11:59 GMT" ], "Pragma": [ "no-cache" @@ -5752,9 +5755,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "df41839e-ba3f-449f-9498-04712b379189" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5765,32 +5765,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14911" + ], + "x-ms-request-id": [ + "13326532-db8c-4e0e-abfc-9e86764b3c60" ], "x-ms-correlation-request-id": [ - "6c3706e2-d688-471e-a9e4-0159702a3e17" + "13326532-db8c-4e0e-abfc-9e86764b3c60" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082044Z:6c3706e2-d688-471e-a9e4-0159702a3e17" + "NORTHEUROPE:20180622T091200Z:13326532-db8c-4e0e-abfc-9e86764b3c60" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0434e4c0-3497-4f2b-adfb-12b60477ceb6" + "40036072-182d-4e88-8d47-596408689f81" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5805,7 +5808,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:44 GMT" + "Fri, 22 Jun 2018 09:12:01 GMT" ], "Pragma": [ "no-cache" @@ -5813,9 +5816,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "0434e4c0-3497-4f2b-adfb-12b60477ceb6" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5825,33 +5825,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ee426b84-e407-4258-a651-7a89a14beec7" ], "x-ms-correlation-request-id": [ - "39af5363-af96-45e5-a4b6-b8dc52127cc2" + "ee426b84-e407-4258-a651-7a89a14beec7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082044Z:39af5363-af96-45e5-a4b6-b8dc52127cc2" + "NORTHEUROPE:20180622T091201Z:ee426b84-e407-4258-a651-7a89a14beec7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569/integrationRuntimes/ssisazureintegrationruntime?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5L2ludGVncmF0aW9uUnVudGltZXMvc3Npc2F6dXJlaW50ZWdyYXRpb25ydW50aW1lP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352/integrationRuntimes/ssisazureintegrationruntime?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTIvaW50ZWdyYXRpb25SdW50aW1lcy9zc2lzYXp1cmVpbnRlZ3JhdGlvbnJ1bnRpbWU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4aa7fac-877d-4039-93c9-e759b36d22c4" + "5c6012e9-5378-4c52-8b97-f5e25ba3cdd8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5863,7 +5866,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:44 GMT" + "Fri, 22 Jun 2018 09:12:02 GMT" ], "Pragma": [ "no-cache" @@ -5871,9 +5874,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "a4aa7fac-877d-4039-93c9-e759b36d22c4" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5883,33 +5883,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "ed818ad6-0c65-4d00-856b-e2d3bbc27df7" ], "x-ms-correlation-request-id": [ - "0d4e8ae5-dbc8-4b93-8393-18fb75b08e0b" + "ed818ad6-0c65-4d00-856b-e2d3bbc27df7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082045Z:0d4e8ae5-dbc8-4b93-8393-18fb75b08e0b" + "NORTHEUROPE:20180622T091202Z:ed818ad6-0c65-4d00-856b-e2d3bbc27df7" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourceGroups/sdktestingadfrg5335/providers/Microsoft.DataFactory/factories/sdktestingfactory5569?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1NTY5P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg5566/providers/Microsoft.DataFactory/factories/sdktestingfactory352?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkzNTI/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aaf1e24e-513a-427b-8d81-27f37f704b35" + "24f15ee5-5876-4b8d-9c6b-7be136083d95" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -5924,7 +5927,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:48 GMT" + "Fri, 22 Jun 2018 09:12:04 GMT" ], "Pragma": [ "no-cache" @@ -5932,9 +5935,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "aaf1e24e-513a-427b-8d81-27f37f704b35" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -5944,26 +5944,29 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "10908624-69c6-4431-afe5-c03cb2ee96a8" ], "x-ms-correlation-request-id": [ - "46a0d310-8e17-4bbc-ba61-28281de2567d" + "10908624-69c6-4431-afe5-c03cb2ee96a8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082048Z:46a0d310-8e17-4bbc-ba61-28281de2567d" + "NORTHEUROPE:20180622T091205Z:10908624-69c6-4431-afe5-c03cb2ee96a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/resourcegroups/sdktestingadfrg5335?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzUzMzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg5566?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzU1NjY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97c66beb-c48d-4b7f-8aca-2c3aa5d3023b" + "81722721-5964-409f-92fa-3070cf0f8052" ], "accept-language": [ "en-US" @@ -5985,38 +5988,41 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:20:52 GMT" + "Fri, 22 Jun 2018 09:12:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "c8370daa-0d49-4bfd-89bc-4325f598e282" + "73200576-0b49-4596-9d3f-28715df06d99" ], "x-ms-correlation-request-id": [ - "c8370daa-0d49-4bfd-89bc-4325f598e282" + "73200576-0b49-4596-9d3f-28715df06d99" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082052Z:c8370daa-0d49-4bfd-89bc-4325f598e282" + "NORTHEUROPE:20180622T091207Z:73200576-0b49-4596-9d3f-28715df06d99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFNek0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOVFkyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6037,38 +6043,41 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:21:07 GMT" + "Fri, 22 Jun 2018 09:12:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14999" ], "x-ms-request-id": [ - "181365b9-3e5f-4df2-8d09-5758d44b8d77" + "e8a9244f-81ea-4e26-b4b4-2e99461f6653" ], "x-ms-correlation-request-id": [ - "181365b9-3e5f-4df2-8d09-5758d44b8d77" + "e8a9244f-81ea-4e26-b4b4-2e99461f6653" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082108Z:181365b9-3e5f-4df2-8d09-5758d44b8d77" + "NORTHEUROPE:20180622T091223Z:e8a9244f-81ea-4e26-b4b4-2e99461f6653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFNek0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOVFkyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6089,38 +6098,41 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:21:23 GMT" + "Fri, 22 Jun 2018 09:12:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14998" ], "x-ms-request-id": [ - "65442bec-5633-4e95-9537-17015305f482" + "56232103-2a78-4066-a86f-52112b994fb0" ], "x-ms-correlation-request-id": [ - "65442bec-5633-4e95-9537-17015305f482" + "56232103-2a78-4066-a86f-52112b994fb0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082123Z:65442bec-5633-4e95-9537-17015305f482" + "NORTHEUROPE:20180622T091238Z:56232103-2a78-4066-a86f-52112b994fb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFNek0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOVFkyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6141,32 +6153,35 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:21:38 GMT" + "Fri, 22 Jun 2018 09:12:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14997" ], "x-ms-request-id": [ - "a213bf30-d3b2-4c2e-aac0-d9435567c839" + "1c3d59e4-45ce-4af1-85bb-0cd62a2c41f9" ], "x-ms-correlation-request-id": [ - "a213bf30-d3b2-4c2e-aac0-d9435567c839" + "1c3d59e4-45ce-4af1-85bb-0cd62a2c41f9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082139Z:a213bf30-d3b2-4c2e-aac0-d9435567c839" + "NORTHEUROPE:20180622T091254Z:1c3d59e4-45ce-4af1-85bb-0cd62a2c41f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b371d9e7-d3c2-4b1a-83ec-84e1f50c2222/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1MzM1LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM3MWQ5ZTctZDNjMi00YjFhLTgzZWMtODRlMWY1MGMyMjIyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFNek0xTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc1NTY2LVdFU1RFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Indlc3RldXJvcGUifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzFOVFkyTFZkRlUxUkZWVkpQVUVVaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUmxkWEp2Y0dVaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6187,25 +6202,28 @@ "no-cache" ], "Date": [ - "Thu, 16 Nov 2017 08:21:38 GMT" + "Fri, 22 Jun 2018 09:12:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14996" ], "x-ms-request-id": [ - "a213bf30-d3b2-4c2e-aac0-d9435567c839" + "17e33eae-f33f-4177-9e45-949255dc194f" ], "x-ms-correlation-request-id": [ - "a213bf30-d3b2-4c2e-aac0-d9435567c839" + "17e33eae-f33f-4177-9e45-949255dc194f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20171116T082139Z:a213bf30-d3b2-4c2e-aac0-d9435567c839" + "NORTHEUROPE:20180622T091254Z:17e33eae-f33f-4177-9e45-949255dc194f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -6213,11 +6231,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg5335", - "sdktestingfactory5569" + "sdktestingadfrg5566", + "sdktestingfactory352" ] }, "Variables": { - "SubscriptionId": "b371d9e7-d3c2-4b1a-83ec-84e1f50c2222" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.LinkedServiceScenarioTests/LinkedServiceCrud.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.LinkedServiceScenarioTests/LinkedServiceCrud.json index b5fbde58c393..5f6dc3723d13 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.LinkedServiceScenarioTests/LinkedServiceCrud.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.LinkedServiceScenarioTests/LinkedServiceCrud.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg822?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg9840?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "f662b40f-d9fd-4bb5-baba-e16a6879e86d" + "700beb4e-1d45-474c-8a5e-609ab48186a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822\",\r\n \"name\": \"sdktestingadfrg822\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840\",\r\n \"name\": \"sdktestingadfrg9840\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:39 GMT" + "Fri, 22 Jun 2018 03:44:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1080" + "1198" ], "x-ms-request-id": [ - "e30297cd-1fae-4688-96f7-33ad1a3e6a55" + "1140eb10-b0f7-409d-80ce-fe568dc8bf05" ], "x-ms-correlation-request-id": [ - "e30297cd-1fae-4688-96f7-33ad1a3e6a55" + "1140eb10-b0f7-409d-80ce-fe568dc8bf05" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001839Z:e30297cd-1fae-4688-96f7-33ad1a3e6a55" + "NORTHEUROPE:20180622T034412Z:1140eb10-b0f7-409d-80ce-fe568dc8bf05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDY/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "9577f428-ccd4-4871-832f-540aff08c28e" + "4d9b2e69-93db-435f-96da-7a1b680dce40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory778\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:18:42.8571795Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory506\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:44:14.8005997Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cf05-0000-0000-0000-5b2c708e0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:42 GMT" + "Fri, 22 Jun 2018 03:44:15 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "9577f428-ccd4-4871-832f-540aff08c28e" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,35 +123,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1078" + "1184" + ], + "x-ms-request-id": [ + "46dfc6bc-6626-4817-bac3-04f2b182ea1b" ], "x-ms-correlation-request-id": [ - "fc9a531a-38ff-4bcd-bf2f-7ea00a52ced3" + "46dfc6bc-6626-4817-bac3-04f2b182ea1b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001842Z:fc9a531a-38ff-4bcd-bf2f-7ea00a52ced3" + "NORTHEUROPE:20180622T034415Z:46dfc6bc-6626-4817-bac3-04f2b182ea1b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDY/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4dff562-111e-4f95-8713-b82c4e1494fa" + "3f56a78f-02e8-4a33-9c2c-c3fcb9da9fba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory778\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:18:42.8571795Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory506\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:44:14.8005997Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cf05-0000-0000-0000-5b2c708e0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:42 GMT" + "Fri, 22 Jun 2018 03:44:15 GMT" ], "Pragma": [ "no-cache" @@ -177,9 +180,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "b4dff562-111e-4f95-8713-b82c4e1494fa" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -190,35 +190,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14972" + ], + "x-ms-request-id": [ + "1d7b0d24-29ba-4d1a-b755-0d1619311a81" ], "x-ms-correlation-request-id": [ - "8a93ca0b-2c6b-4bfe-b371-01924d091682" + "1d7b0d24-29ba-4d1a-b755-0d1619311a81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001842Z:8a93ca0b-2c6b-4bfe-b371-01924d091682" + "NORTHEUROPE:20180622T034415Z:1d7b0d24-29ba-4d1a-b755-0d1619311a81" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb9047fb-abaa-4f59-8dcf-a5cc27f1c71c" + "7ca4ca65-f81e-42db-90ae-950d13039253" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory778\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:18:42.8571795Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sdktestingfactory506\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:44:14.8005997Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000cf05-0000-0000-0000-5b2c708e0000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -230,7 +233,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:42 GMT" + "Fri, 22 Jun 2018 03:44:15 GMT" ], "Pragma": [ "no-cache" @@ -244,9 +247,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "bb9047fb-abaa-4f59-8dcf-a5cc27f1c71c" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -257,20 +257,23 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "14971" + ], + "x-ms-request-id": [ + "fc949baf-e98e-4b65-98b1-57937a22bd65" ], "x-ms-correlation-request-id": [ - "910a1e00-ed4c-444c-9952-f918556073c5" + "fc949baf-e98e-4b65-98b1-57937a22bd65" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001843Z:910a1e00-ed4c-444c-9952-f918556073c5" + "NORTHEUROPE:20180622T034415Z:fc949baf-e98e-4b65-98b1-57937a22bd65" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OC9saW5rZWRzZXJ2aWNlcy9UZXN0RGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDYvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -281,17 +284,17 @@ "159" ], "x-ms-client-request-id": [ - "87d3a22b-3a99-4d02-acee-f03acac0eb84" + "7354d1bd-eb31-4878-a4ea-b74c8f73e0a0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"5b006687-0000-0000-0000-5a14c2630000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"7000c6bf-0000-0000-0000-5b2c70900000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -303,7 +306,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:42 GMT" + "Fri, 22 Jun 2018 03:44:16 GMT" ], "Pragma": [ "no-cache" @@ -317,9 +320,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "87d3a22b-3a99-4d02-acee-f03acac0eb84" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -330,35 +330,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1077" + "1183" + ], + "x-ms-request-id": [ + "a4986518-2243-42a9-896b-946b03eda328" ], "x-ms-correlation-request-id": [ - "f4d0cee8-e32a-4e16-bea9-75feaf1f2804" + "a4986518-2243-42a9-896b-946b03eda328" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001843Z:f4d0cee8-e32a-4e16-bea9-75feaf1f2804" + "NORTHEUROPE:20180622T034416Z:a4986518-2243-42a9-896b-946b03eda328" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OC9saW5rZWRzZXJ2aWNlcy9UZXN0RGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDYvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1afcc6dd-0c18-4332-bccd-3030f542d14b" + "a51191c9-a983-40f1-bc3a-125f2556825e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"5b006687-0000-0000-0000-5a14c2630000\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"7000c6bf-0000-0000-0000-5b2c70900000\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -370,7 +373,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:42 GMT" + "Fri, 22 Jun 2018 03:44:16 GMT" ], "Pragma": [ "no-cache" @@ -384,9 +387,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "1afcc6dd-0c18-4332-bccd-3030f542d14b" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -397,35 +397,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14970" + ], + "x-ms-request-id": [ + "5ed67fc2-b633-4119-b770-b18a55e4105b" ], "x-ms-correlation-request-id": [ - "be33c77e-e687-4251-a2ae-ec83cf6e2c01" + "5ed67fc2-b633-4119-b770-b18a55e4105b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001843Z:be33c77e-e687-4251-a2ae-ec83cf6e2c01" + "NORTHEUROPE:20180622T034417Z:5ed67fc2-b633-4119-b770-b18a55e4105b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OC9saW5rZWRzZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDYvbGlua2Vkc2VydmljZXM/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91afed64-f2b1-46e9-9d2e-30a7c2c48ed9" + "b98ca7b7-2464-4070-a3a9-006553cf0cc7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"5b006687-0000-0000-0000-5a14c2630000\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices/TestDataLakeStore\",\r\n \"name\": \"TestDataLakeStore\",\r\n \"type\": \"Microsoft.DataFactory/factories/linkedservices\",\r\n \"properties\": {\r\n \"type\": \"AzureDataLakeStore\",\r\n \"typeProperties\": {\r\n \"dataLakeStoreUri\": \"adl://test.azuredatalakestore.net/\"\r\n }\r\n },\r\n \"etag\": \"7000c6bf-0000-0000-0000-5b2c70900000\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -437,7 +440,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:43 GMT" + "Fri, 22 Jun 2018 03:44:16 GMT" ], "Pragma": [ "no-cache" @@ -451,9 +454,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "91afed64-f2b1-46e9-9d2e-30a7c2c48ed9" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -464,32 +464,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14695" + "14969" + ], + "x-ms-request-id": [ + "026dbbca-e9fc-435e-9105-b0704f3f8080" ], "x-ms-correlation-request-id": [ - "d67ef707-0926-4165-a584-75779b3c4876" + "026dbbca-e9fc-435e-9105-b0704f3f8080" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001843Z:d67ef707-0926-4165-a584-75779b3c4876" + "NORTHEUROPE:20180622T034417Z:026dbbca-e9fc-435e-9105-b0704f3f8080" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778/linkedservices/TestDataLakeStore?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OC9saW5rZWRzZXJ2aWNlcy9UZXN0RGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506/linkedservices/TestDataLakeStore?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDYvbGlua2Vkc2VydmljZXMvVGVzdERhdGFMYWtlU3RvcmU/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e20a913d-ab80-4fc4-83cc-de0e9cefecfb" + "71982342-37de-4d53-a671-4c8eae4b6433" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -504,7 +507,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:43 GMT" + "Fri, 22 Jun 2018 03:44:17 GMT" ], "Pragma": [ "no-cache" @@ -512,9 +515,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "e20a913d-ab80-4fc4-83cc-de0e9cefecfb" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -524,33 +524,36 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1076" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14983" + ], + "x-ms-request-id": [ + "0ccb1e65-1c53-4529-8fc8-20b9e23184be" ], "x-ms-correlation-request-id": [ - "90f38766-0223-4c40-a13e-1c181edb7533" + "0ccb1e65-1c53-4529-8fc8-20b9e23184be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001844Z:90f38766-0223-4c40-a13e-1c181edb7533" + "NORTHEUROPE:20180622T034417Z:0ccb1e65-1c53-4529-8fc8-20b9e23184be" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg822/providers/Microsoft.DataFactory/factories/sdktestingfactory778?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9zZGt0ZXN0aW5nZmFjdG9yeTc3OD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg9840/providers/Microsoft.DataFactory/factories/sdktestingfactory506?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk1MDY/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79794403-e6aa-44c8-ac47-f649e4c0993d" + "7586259a-70d0-49e3-b7d3-804ea1fce2c3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -565,7 +568,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:45 GMT" + "Fri, 22 Jun 2018 03:44:18 GMT" ], "Pragma": [ "no-cache" @@ -573,9 +576,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "79794403-e6aa-44c8-ac47-f649e4c0993d" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -585,32 +585,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1075" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14982" + ], + "x-ms-request-id": [ + "6d7abe76-e127-4e35-88d4-dadb810a8481" ], "x-ms-correlation-request-id": [ - "4ec1f8a7-1c52-48de-a88a-e6fd19580ed9" + "6d7abe76-e127-4e35-88d4-dadb810a8481" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001845Z:4ec1f8a7-1c52-48de-a88a-e6fd19580ed9" + "NORTHEUROPE:20180622T034419Z:6d7abe76-e127-4e35-88d4-dadb810a8481" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg822?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzgyMj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg9840?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzk4NDA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b71bb47-8a92-40f3-a46d-4e5420682623" + "df675b72-92c2-4ea7-9076-5178bb935dff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -626,43 +629,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:18:46 GMT" + "Fri, 22 Jun 2018 03:44:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1079" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" ], "x-ms-request-id": [ - "2dbf0e3e-d2e6-433e-b997-2447260354d1" + "3fadd3a9-e178-4e2a-b21b-1ed6a466079c" ], "x-ms-correlation-request-id": [ - "2dbf0e3e-d2e6-433e-b997-2447260354d1" + "3fadd3a9-e178-4e2a-b21b-1ed6a466079c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001847Z:2dbf0e3e-d2e6-433e-b997-2447260354d1" + "NORTHEUROPE:20180622T034421Z:3fadd3a9-e178-4e2a-b21b-1ed6a466079c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRNakl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVPRFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -678,43 +684,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:02 GMT" + "Fri, 22 Jun 2018 03:44:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14640" + "14999" ], "x-ms-request-id": [ - "d021d1c9-2cbc-4495-96d8-af899d017e53" + "d745047f-219f-4746-b0ce-118ee9d28a98" ], "x-ms-correlation-request-id": [ - "d021d1c9-2cbc-4495-96d8-af899d017e53" + "d745047f-219f-4746-b0ce-118ee9d28a98" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001902Z:d021d1c9-2cbc-4495-96d8-af899d017e53" + "NORTHEUROPE:20180622T034436Z:d745047f-219f-4746-b0ce-118ee9d28a98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRNakl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVPRFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -730,43 +739,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:17 GMT" + "Fri, 22 Jun 2018 03:44:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14638" + "14998" ], "x-ms-request-id": [ - "4ee8e396-7864-41d5-a5f1-f03a8af7ccb0" + "ea6d1e4b-a8a7-4e0a-af92-a7329e3a5d7e" ], "x-ms-correlation-request-id": [ - "4ee8e396-7864-41d5-a5f1-f03a8af7ccb0" + "ea6d1e4b-a8a7-4e0a-af92-a7329e3a5d7e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001917Z:4ee8e396-7864-41d5-a5f1-f03a8af7ccb0" + "NORTHEUROPE:20180622T034451Z:ea6d1e4b-a8a7-4e0a-af92-a7329e3a5d7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRNakl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVPRFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -782,37 +794,40 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:32 GMT" + "Fri, 22 Jun 2018 03:45:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14637" + "14997" ], "x-ms-request-id": [ - "7178a310-7a00-4d5f-94d4-319d57dfa49f" + "50d9ea4e-4bf9-4947-9308-e4278cc4cb56" ], "x-ms-correlation-request-id": [ - "7178a310-7a00-4d5f-94d4-319d57dfa49f" + "50d9ea4e-4bf9-4947-9308-e4278cc4cb56" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001933Z:7178a310-7a00-4d5f-94d4-319d57dfa49f" + "NORTHEUROPE:20180622T034507Z:50d9ea4e-4bf9-4947-9308-e4278cc4cb56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc4MjItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzRNakl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc5ODQwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzVPRFF3TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -828,25 +843,28 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:19:32 GMT" + "Fri, 22 Jun 2018 03:45:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14637" + "14996" ], "x-ms-request-id": [ - "7178a310-7a00-4d5f-94d4-319d57dfa49f" + "0ec408a4-7f8d-4543-901c-e9002f204b99" ], "x-ms-correlation-request-id": [ - "7178a310-7a00-4d5f-94d4-319d57dfa49f" + "0ec408a4-7f8d-4543-901c-e9002f204b99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001933Z:7178a310-7a00-4d5f-94d4-319d57dfa49f" + "NORTHEUROPE:20180622T034507Z:0ec408a4-7f8d-4543-901c-e9002f204b99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -854,11 +872,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg822", - "sdktestingfactory778" + "sdktestingadfrg9840", + "sdktestingfactory506" ] }, "Variables": { - "SubscriptionId": "876407bb-5bd3-45c4-9c07-cd74a964b2fc" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.PipelineRunScenarioTests/CancelPipelineRun.json b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.PipelineRunScenarioTests/CancelPipelineRun.json index ab3143ce5f84..12173b6d602e 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.PipelineRunScenarioTests/CancelPipelineRun.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/SessionRecords/DataFactory.Tests.ScenarioTests.PipelineRunScenarioTests/CancelPipelineRun.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg1262?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzEyNjI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg4296?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQyOTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "f34c41ee-3686-4eb9-88f4-fdc3e8ec7c04" + "ac07245a-1f9c-4848-b38b-3e0a41202572" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg1262\",\r\n \"name\": \"sdktestingadfrg1262\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4296\",\r\n \"name\": \"sdktestingadfrg4296\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "192" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,53 +38,56 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:16:29 GMT" + "Fri, 22 Jun 2018 03:43:14 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1085" + "1190" ], "x-ms-request-id": [ - "10960a8b-7aca-4e05-8167-ae8a74b6679e" + "6d384ae1-03fc-4814-be63-fcf080a05102" ], "x-ms-correlation-request-id": [ - "10960a8b-7aca-4e05-8167-ae8a74b6679e" + "6d384ae1-03fc-4814-be63-fcf080a05102" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001629Z:10960a8b-7aca-4e05-8167-ae8a74b6679e" + "NORTHEUROPE:20180622T034314Z:6d384ae1-03fc-4814-be63-fcf080a05102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg1262/providers/Microsoft.DataFactory/factories/sdktestingfactory1081?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzEyNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMDgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4296/providers/Microsoft.DataFactory/factories/sdktestingfactory4535?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0NTM1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "29" ], "x-ms-client-request-id": [ - "ef16f306-573b-451f-aa94-d1ebfdeb7fab" + "d65741f9-cf3d-4c2a-af1f-619d95a717d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sdktestingfactory1081\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loggingStorageAccountKey\": \"**********\",\r\n \"createTime\": \"2017-11-22T00:16:32.4020753Z\",\r\n \"version\": \"2017-09-01-preview\"\r\n },\r\n \"id\": \"/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg1262/providers/Microsoft.DataFactory/factories/sdktestingfactory1081\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"East US 2\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sdktestingfactory4535\",\r\n \"id\": \"/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4296/providers/Microsoft.DataFactory/factories/sdktestingfactory4535\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2018-06-22T03:43:16.5607787Z\",\r\n \"version\": \"2018-06-01\",\r\n \"defaults\": {}\r\n },\r\n \"eTag\": \"\\\"0000ce05-0000-0000-0000-5b2c70540000\\\"\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -96,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:16:32 GMT" + "Fri, 22 Jun 2018 03:43:16 GMT" ], "Pragma": [ "no-cache" @@ -110,9 +113,6 @@ "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "ef16f306-573b-451f-aa94-d1ebfdeb7fab" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -123,38 +123,41 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1186" + ], + "x-ms-request-id": [ + "0462625c-8bd9-4ad0-8adc-8dc008b85600" ], "x-ms-correlation-request-id": [ - "6097e346-1ff6-466f-8c77-f7fbb9d3fd9b" + "0462625c-8bd9-4ad0-8adc-8dc008b85600" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001632Z:6097e346-1ff6-466f-8c77-f7fbb9d3fd9b" + "NORTHEUROPE:20180622T034317Z:0462625c-8bd9-4ad0-8adc-8dc008b85600" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg1262/providers/Microsoft.DataFactory/factories/sdktestingfactory1081/cancelpipelinerun/efbe5443-9879-4495-94a6-4d7c394133ad?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzEyNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMDgxL2NhbmNlbHBpcGVsaW5lcnVuL2VmYmU1NDQzLTk4NzktNDQ5NS05NGE2LTRkN2MzOTQxMzNhZD9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4296/providers/Microsoft.DataFactory/factories/sdktestingfactory4535/pipelineruns/efbe5443-9879-4495-94a6-4d7c394133ad/cancel?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0NTM1L3BpcGVsaW5lcnVucy9lZmJlNTQ0My05ODc5LTQ0OTUtOTRhNi00ZDdjMzk0MTMzYWQvY2FuY2VsP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d401b1bb-fa8c-450f-b464-4cb93165be5a" + "eb1963e5-1ce2-42c9-ae55-fe1d2e14c86c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"BadRequest\",\r\n \"message\": \"Pipeline run does not exist\",\r\n \"target\": \"cancelPipelineRun/efbe5443-9879-4495-94a6-4d7c394133ad\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ReferencedPipelineRunNotFound\",\r\n \"message\": \"Referenced pipeline run id efbe5443-9879-4495-94a6-4d7c394133ad does not exist.\",\r\n \"target\": \"pipelinerun\",\r\n \"details\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "127" + "180" ], "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +169,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:16:32 GMT" + "Fri, 22 Jun 2018 03:43:17 GMT" ], "Pragma": [ "no-cache" @@ -174,9 +177,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "d401b1bb-fa8c-450f-b464-4cb93165be5a" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -187,32 +187,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1185" + ], + "x-ms-request-id": [ + "e2559e67-e1a9-4c9b-9433-da6781fbb4d5" ], "x-ms-correlation-request-id": [ - "03be4461-1800-43ee-b960-99e16d0b1d62" + "e2559e67-e1a9-4c9b-9433-da6781fbb4d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001632Z:03be4461-1800-43ee-b960-99e16d0b1d62" + "NORTHEUROPE:20180622T034317Z:e2559e67-e1a9-4c9b-9433-da6781fbb4d5" ] }, "StatusCode": 400 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourceGroups/sdktestingadfrg1262/providers/Microsoft.DataFactory/factories/sdktestingfactory1081?api-version=2017-09-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzEyNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3RvcnkxMDgxP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourceGroups/sdktestingadfrg4296/providers/Microsoft.DataFactory/factories/sdktestingfactory4535?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhRmFjdG9yeS9mYWN0b3JpZXMvc2RrdGVzdGluZ2ZhY3Rvcnk0NTM1P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae91be8a-aa4b-4d58-9ba7-f05da1502890" + "2ae2b74e-eaeb-40e2-901f-7f5969075068" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.2.1.0" + "FxVersion/4.6.26201.01", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/0.8.0.0" ] }, "ResponseBody": "", @@ -227,7 +230,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:16:34 GMT" + "Fri, 22 Jun 2018 03:43:18 GMT" ], "Pragma": [ "no-cache" @@ -235,9 +238,6 @@ "Server": [ "Microsoft-IIS/8.5" ], - "x-ms-request-id": [ - "ae91be8a-aa4b-4d58-9ba7-f05da1502890" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -247,32 +247,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14984" + ], + "x-ms-request-id": [ + "209612f1-2d3f-4a31-a9c6-78b60539e2e7" ], "x-ms-correlation-request-id": [ - "5082385a-6b50-4d29-b83b-0fd1e233b2bc" + "209612f1-2d3f-4a31-a9c6-78b60539e2e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001634Z:5082385a-6b50-4d29-b83b-0fd1e233b2bc" + "NORTHEUROPE:20180622T034319Z:209612f1-2d3f-4a31-a9c6-78b60539e2e7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/resourcegroups/sdktestingadfrg1262?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzEyNjI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/resourcegroups/sdktestingadfrg4296?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RpbmdhZGZyZzQyOTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "427778f0-78f5-40cd-9ad0-8dfbe1f7197a" + "eed6118a-3c47-4faf-9ae6-49454c77d21d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -288,43 +291,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:16:35 GMT" + "Fri, 22 Jun 2018 03:43:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1084" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14992" ], "x-ms-request-id": [ - "a1c2cb76-0f56-4b8e-b23f-1b603dedaf98" + "71f31a13-0076-4996-a3aa-933e7ae022b2" ], "x-ms-correlation-request-id": [ - "a1c2cb76-0f56-4b8e-b23f-1b603dedaf98" + "71f31a13-0076-4996-a3aa-933e7ae022b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001636Z:a1c2cb76-0f56-4b8e-b23f-1b603dedaf98" + "NORTHEUROPE:20180622T034321Z:71f31a13-0076-4996-a3aa-933e7ae022b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNall5TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNamsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -340,43 +346,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:16:50 GMT" + "Fri, 22 Jun 2018 03:43:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" + "14987" ], "x-ms-request-id": [ - "36bf5052-d451-49ba-b07b-e01f16fc60a3" + "cdf6ac6f-cc23-424d-bf5d-8479d29d3403" ], "x-ms-correlation-request-id": [ - "36bf5052-d451-49ba-b07b-e01f16fc60a3" + "cdf6ac6f-cc23-424d-bf5d-8479d29d3403" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001651Z:36bf5052-d451-49ba-b07b-e01f16fc60a3" + "NORTHEUROPE:20180622T034336Z:cdf6ac6f-cc23-424d-bf5d-8479d29d3403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNall5TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNamsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -392,43 +401,46 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:06 GMT" + "Fri, 22 Jun 2018 03:43:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://api-dogfood.resources.windows-int.net/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14986" ], "x-ms-request-id": [ - "4f2007f2-6b9f-4cd9-9088-7bbfd13712bf" + "3d914a70-0bb0-4a4a-8af7-4de7dfdcba7e" ], "x-ms-correlation-request-id": [ - "4f2007f2-6b9f-4cd9-9088-7bbfd13712bf" + "3d914a70-0bb0-4a4a-8af7-4de7dfdcba7e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001706Z:4f2007f2-6b9f-4cd9-9088-7bbfd13712bf" + "NORTHEUROPE:20180622T034351Z:3d914a70-0bb0-4a4a-8af7-4de7dfdcba7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNall5TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNamsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -444,37 +456,40 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:21 GMT" + "Fri, 22 Jun 2018 03:44:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14985" ], "x-ms-request-id": [ - "be64eff7-c22f-49ed-803c-7511c1e5fbc3" + "a7b7c9ef-9414-4bb7-8eab-1b3251945e6a" ], "x-ms-correlation-request-id": [ - "be64eff7-c22f-49ed-803c-7511c1e5fbc3" + "a7b7c9ef-9414-4bb7-8eab-1b3251945e6a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001722Z:be64eff7-c22f-49ed-803c-7511c1e5fbc3" + "NORTHEUROPE:20180622T034407Z:a7b7c9ef-9414-4bb7-8eab-1b3251945e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/876407bb-5bd3-45c4-9c07-cd74a964b2fc/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkcxMjYyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODc2NDA3YmItNWJkMy00NWM0LTljMDctY2Q3NGE5NjRiMmZjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrY3hNall5TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/c39dce18-cead-4065-8fb1-3af7683a5038/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TREtURVNUSU5HQURGUkc0Mjk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzM5ZGNlMTgtY2VhZC00MDY1LThmYjEtM2FmNzY4M2E1MDM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUkV0VVJWTlVTVTVIUVVSR1VrYzBNamsyTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26201.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -490,25 +505,28 @@ "no-cache" ], "Date": [ - "Wed, 22 Nov 2017 00:17:21 GMT" + "Fri, 22 Jun 2018 03:44:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" + "14984" ], "x-ms-request-id": [ - "be64eff7-c22f-49ed-803c-7511c1e5fbc3" + "9983d3ae-93f1-41e9-8b09-45d8866b8355" ], "x-ms-correlation-request-id": [ - "be64eff7-c22f-49ed-803c-7511c1e5fbc3" + "9983d3ae-93f1-41e9-8b09-45d8866b8355" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171122T001722Z:be64eff7-c22f-49ed-803c-7511c1e5fbc3" + "NORTHEUROPE:20180622T034407Z:9983d3ae-93f1-41e9-8b09-45d8866b8355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "StatusCode": 200 @@ -516,11 +534,11 @@ ], "Names": { "RunTest": [ - "sdktestingadfrg1262", - "sdktestingfactory1081" + "sdktestingadfrg4296", + "sdktestingfactory4535" ] }, "Variables": { - "SubscriptionId": "876407bb-5bd3-45c4-9c07-cd74a964b2fc" + "SubscriptionId": "c39dce18-cead-4065-8fb1-3af7683a5038" } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/ActivityRuns_ListByPipelineRun.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/ActivityRuns_ListByPipelineRun.json deleted file mode 100644 index 82d03d859567..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/ActivityRuns_ListByPipelineRun.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "runId": "a420e4fd-ebe9-4758-8db7-852b4d06245e", - "startTime": "2017-09-13T17%3A54%3A57.0811551Z", - "endTime": "2017-09-13T18%3A07%3A59.6211018Z", - "status": null, - "activityName": null, - "linkedServiceName": null, - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Wed, 13 Sep 2017 17:58:20 GMT", - "x-ms-request-id": "016fce3e-f314-49ef-ac45-b10e494f1638", - "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14910", - "x-ms-correlation-request-id": "4ac11d09-28a5-405c-927b-88f1052fd56e" - }, - "body": { - "value": [ - { - "activityRunEnd": "2017-09-13T17:56:24.580131Z", - "activityName": "ExampleForeachActivity", - "activityRunStart": "2017-09-13T17:56:00.0758597Z", - "activityType": "ForEach", - "durationInMs": 24504, - "error": { - "errorCode": "", - "message": "", - "failureType": "", - "target": "ExampleForeachActivity" - }, - "activityRunId": "c80e9e66-3c32-4f79-a3bb-1677599e3bcd", - "input": { - "isSequential": true, - "items": "@pipeline().parameters.OutputBlobNameList", - "activities": [ - { - "type": "Copy", - "typeProperties": { - "source": { - "type": "BlobSource" - }, - "sink": { - "type": "BlobSink" - } - }, - "inputs": [ - { - "referenceName": "exampleDataset", - "parameters": { - "MyFolderPath": "examplecontainer", - "MyFileName": "examplecontainer.csv" - }, - "type": "DatasetReference" - } - ], - "outputs": [ - { - "referenceName": "exampleDataset", - "parameters": { - "MyFolderPath": "examplecontainer", - "MyFileName": "@item()" - }, - "type": "DatasetReference" - } - ], - "name": "ExampleCopyActivity" - } - ] - }, - "linkedServiceName": "", - "output": {}, - "pipelineName": "examplePipeline", - "pipelineRunId": "a420e4fd-ebe9-4758-8db7-852b4d06245e", - "status": "Succeeded" - }, - { - "activityRunEnd": "2017-09-13T17:56:20.0331458Z", - "activityName": "ExampleCopyActivity", - "activityRunStart": "2017-09-13T17:56:01.1719894Z", - "activityType": "Copy", - "durationInMs": 18861, - "error": { - "errorCode": "", - "message": "", - "failureType": "", - "target": "ExampleCopyActivity" - }, - "activityRunId": "b8bee996-143b-4f20-ace1-307cc1a0d75d", - "input": { - "source": { - "type": "BlobSource" - }, - "sink": { - "type": "BlobSink" - } - }, - "linkedServiceName": "", - "output": { - "dataRead": 142000, - "dataWritten": 142000, - "copyDuration": 4, - "throughput": 34.66797, - "errors": [] - }, - "pipelineName": "examplePipeline", - "pipelineRunId": "a420e4fd-ebe9-4758-8db7-852b4d06245e", - "status": "Succeeded" - } - ] - } - } - } -} diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/ActivityRuns_QueryByPipelineRun.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/ActivityRuns_QueryByPipelineRun.json new file mode 100644 index 000000000000..fe9db3793a6a --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/ActivityRuns_QueryByPipelineRun.json @@ -0,0 +1,110 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "resourceGroupName": "exampleResourceGroup", + "factoryName": "exampleFactoryName", + "runId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b", + "filterParameters": { + "lastUpdatedAfter": "2018-06-16T00:36:44.3345758Z", + "lastUpdatedBefore": "2018-06-16T00:49:48.3686473Z" + }, + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Sat, 16 Jun 2018 00:40:13 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "5465cf41-2e71-4ce6-8db4-9de1b92ffda9", + "x-ms-correlation-request-id": "5465cf41-2e71-4ce6-8db4-9de1b92ffda9" + }, + "body": { + "value": [ + { + "activityRunEnd": "2018-06-16T00:38:11.5445431Z", + "activityName": "ExampleForeachActivity", + "activityRunStart": "2018-06-16T00:37:49.4804925Z", + "activityType": "ForEach", + "durationInMs": 22064, + "retryAttempt": null, + "error": { + "errorCode": "", + "message": "", + "failureType": "", + "target": "ExampleForeachActivity" + }, + "activityRunId": "f30c5514-fb85-43ed-9fa4-768d42e58680", + "input": {}, + "linkedServiceName": "", + "output": {}, + "userProperties": {}, + "pipelineName": "examplePipeline", + "pipelineRunId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b", + "status": "Succeeded" + }, + { + "activityRunEnd": "2018-06-16T00:38:07.4188923Z", + "activityName": "ExampleCopyActivity", + "activityRunStart": "2018-06-16T00:37:50.2460952Z", + "activityType": "Copy", + "durationInMs": 17172, + "retryAttempt": null, + "error": { + "errorCode": "", + "message": "", + "failureType": "", + "target": "ExampleCopyActivity" + }, + "activityRunId": "a96678c8-7167-4f00-b629-afccfbad4e51", + "input": { + "source": { + "type": "BlobSource" + }, + "sink": { + "type": "BlobSink" + }, + "dataIntegrationUnits": 32 + }, + "linkedServiceName": "", + "output": { + "dataRead": 142000, + "dataWritten": 142000, + "filesRead": 1, + "filesWritten": 1, + "copyDuration": 6, + "throughput": 23.112, + "errors": [], + "effectiveIntegrationRuntime": "DefaultIntegrationRuntime (East US)", + "usedCloudDataMovementUnits": 4, + "usedParallelCopies": 1, + "executionDetails": [ + { + "source": { + "type": "AzureBlob" + }, + "sink": { + "type": "AzureBlob" + }, + "status": "Succeeded", + "start": "2018-06-16T00:37:50.68834Z", + "duration": 6, + "usedCloudDataMovementUnits": 4, + "usedParallelCopies": 1, + "detailedDurations": { + "queuingDuration": 4, + "transferDuration": 2 + } + } + ] + }, + "userProperties": {}, + "pipelineName": "examplePipeline", + "pipelineRunId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b", + "status": "Succeeded" + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Create.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Create.json index 5c2375cd5ea4..fb0244650aa1 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Create.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Create.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "datasetName": "exampleDataset", @@ -35,20 +35,21 @@ } } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:54 GMT", - "x-ms-request-id": "a8bb197f-b00f-4add-a847-59f6aa0315ab", + "Date": "Sat, 16 Jun 2018 00:37:38 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-correlation-request-id": "acdb3257-c6cb-44f1-8e14-afa3ebf471fa" + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "ce95d6dd-c04d-4b02-b7ad-fe79c9b26df0", + "x-ms-correlation-request-id": "ce95d6dd-c04d-4b02-b7ad-fe79c9b26df0" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", "name": "exampleDataset", + "type": "Microsoft.DataFactory/factories/datasets", "properties": { "type": "AzureBlob", "typeProperties": { @@ -77,7 +78,7 @@ } } }, - "etag": "28031ea7-0000-0000-0000-59b9712a0000" + "etag": "0a0066d4-0000-0000-0000-5b245bd20000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Delete.json index 01acf52d92e9..c6053fe39891 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Delete.json @@ -1,29 +1,29 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "datasetName": "exampleDataset", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:27 GMT", - "x-ms-request-id": "70d3cf1f-bf14-40f5-bb56-1550a317ce8b", + "Date": "Sat, 16 Jun 2018 00:46:28 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-correlation-request-id": "d56bf687-df32-4313-87ec-ff22ba9bd192" + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "586c27ed-d96c-42eb-8336-a077ef7e8358", + "x-ms-correlation-request-id": "586c27ed-d96c-42eb-8336-a077ef7e8358" }, "body": null }, "204": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:27 GMT", - "x-ms-request-id": "a2347ff3-4018-4815-b58a-9fbe3cdcab52", + "Date": "Sat, 16 Jun 2018 00:46:28 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-correlation-request-id": "9b926944-88d9-4d77-b1a8-5540c803f933" + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "18f08a60-3963-4a85-9db9-5122fad759ae", + "x-ms-correlation-request-id": "18f08a60-3963-4a85-9db9-5122fad759ae" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Get.json index 01cdd9af81fe..90ecfb7b3b95 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Get.json @@ -1,23 +1,25 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "datasetName": "exampleDataset", - "api-version": "2017-09-01-preview" + "ifNoneMatch": null, + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:55 GMT", - "x-ms-request-id": "a60fc528-1652-4619-9477-f00ab05e9a24", + "Date": "Sat, 16 Jun 2018 00:37:40 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14912", - "x-ms-correlation-request-id": "949f7936-4ad4-49bc-8d2a-5f56a8938fba" + "x-ms-ratelimit-remaining-subscription-reads": "14993", + "x-ms-request-id": "19ef529d-6aac-4997-a6af-87cdc02e88c5", + "x-ms-correlation-request-id": "19ef529d-6aac-4997-a6af-87cdc02e88c5" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", "name": "exampleDataset", + "type": "Microsoft.DataFactory/factories/datasets", "properties": { "type": "AzureBlob", "typeProperties": { @@ -47,7 +49,7 @@ } } }, - "etag": "280320a7-0000-0000-0000-59b9712a0000" + "etag": "0a0068d4-0000-0000-0000-5b245bd30000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_ListByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_ListByFactory.json index 70d4c0c3a340..62f89924db05 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_ListByFactory.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_ListByFactory.json @@ -1,24 +1,25 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:55 GMT", - "x-ms-request-id": "624b9e0f-5b8e-4a08-8ff3-ead24e96658f", + "Date": "Sat, 16 Jun 2018 00:37:40 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14911", - "x-ms-correlation-request-id": "babd0c35-621b-4c3e-bc19-7e84ff1153e7" + "x-ms-ratelimit-remaining-subscription-reads": "14992", + "x-ms-request-id": "341c9ece-5062-448b-be98-3ccbf476ed5d", + "x-ms-correlation-request-id": "341c9ece-5062-448b-be98-3ccbf476ed5d" }, "body": { "value": [ { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", "name": "exampleDataset", + "type": "Microsoft.DataFactory/factories/datasets", "properties": { "type": "AzureBlob", "typeProperties": { @@ -48,7 +49,7 @@ } } }, - "etag": "280320a7-0000-0000-0000-59b9712a0000" + "etag": "0a0068d4-0000-0000-0000-5b245bd30000" } ] } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Update.json index be928edcaddc..ca71bc4482ba 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Datasets_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "datasetName": "exampleDataset", @@ -36,20 +36,21 @@ } } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:54 GMT", - "x-ms-request-id": "76cfa027-3792-424b-ae2b-ddcafe7034be", + "Date": "Sat, 16 Jun 2018 00:37:39 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-correlation-request-id": "f3e7273d-9f29-4b0c-94bd-c3d13dec47ca" + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "e2e7f6be-e7ee-4aae-943f-6ff799e034f2", + "x-ms-correlation-request-id": "e2e7f6be-e7ee-4aae-943f-6ff799e034f2" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset", "name": "exampleDataset", + "type": "Microsoft.DataFactory/factories/datasets", "properties": { "type": "AzureBlob", "typeProperties": { @@ -79,7 +80,7 @@ } } }, - "etag": "280320a7-0000-0000-0000-59b9712a0000" + "etag": "0a0068d4-0000-0000-0000-5b245bd30000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CancelPipelineRun.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CancelPipelineRun.json deleted file mode 100644 index 5b03267619e1..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CancelPipelineRun.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "runId": "39692ed9-c722-4d33-b8e1-1f4a9deac57f", - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Mon, 02 Oct 2017 17:27:33 GMT", - "x-ms-request-id": "fd3867ea-c65c-470d-a17b-d83c8864cf90", - "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1113", - "x-ms-correlation-request-id": "d0b45db5-c155-4991-95d9-22655c72c986" - }, - "body": null - } - } -} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ConfigureFactoryRepo.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ConfigureFactoryRepo.json new file mode 100644 index 000000000000..b6f8fd06a9a7 --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ConfigureFactoryRepo.json @@ -0,0 +1,56 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "locationId": "East US", + "factoryRepoUpdate": { + "factoryResourceId": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "repoConfiguration": { + "type": "FactoryVSTSConfiguration", + "projectName": "project", + "tenantId": "", + "accountName": "ADF", + "repositoryName": "repo", + "collaborationBranch": "master", + "rootFolder": "/", + "lastCommitId": "" + } + }, + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Tue, 19 Jun 2018 05:41:50 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "c63640bd-3e5f-4ee0-bae1-cea74f761a7d", + "x-ms-correlation-request-id": "c63640bd-3e5f-4ee0-bae1-cea74f761a7d" + }, + "body": { + "name": "exampleFactoryName", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01", + "repoConfiguration": { + "type": "FactoryVSTSConfiguration", + "projectName": "project", + "tenantId": "", + "accountName": "ADF", + "repositoryName": "repo", + "collaborationBranch": "master", + "rootFolder": "/", + "lastCommitId": "" + } + }, + "eTag": "\"00004004-0000-0000-0000-5b28979e0000\"", + "location": "East US", + "tags": { + "exampleTag": "exampleValue" + } + } + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ConfigureRepo.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ConfigureRepo.json deleted file mode 100644 index f3bda133c3ee..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ConfigureRepo.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "locationId": "eastus", - "factoryRepoUpdate": { - "factoryResourceId": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", - "ResourceGroupName": "exampleResourceGroup", - "vstsConfiguration": { - "AccountName": "ADF", - "ProjectName": "project", - "RepositoryName": "repo", - "CollaborationBranch": "master", - "RootFolder": "/", - "LastCommitId": "", - "TenantId": "" - } - }, - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Wed, 13 Sep 2017 17:33:55 GMT", - "x-ms-request-id": "3223701f-ce33-4a58-bb14-d3d53569d4f0", - "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-correlation-request-id": "ec4ce622-a1dd-4c49-a324-17e8d4d1fe83" - }, - "body": { - "name": "exampleFactoryName", - "tags": { - "exampleTag": "exampleValue" - }, - "properties": { - "provisioningState": "Succeeded", - "createTime": "2017-09-13T17:33:54.0294655Z", - "version": "2017-09-01-preview", - "vstsConfiguration": { - "accountName": "ADF", - "projectName": "project", - "repositoryName": "repo", - "collaborationBranch": "master", - "rootFolder": "/", - "lastCommitId": "", - "tenantId": "" - } - }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", - "type": "Microsoft.DataFactory/factories", - "location": "East US" - } - } - } -} diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CreateOrUpdate.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CreateOrUpdate.json index d02b84e56da3..83401598c21a 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CreateOrUpdate.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CreateOrUpdate.json @@ -1,34 +1,35 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "factory": { "location": "East US" }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:33:54 GMT", - "x-ms-request-id": "dc1954ed-a1d3-4437-bd73-480ffdf1ea5a", + "Date": "Tue, 19 Jun 2018 05:41:50 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-correlation-request-id": "8d66d31c-23f3-4ac1-bc8c-1b6464342ad1" + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "657028b7-5e63-4d7c-b8e7-cb336ed92ff0", + "x-ms-correlation-request-id": "657028b7-5e63-4d7c-b8e7-cb336ed92ff0" }, "body": { "name": "exampleFactoryName", - "tags": {}, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-09-13T17:33:54.0294655Z", - "version": "2017-09-01-preview" + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01" }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/examplefactoryname", - "type": "Microsoft.DataFactory/factories", - "location": "East US" + "eTag": "\"00003e04-0000-0000-0000-5b28979e0000\"", + "location": "East US", + "tags": {} } } } -} +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Delete.json index f0324c920cca..1e8e7b08ecb6 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Delete.json @@ -1,27 +1,28 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:31 GMT", - "x-ms-request-id": "00d8b4cd-058f-4da8-a3a9-7a7a9ae772f0", + "Date": "Sat, 16 Jun 2018 00:46:32 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-correlation-request-id": "9693bca3-4ee7-4501-865e-8411952d196b" + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-request-id": "ea0cf989-0831-4d49-84a8-9732da344b72", + "x-ms-correlation-request-id": "ea0cf989-0831-4d49-84a8-9732da344b72" }, "body": null }, "204": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:31 GMT", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "95fce457-ddee-44a2-84a1-05c33b32d807", - "x-ms-correlation-request-id": "95fce457-ddee-44a2-84a1-05c33b32d807" + "Date": "Sat, 16 Jun 2018 00:46:32 GMT", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-request-id": "3bf2d00f-7f37-4ab0-96c4-9ae560bc1f64", + "x-ms-correlation-request-id": "3bf2d00f-7f37-4ab0-96c4-9ae560bc1f64", + "X-Content-Type-Options": "nosniff" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Get.json index 17ce959ae588..5ce72adc6147 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Get.json @@ -1,33 +1,44 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:33:55 GMT", - "x-ms-request-id": "8e58266a-de42-40d5-b3c4-c6a7e159cfba", + "Date": "Tue, 19 Jun 2018 05:41:50 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14993", - "x-ms-correlation-request-id": "5d862c55-4de9-4a46-969d-cf1ed3e235ed" + "x-ms-ratelimit-remaining-subscription-reads": "14994", + "x-ms-request-id": "d84e59aa-718c-4b1a-951c-076ffff766c8", + "x-ms-correlation-request-id": "d84e59aa-718c-4b1a-951c-076ffff766c8" }, "body": { "name": "exampleFactoryName", - "tags": { - "exampleTag": "exampleValue" - }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-09-13T17:33:54.0294655Z", - "version": "2017-09-01-preview" + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01", + "repoConfiguration": { + "type": "FactoryVSTSConfiguration", + "projectName": "project", + "tenantId": "", + "accountName": "ADF", + "repositoryName": "repo", + "collaborationBranch": "master", + "rootFolder": "/", + "lastCommitId": "" + } }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", - "type": "Microsoft.DataFactory/factories", - "location": "East US" + "eTag": "\"00004004-0000-0000-0000-5b28979e0000\"", + "location": "East US", + "tags": { + "exampleTag": "exampleValue" + } } } } -} +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_List.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_List.json index 093c22bd0754..f6bbd4f3b09f 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_List.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_List.json @@ -1,49 +1,205 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "api-version": "2017-09-01-preview" + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:33:56 GMT", - "x-ms-request-id": "85e53e59-e56e-4878-a1ff-aaa27f52b466", - "X-Content-Type-Options": "nosniff", + "Date": "Tue, 19 Jun 2018 05:41:51 GMT", "x-ms-ratelimit-remaining-subscription-reads": "14992", - "x-ms-correlation-request-id": "471c3c55-1293-47bf-9662-33bb20f4b75c" + "x-ms-request-id": "533da6af-ad1a-4f89-ae04-d55e9c72b89d", + "x-ms-correlation-request-id": "533da6af-ad1a-4f89-ae04-d55e9c72b89d", + "X-Content-Type-Options": "nosniff" }, "body": { "value": [ + { + "name": "rpV2OrigDF-72c7d3d4-5e17-4ec6-91de-9ab433f15e79", + "identity": { + "type": "SystemAssigned", + "principalId": "399c3de2-6072-4326-bfa9-4d0c116f1a7b", + "tenantId": "12345678-1234-1234-1234-123456789abc" + }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/rg-yanzhang-dfv2/providers/Microsoft.DataFactory/factories/rpv2origdf-72c7d3d4-5e17-4ec6-91de-9ab433f15e79", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-05-29T13:39:35.615921Z", + "version": "2017-09-01-preview" + }, + "eTag": "\"0000aa0d-0000-0000-0000-5b0d58170000\"", + "location": "East US", + "tags": {} + }, + { + "name": "df-dogfood-yanzhang-we", + "identity": { + "type": "SystemAssigned", + "principalId": "e8dd6df9-bad5-4dea-8fb8-0d13d1845d9e", + "tenantId": "12345678-1234-1234-1234-123456789abc" + }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/rg-yanzhang-dfv2/providers/Microsoft.DataFactory/factories/df-dogfood-yanzhang-we", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-14T00:06:04.6667461Z", + "version": "2017-09-01-preview" + }, + "eTag": "\"0000f301-0000-0000-0000-5b21b16c0000\"", + "location": "West Europe", + "tags": {} + }, + { + "name": "exampleFactoryName-linked", + "identity": { + "type": "SystemAssigned", + "principalId": "10743799-44d2-42fe-8c4d-5bc5c51c0684", + "tenantId": "12345678-1234-1234-1234-123456789abc" + }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName-linked", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-15T08:56:07.1828318Z", + "version": "2017-09-01-preview" + }, + "eTag": "\"00008a02-0000-0000-0000-5b237f270000\"", + "location": "East US", + "tags": {} + }, + { + "name": "FactoryToUpgrade", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/factorytoupgrade", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-19T05:35:35.7133828Z", + "version": "2018-06-01" + }, + "eTag": "\"00003d04-0000-0000-0000-5b28962f0000\"", + "location": "East US", + "tags": {} + }, { "name": "exampleFactoryName", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01", + "repoConfiguration": { + "type": "FactoryVSTSConfiguration", + "projectName": "project", + "tenantId": "", + "accountName": "ADF", + "repositoryName": "repo", + "collaborationBranch": "master", + "rootFolder": "/", + "lastCommitId": "" + } + }, + "eTag": "\"00004004-0000-0000-0000-5b28979e0000\"", + "location": "East US", "tags": { "exampleTag": "exampleValue" + } + }, + { + "name": "rpV2OrigDF-72c7d3d4-5e17-4ec6-91de-9ab433f15e79", + "identity": { + "type": "SystemAssigned", + "principalId": "399c3de2-6072-4326-bfa9-4d0c116f1a7b", + "tenantId": "12345678-1234-1234-1234-123456789abc" }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/rg-yanzhang-dfv2/providers/Microsoft.DataFactory/factories/rpv2origdf-72c7d3d4-5e17-4ec6-91de-9ab433f15e79", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-09-13T17:33:54.0294655Z", + "createTime": "2018-05-29T13:39:35.615921Z", "version": "2017-09-01-preview" }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "eTag": "\"0000aa0d-0000-0000-0000-5b0d58170000\"", + "location": "East US", + "tags": {} + }, + { + "name": "df-dogfood-yanzhang-we", + "identity": { + "type": "SystemAssigned", + "principalId": "e8dd6df9-bad5-4dea-8fb8-0d13d1845d9e", + "tenantId": "12345678-1234-1234-1234-123456789abc" + }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/rg-yanzhang-dfv2/providers/Microsoft.DataFactory/factories/df-dogfood-yanzhang-we", "type": "Microsoft.DataFactory/factories", - "location": "East US" + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-14T00:06:04.6667461Z", + "version": "2017-09-01-preview" + }, + "eTag": "\"0000f301-0000-0000-0000-5b21b16c0000\"", + "location": "West Europe", + "tags": {} }, { - "name": "yitzhangFactoryV2", - "tags": { - "exampleTag": "exampleValue" + "name": "exampleFactoryName-linked", + "identity": { + "type": "SystemAssigned", + "principalId": "10743799-44d2-42fe-8c4d-5bc5c51c0684", + "tenantId": "12345678-1234-1234-1234-123456789abc" }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName-linked", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-05-08T21:03:32.7865115Z", - "version": "2017-03-01-preview" + "createTime": "2018-06-15T08:56:07.1828318Z", + "version": "2017-09-01-preview" }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/yitzhangFactoryV2", + "eTag": "\"00008a02-0000-0000-0000-5b237f270000\"", + "location": "East US", + "tags": {} + }, + { + "name": "FactoryToUpgrade", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/factorytoupgrade", "type": "Microsoft.DataFactory/factories", - "location": "East US" + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-19T05:35:35.7133828Z", + "version": "2018-06-01" + }, + "eTag": "\"00003d04-0000-0000-0000-5b28962f0000\"", + "location": "East US", + "tags": {} + }, + { + "name": "exampleFactoryName", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "type": "Microsoft.DataFactory/factories", + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01", + "repoConfiguration": { + "type": "FactoryVSTSConfiguration", + "projectName": "project", + "tenantId": "", + "accountName": "ADF", + "repositoryName": "repo", + "collaborationBranch": "master", + "rootFolder": "/", + "lastCommitId": "" + } + }, + "eTag": "\"00004004-0000-0000-0000-5b28979e0000\"", + "location": "East US", + "tags": { + "exampleTag": "exampleValue" + } } ] } } } -} +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ListByResourceGroup.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ListByResourceGroup.json index 47ed75a0ca07..2aadecb3999c 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ListByResourceGroup.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_ListByResourceGroup.json @@ -1,50 +1,78 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:33:56 GMT", - "x-ms-request-id": "85e53e59-e56e-4878-a1ff-aaa27f52b466", + "Date": "Tue, 19 Jun 2018 05:41:51 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14992", - "x-ms-correlation-request-id": "471c3c55-1293-47bf-9662-33bb20f4b75c" + "x-ms-ratelimit-remaining-subscription-reads": "14993", + "x-ms-request-id": "f9c976e7-4205-4cfc-833e-e5d50565fcef", + "x-ms-correlation-request-id": "f9c976e7-4205-4cfc-833e-e5d50565fcef" }, "body": { "value": [ { - "name": "exampleFactoryName", - "tags": { - "exampleTag": "exampleValue" + "name": "exampleFactoryName-linked", + "identity": { + "type": "SystemAssigned", + "principalId": "10743799-44d2-42fe-8c4d-5bc5c51c0684", + "tenantId": "12345678-1234-1234-1234-123456789abc" }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName-linked", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-09-13T17:33:54.0294655Z", + "createTime": "2018-06-15T08:56:07.1828318Z", "version": "2017-09-01-preview" }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", - "type": "Microsoft.DataFactory/factories", - "location": "East US" + "eTag": "\"00008a02-0000-0000-0000-5b237f270000\"", + "location": "East US", + "tags": {} }, { - "name": "yitzhangFactoryV2", - "tags": { - "exampleTag": "exampleValue" - }, + "name": "FactoryToUpgrade", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/factorytoupgrade", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-05-08T21:03:32.7865115Z", - "version": "2017-03-01-preview" + "createTime": "2018-06-19T05:35:35.7133828Z", + "version": "2018-06-01" }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/yitzhangFactoryV2", + "eTag": "\"00003d04-0000-0000-0000-5b28962f0000\"", + "location": "East US", + "tags": {} + }, + { + "name": "exampleFactoryName", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", "type": "Microsoft.DataFactory/factories", - "location": "East US" + "properties": { + "provisioningState": "Succeeded", + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01", + "repoConfiguration": { + "type": "FactoryVSTSConfiguration", + "projectName": "project", + "tenantId": "", + "accountName": "ADF", + "repositoryName": "repo", + "collaborationBranch": "master", + "rootFolder": "/", + "lastCommitId": "" + } + }, + "eTag": "\"00004004-0000-0000-0000-5b28979e0000\"", + "location": "East US", + "tags": { + "exampleTag": "exampleValue" + } } ] } } } -} +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Update.json index d99c2d5b03d3..0ca66d871fbb 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "factoryUpdateParameters": { @@ -8,31 +8,32 @@ "exampleTag": "exampleValue" } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:33:55 GMT", - "x-ms-request-id": "3223701f-ce33-4a58-bb14-d3d53569d4f0", + "Date": "Tue, 19 Jun 2018 05:41:50 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-correlation-request-id": "ec4ce622-a1dd-4c49-a324-17e8d4d1fe83" + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "699c67a6-fef5-40c9-bc73-d571d09783c3", + "x-ms-correlation-request-id": "699c67a6-fef5-40c9-bc73-d571d09783c3" }, "body": { "name": "exampleFactoryName", - "tags": { - "exampleTag": "exampleValue" - }, + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", + "type": "Microsoft.DataFactory/factories", "properties": { "provisioningState": "Succeeded", - "createTime": "2017-09-13T17:33:54.0294655Z", - "version": "2017-09-01-preview" + "createTime": "2018-06-19T05:41:50.0041314Z", + "version": "2018-06-01" }, - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleresourcegroup/providers/Microsoft.DataFactory/factories/exampleFactoryName", - "type": "Microsoft.DataFactory/factories", - "location": "East US" + "eTag": "\"00003f04-0000-0000-0000-5b28979e0000\"", + "location": "East US", + "tags": { + "exampleTag": "exampleValue" + } } } } -} +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Delete.json index 05e379f1c294..8ad31a2f4f0e 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Delete.json @@ -1,26 +1,30 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", "nodeName": "Node_1", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Thu, 19 Oct 2017 15:22:16 GMT", - "x-ms-request-id": "75a166f9-75ed-48d9-bc9b-08682dfdd0eb", - "X-Content-Type-Options": "nosniff" + "Date": "Thu, 14 Jun 2018 15:01:22 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "c1016b57-daf8-4476-b9eb-d02890d03f8d", + "x-ms-correlation-request-id": "c1016b57-daf8-4476-b9eb-d02890d03f8d" }, "body": null }, "204": { "headers": { - "Date": "Thu, 19 Oct 2017 15:22:16 GMT", - "x-ms-request-id": "d05cec68-ec62-4e95-97b6-9572eeab8ef2", - "X-Content-Type-Options": "nosniff" + "Date": "Thu, 14 Jun 2018 15:01:34 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "9c6aed81-8fd1-477e-b365-c7b15fc7f51a", + "x-ms-correlation-request-id": "9c6aed81-8fd1-477e-b365-c7b15fc7f51a" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_GetIpAddress.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_GetIpAddress.json index f8bab504c96c..9d7b7cecfc8d 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_GetIpAddress.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_GetIpAddress.json @@ -1,21 +1,23 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", "nodeName": "Node_1", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Tue, 14 Nov 2017 03:29:46 GMT", - "x-ms-request-id": "6ba794e4-da5a-4760-afa8-1c68a2c9f487", - "X-Content-Type-Options": "nosniff" + "Date": "Thu, 14 Jun 2018 15:36:39 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "f01265af-9f38-44b8-81a1-b67f567ea728", + "x-ms-correlation-request-id": "f01265af-9f38-44b8-81a1-b67f567ea728" }, "body": { - "ipAddress": "***" + "ipAddress": "**********" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Patch.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Patch.json deleted file mode 100644 index 0beb20fea3a1..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Patch.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "integrationRuntimeName": "exampleIntegrationRuntime", - "nodeName": "Node_1", - "integrationRuntimeNodePatchRequest": { - "concurrentJobsLimit": 2 - }, - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Thu, 19 Oct 2017 15:21:41 GMT", - "x-ms-request-id": "b63f53e8-b33f-425e-9529-45265c11a899", - "X-Content-Type-Options": "nosniff" - }, - "body": { - "nodeName": "Node_1", - "machineName": "YANZHANG-DT", - "hostServiceUri": "https://yanzhang-dt.fareast.corp.microsoft.com:8050/HostServiceRemote.svc/", - "status": "Online", - "capabilities": { - "serviceBusConnected": "True", - "httpsPortEnabled": "True", - "credentialInSync": "True", - "connectedToResourceManager": "True", - "nodeEnabled": "True" - }, - "versionStatus": "None", - "version": "3.1.6493.1", - "registerTime": "2017-10-19T15:20:29.3833194Z", - "lastConnectTime": "2017-10-19T15:21:33.2990651Z", - "lastStartTime": "2017-10-19T15:21:00.1172773Z", - "lastUpdateResult": "None", - "isActiveDispatcher": true, - "concurrentJobsLimit": 2, - "maxConcurrentJobs": 56 - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Update.json index c2151fc57821..bda4589fa6e5 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimeNodes_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", @@ -8,213 +8,38 @@ "updateIntegrationRuntimeNodeRequest": { "concurrentJobsLimit": 2 }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Tue, 28 Nov 2017 06:51:38 GMT", - "x-ms-request-id": "eee2dbec-ee3b-4c5c-a040-d39c88f0f82b", - "X-Content-Type-Options": "nosniff" + "Date": "Thu, 14 Jun 2018 15:01:00 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "cf0d05fa-afbe-4fac-aa10-227885658c83", + "x-ms-correlation-request-id": "cf0d05fa-afbe-4fac-aa10-227885658c83" }, "body": { - "body": { - "nodeName": "Node_1", - "machineName": "YANZHANG-02", - "hostServiceUri": "https://yanzhang-02.redmond.corp.microsoft.com:8050/HostServiceRemote.svc/", - "status": "Online", - "capabilities": { - "serviceBusConnected": "True", - "httpsPortEnabled": "True", - "credentialInSync": "True", - "connectedToResourceManager": "True", - "nodeEnabled": "True" - }, - "versionStatus": "UpToDate", - "version": "3.2.6519.3", - "registerTime": "2017-11-28T06:50:38.0809958Z", - "lastConnectTime": "2017-11-28T06:51:20.7868013Z", - "lastStartTime": "2017-11-28T06:51:20.7868013Z", - "lastUpdateResult": "None", - "isActiveDispatcher": true, - "concurrentJobsLimit": 2, - "maxConcurrentJobs": 48 + "nodeName": "Node_1", + "machineName": "YANZHANG-DT", + "hostServiceUri": "https://yanzhang-dt.fareast.corp.microsoft.com:8050/HostServiceRemote.svc/", + "status": "Online", + "capabilities": { + "serviceBusConnected": "True", + "httpsPortEnabled": "True", + "credentialInSync": "True", + "connectedToResourceManager": "True", + "nodeEnabled": "True" }, - "request": { - "version": { - "major": 1, - "minor": 1, - "build": -1, - "revision": -1, - "majorRevision": -1, - "minorRevision": -1 - }, - "content": { - "headers": [ - { - "key": "Content-Type", - "value": [ - "application/json; charset=utf-8" - ] - }, - { - "key": "Content-Length", - "value": [ - "32" - ] - } - ] - }, - "method": { - "method": "PATCH" - }, - "requestUri": "https://wu.frontend.int.clouddatahub-int.net/subscriptions/12345678-1234-1234-12345678abc/datafactories/exampleFactoryName/IntegrationRuntimes/exampleIntegrationRuntime/nodes/Node_1?api-version=1.0", - "headers": [ - { - "key": "x-ms-client-request-id", - "value": [ - "eee2dbec-ee3b-4c5c-a040-d39c88f0f82b" - ] - }, - { - "key": "accept-language", - "value": [ - "en-US" - ] - }, - { - "key": "User-Agent", - "value": [ - "Microsoft.DataTransfer.IntegrationRuntimeService.Client.IntegrationRuntimeServiceClient/0.9.0.0" - ] - } - ], - "properties": {} - }, - "response": { - "version": { - "major": 1, - "minor": 1, - "build": -1, - "revision": -1, - "majorRevision": -1, - "minorRevision": -1 - }, - "content": { - "headers": [ - { - "key": "Content-Length", - "value": [ - "607" - ] - }, - { - "key": "Content-Type", - "value": [ - "application/json; charset=utf-8" - ] - }, - { - "key": "Expires", - "value": [ - "-1" - ] - } - ] - }, - "statusCode": 200, - "reasonPhrase": "OK", - "headers": [ - { - "key": "Pragma", - "value": [ - "no-cache" - ] - }, - { - "key": "X-Content-Type-Options", - "value": [ - "nosniff" - ] - }, - { - "key": "Cache-Control", - "value": [ - "no-cache" - ] - }, - { - "key": "Date", - "value": [ - "Tue, 28 Nov 2017 06:51:37 GMT" - ] - }, - { - "key": "Server", - "value": [ - "Microsoft-IIS/8.5" - ] - }, - { - "key": "X-AspNet-Version", - "value": [ - "4.0.30319" - ] - } - ], - "requestMessage": { - "version": { - "major": 1, - "minor": 1, - "build": -1, - "revision": -1, - "majorRevision": -1, - "minorRevision": -1 - }, - "content": { - "headers": [ - { - "key": "Content-Type", - "value": [ - "application/json; charset=utf-8" - ] - }, - { - "key": "Content-Length", - "value": [ - "32" - ] - } - ] - }, - "method": { - "method": "PATCH" - }, - "requestUri": "https://wu.frontend.int.clouddatahub-int.net/subscriptions/12345678-1234-1234-12345678abc/datafactories/exampleFactoryName/IntegrationRuntimes/exampleIntegrationRuntime/nodes/Node_1?api-version=1.0", - "headers": [ - { - "key": "x-ms-client-request-id", - "value": [ - "eee2dbec-ee3b-4c5c-a040-d39c88f0f82b" - ] - }, - { - "key": "accept-language", - "value": [ - "en-US" - ] - }, - { - "key": "User-Agent", - "value": [ - "Microsoft.DataTransfer.IntegrationRuntimeService.Client.IntegrationRuntimeServiceClient/0.9.0.0" - ] - } - ], - "properties": {} - }, - "isSuccessStatusCode": true - } + "versionStatus": "UpToDate", + "version": "3.8.6730.2", + "registerTime": "2018-06-14T14:51:44.9237069Z", + "lastConnectTime": "2018-06-14T15:00:35.7544322Z", + "lastStartTime": "2018-06-14T14:52:59.8933313Z", + "lastUpdateResult": "None", + "isActiveDispatcher": true, + "concurrentJobsLimit": 2, + "maxConcurrentJobs": 56 } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Create.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Create.json index 4f60c833f528..d29fa9183fe8 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Create.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Create.json @@ -1,72 +1,36 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", "ifMatch": null, "integrationRuntime": { "properties": { - "type": "Managed", - "typeProperties": { - "computeProperties": { - "location": "West US", - "nodeSize": "Standard_D1_v2", - "numberOfNodes": 1, - "maxParallelExecutionsPerNode": 1 - }, - "ssisProperties": { - "catalogInfo": { - "catalogServerEndpoint": "yandongtestsvr.database.windows.net", - "catalogAdminUserName": "yanzhang", - "catalogAdminPassword": { - "type": "SecureString", - "value": "Passw0rd1" - }, - "catalogPricingTier": "S1" - } - } - }, - "description": "A managed reserved integration runtime" + "type": "SelfHosted", + "description": "A selfhosted integration runtime" } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Tue, 28 Nov 2017 07:05:28 GMT", - "x-ms-request-id": "ef607971-0494-480e-82e7-73df0c671d9e", - "X-Content-Type-Options": "nosniff" + "Date": "Wed, 13 Jun 2018 22:20:47 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "125c07fa-e39a-4541-885f-5019631a5ecd", + "x-ms-correlation-request-id": "125c07fa-e39a-4541-885f-5019631a5ecd" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", "name": "exampleIntegrationRuntime", + "type": "Microsoft.DataFactory/factories/integrationruntimes", "properties": { - "type": "Managed", - "typeProperties": { - "computeProperties": { - "location": "West US", - "nodeSize": "Standard_D1_v2", - "numberOfNodes": 1, - "maxParallelExecutionsPerNode": 1 - }, - "ssisProperties": { - "catalogInfo": { - "catalogServerEndpoint": "yandongtestsvr.database.windows.net", - "catalogAdminUserName": "yanzhang", - "catalogAdminPassword": { - "type": "SecureString", - "value": "**********" - }, - "catalogPricingTier": "S1" - } - } - }, - "description": "A managed reserved integration runtime", - "state": "Initial" + "type": "SelfHosted", + "description": "A selfhosted integration runtime" }, - "etag": "0100333d-0000-0000-0000-5a1d0ab80000" + "etag": "000046c4-0000-0000-0000-5b2198bf0000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Delete.json index 07f628fdfeeb..b080ffbcd5c7 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Delete.json @@ -1,29 +1,29 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:29 GMT", - "x-ms-request-id": "6d1ee741-7850-484b-99cd-b42ef08fd18c", + "Date": "Wed, 13 Jun 2018 22:30:01 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-correlation-request-id": "f931d2aa-0021-43ee-8005-2653da5e86d4" + "x-ms-ratelimit-remaining-subscription-deletes": "14979", + "x-ms-request-id": "6551f7f4-0d7f-4d02-a3a0-c4ee3b7bf15c", + "x-ms-correlation-request-id": "6551f7f4-0d7f-4d02-a3a0-c4ee3b7bf15c" }, "body": null }, "204": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:29 GMT", - "x-ms-request-id": "afb27d48-0c81-4e62-92c4-6fcb8c35c8a2", + "Date": "Wed, 13 Jun 2018 22:30:02 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-correlation-request-id": "543d80b4-c9d0-418d-bf16-d2434abac0cb" + "x-ms-ratelimit-remaining-subscription-deletes": "14978", + "x-ms-request-id": "7c5c6c3d-fca3-469e-9b6b-63ed9e4997dd", + "x-ms-correlation-request-id": "7c5c6c3d-fca3-469e-9b6b-63ed9e4997dd" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Get.json index 2dd5cf34ea0e..27917ea79da7 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Get.json @@ -1,46 +1,29 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Tue, 28 Nov 2017 07:05:29 GMT", - "x-ms-request-id": "f0c62d3c-0df3-4b08-b860-d258752bdfec", - "X-Content-Type-Options": "nosniff" + "Date": "Wed, 13 Jun 2018 21:33:05 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-reads": "14910", + "x-ms-request-id": "a453fdd5-2f17-4a84-b0c4-751151481ef3", + "x-ms-correlation-request-id": "a453fdd5-2f17-4a84-b0c4-751151481ef3" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", "name": "exampleIntegrationRuntime", + "type": "Microsoft.DataFactory/factories/integrationruntimes", "properties": { - "type": "Managed", - "typeProperties": { - "computeProperties": { - "location": "West US", - "nodeSize": "Standard_D1_v2", - "numberOfNodes": 1, - "maxParallelExecutionsPerNode": 1 - }, - "ssisProperties": { - "catalogInfo": { - "catalogServerEndpoint": "yandongtestsvr.database.windows.net", - "catalogAdminUserName": "yanzhang", - "catalogAdminPassword": { - "type": "SecureString", - "value": "**********" - }, - "catalogPricingTier": "S1" - } - } - }, - "description": "A managed reserved integration runtime", - "state": "Initial" + "type": "SelfHosted", + "description": "A selfhosted integration runtime" }, - "etag": "0100333d-0000-0000-0000-5a1d0ab80000" + "etag": "0400f1a1-0000-0000-0000-5b2188640000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetConnectionInfo.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetConnectionInfo.json index fcab30ad2e6b..916a85249c56 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetConnectionInfo.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetConnectionInfo.json @@ -1,21 +1,26 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:51 GMT", - "x-ms-request-id": "c38b64ae-4e0c-488d-8baa-6dc104cecdb2", + "Date": "Thu, 14 Jun 2018 14:53:21 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-correlation-request-id": "500722f2-d4e5-4d88-b2d7-5231f158857c" + "x-ms-ratelimit-remaining-subscription-reads": "14998", + "x-ms-request-id": "05774db5-e79b-4224-9097-46714b92fbd8", + "x-ms-correlation-request-id": "05774db5-e79b-4224-9097-46714b92fbd8" }, "body": { + "version": "3.8.6730.2", + "publicKey": "**********", + "serviceToken": "**********", + "identityCertThumbprint": "**********", + "hostServiceUri": "https://yanzhang-dt.fareast.corp.microsoft.com:8050/HostServiceRemote.svc/", "isIdentityCertExprired": false } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetMonitoringData.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetMonitoringData.json new file mode 100644 index 000000000000..ee22ca1956db --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetMonitoringData.json @@ -0,0 +1,34 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "resourceGroupName": "exampleResourceGroup", + "factoryName": "exampleFactoryName", + "integrationRuntimeName": "exampleIntegrationRuntime", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Thu, 14 Jun 2018 15:27:44 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-reads": "14999", + "x-ms-request-id": "39277952-edbe-4336-ae94-f6f42b50b5f7", + "x-ms-correlation-request-id": "39277952-edbe-4336-ae94-f6f42b50b5f7" + }, + "body": { + "name": "exampleIntegrationRuntime", + "nodes": [ + { + "nodeName": "Node_1", + "availableMemoryInMB": 16740, + "cpuUtilization": 15, + "concurrentJobsLimit": 28, + "concurrentJobsRunning": 0, + "sentBytes": 2.6474916934967041, + "receivedBytes": 6.7314233779907227 + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetStatus.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetStatus.json index 540ff0a0a7ab..eb30d6ce41c8 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetStatus.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_GetStatus.json @@ -1,35 +1,68 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 29 Nov 2017 04:14:01 GMT", - "x-ms-request-id": "4d936ea3-f235-46a1-98aa-5c3c0b46e0cb", - "X-Content-Type-Options": "nosniff" + "Date": "Thu, 14 Jun 2018 14:53:22 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-reads": "14997", + "x-ms-request-id": "19efe790-074f-4241-ae94-0422935d0f46", + "x-ms-correlation-request-id": "19efe790-074f-4241-ae94-0422935d0f46" }, "body": { "name": "exampleIntegrationRuntime", "properties": { - "state": "NeedRegistration", + "state": "Online", "type": "SelfHosted", "typeProperties": { "autoUpdate": "Off", - "taskQueueId": "00bb6126-79e3-46f1-a7ea-0d192a3efc26", - "nodes": [], + "taskQueueId": "1a6296ab-423c-4346-9bcc-85a78c2c0582", + "version": "3.8.6730.2", + "nodes": [ + { + "nodeName": "Node_1", + "machineName": "YANZHANG-DT", + "hostServiceUri": "https://yanzhang-dt.fareast.corp.microsoft.com:8050/HostServiceRemote.svc/", + "status": "Online", + "capabilities": { + "serviceBusConnected": "True", + "httpsPortEnabled": "True", + "credentialInSync": "True", + "connectedToResourceManager": "True", + "nodeEnabled": "True" + }, + "versionStatus": "UpToDate", + "version": "3.8.6730.2", + "registerTime": "2018-06-14T14:51:44.9237069Z", + "lastConnectTime": "2018-06-14T14:52:59.8933313Z", + "lastStartTime": "2018-06-14T14:52:59.8933313Z", + "lastUpdateResult": "None", + "isActiveDispatcher": true, + "maxConcurrentJobs": 56 + } + ], "updateDelayOffset": "PT3H", + "localTimeZoneOffset": "PT8H", "serviceUrls": [ "wu.frontend.int.clouddatahub-int.net", "*.servicebus.windows.net" ], "versionStatus": "UpToDate", - "capabilities": {}, - "createTime": "2017-11-29T04:13:56.3605984Z" + "capabilities": { + "serviceBusConnected": "True", + "httpsPortEnabled": "True", + "credentialInSync": "True", + "connectedToResourceManager": "True", + "nodeEnabled": "True" + }, + "latestVersion": "3.7.6711.1", + "createTime": "2018-06-14T09:17:45.1839685Z" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListAuthKeys.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListAuthKeys.json index b934d6030991..d4469bbe608b 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListAuthKeys.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListAuthKeys.json @@ -1,23 +1,23 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:52 GMT", - "x-ms-request-id": "eecbf702-ed1d-4839-b235-ede3c87e0f49", + "Date": "Thu, 14 Jun 2018 14:51:00 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-correlation-request-id": "a4a5f951-227f-4eb7-8471-a5dbe51c9b8b" + "x-ms-ratelimit-remaining-subscription-reads": "14999", + "x-ms-request-id": "2ea25426-9d1d-49f3-88b6-fb853eb02cb9", + "x-ms-correlation-request-id": "2ea25426-9d1d-49f3-88b6-fb853eb02cb9" }, "body": { - "authKey1": "********************", - "authKey2": "********************" + "authKey1": "**********", + "authKey2": "**********" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListByFactory.json index 80b3e6debccf..7961ec82f45b 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListByFactory.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_ListByFactory.json @@ -1,47 +1,31 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "ifNoneMatch": null, + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Tue, 28 Nov 2017 07:05:28 GMT", - "x-ms-request-id": "a31dcf14-5eca-42c3-a0ac-5448c2f8b095", - "X-Content-Type-Options": "nosniff" + "Date": "Wed, 13 Jun 2018 21:33:05 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-reads": "14909", + "x-ms-request-id": "f632df92-1140-4e19-9e19-0b1c8cbe393b", + "x-ms-correlation-request-id": "f632df92-1140-4e19-9e19-0b1c8cbe393b" }, "body": { "value": [ { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", "name": "exampleIntegrationRuntime", + "type": "Microsoft.DataFactory/factories/integrationruntimes", "properties": { - "type": "Managed", - "typeProperties": { - "computeProperties": { - "location": "West US", - "nodeSize": "Standard_D1_v2", - "numberOfNodes": 1, - "maxParallelExecutionsPerNode": 1 - }, - "ssisProperties": { - "catalogInfo": { - "catalogServerEndpoint": "yandongtestsvr.database.windows.net", - "catalogAdminUserName": "yanzhang", - "catalogAdminPassword": { - "type": "SecureString", - "value": "**********" - }, - "catalogPricingTier": "S1" - } - } - }, - "description": "A managed reserved integration runtime", - "state": "Initial" + "type": "SelfHosted", + "description": "A selfhosted integration runtime" }, - "etag": "0100333d-0000-0000-0000-5a1d0ab80000" + "etag": "0400f1a1-0000-0000-0000-5b2188640000" } ] } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Patch.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Patch.json deleted file mode 100644 index 884c455f8de3..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Patch.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "integrationRuntimeName": "exampleIntegrationRuntime", - "integrationRuntimePatchRequest": { - "autoUpdate": "On", - "updateDelayOffset": "\"PT3H\"" - }, - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Thu, 19 Oct 2017 15:21:33 GMT", - "x-ms-request-id": "f8691852-232a-4527-bf8a-52b61afd4083", - "X-Content-Type-Options": "nosniff" - }, - "body": { - "name": "exampleIntegrationRuntime", - "properties": { - "dataFactoryName": "exampleFactoryName", - "state": "Online", - "iRType": "SelfHosted", - "type": "SelfHosted", - "dataFactoryLocation": null, - "resourceUri": null, - "typeProperties": { - "autoUpdate": "On", - "nodeCommunicationChannelEncryptionMode": "None", - "taskQueueId": "b31b4165-bca1-47d3-a20a-6b20b2c28015", - "version": "3.1.6493.1", - "nodes": [ - { - "nodeName": "Node_1", - "machineName": "YANZHANG-DT", - "hostServiceUri": "https://yanzhang-dt.fareast.corp.microsoft.com:8050/HostServiceRemote.svc/", - "status": "Online", - "capabilities": { - "serviceBusConnected": "True", - "httpsPortEnabled": "True", - "credentialInSync": "True", - "connectedToResourceManager": "True", - "nodeEnabled": "True" - }, - "versionStatus": "None", - "version": "3.1.6493.1", - "registerTime": "2017-10-19T15:20:29.3833194Z", - "lastConnectTime": "2017-10-19T15:21:33.2990651Z", - "lastStartTime": "2017-10-19T15:21:00.1172773Z", - "lastUpdateResult": "None", - "isActiveDispatcher": true, - "maxConcurrentJobs": 56 - } - ], - "serviceUrls": [ - "wu.frontend.int.clouddatahub-int.net", - "*.servicebus.windows.net" - ], - "capabilities": { - "serviceBusConnected": "True", - "httpsPortEnabled": "True", - "credentialInSync": "True", - "connectedToResourceManager": "True", - "nodeEnabled": "True" - }, - "state": "Online", - "createTime": "2017-10-19T08:00:54.3752529Z" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RegenerateAuthKey.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RegenerateAuthKey.json index 06e7a9032dd2..5587566f8150 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RegenerateAuthKey.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RegenerateAuthKey.json @@ -1,25 +1,25 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", "regenerateKeyParameters": { "keyName": "authKey2" }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:52 GMT", - "x-ms-request-id": "706b5711-16e1-455b-808a-30cc120a061c", + "Date": "Thu, 14 Jun 2018 14:50:41 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-correlation-request-id": "46ee8708-affc-403d-ab9f-53824b169fdf" + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "25af6d34-52c6-40a4-a882-16052af85c99", + "x-ms-correlation-request-id": "25af6d34-52c6-40a4-a882-16052af85c99" }, "body": { - "authKey2": "*********************************" + "authKey2": "**********" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RemoveNode.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RemoveNode.json deleted file mode 100644 index 3c9369f63d9b..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_RemoveNode.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "integrationRuntimeName": "exampleIntegrationRuntime", - "removeNodeParameters": { - "nodeName": "Node_1" - }, - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Tue, 28 Nov 2017 06:05:42 GMT", - "x-ms-request-id": "f1b13f98-0659-4eaa-a676-29912ae0a4f3", - "X-Content-Type-Options": "nosniff" - }, - "body": null - }, - "204": { - "headers": { - "Date": "Tue, 28 Nov 2017 06:05:44 GMT", - "x-ms-request-id": "3d15a37e-f3f2-4e21-a90a-316f695a3f90", - "X-Content-Type-Options": "nosniff" - }, - "body": null - } - } -} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Start.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Start.json index 1df79c851773..21953e6e20b9 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Start.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Start.json @@ -1,57 +1,45 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleManagedIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "202": { "headers": { - "Date": "Tue, 28 Nov 2017 07:17:56 GMT", - "Location": "https://adfrpnightly.svc.datafactory-test.azure.com/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationRuntimes/exampleManagedIntegrationRuntime/start/operationresults/9a070152cddb4c839d482ccfb76a7537?api-version=2017-09-01-preview", + "Date": "Wed, 13 Jun 2018 21:11:03 GMT", + "Location": "https://api-dogfood.resources.windows-int.net/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationRuntimes/exampleManagedIntegrationRuntime/start/operationresults/301b9c4b1c43415594e11918e678383c?api-version=2018-06-01", "Retry-After": "15", - "x-ms-request-id": "aa8a8ed1-7b2e-40eb-b734-9b7a5f393aed", - "X-Content-Type-Options": "nosniff" + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "cb03ccdd-9d7a-4ebe-a967-0edc96f33904", + "x-ms-correlation-request-id": "cb03ccdd-9d7a-4ebe-a967-0edc96f33904" }, "body": null }, "200": { "headers": { - "Date": "Tue, 28 Nov 2017 07:39:18 GMT", - "x-ms-request-id": "a0190274-060e-43a0-84ea-403d1c0c4a06", - "X-Content-Type-Options": "nosniff" + "Date": "Wed, 13 Jun 2018 21:33:00 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-reads": "14912", + "x-ms-request-id": "2af47f9f-5625-4b01-a3a5-bccb576a4677", + "x-ms-correlation-request-id": "2af47f9f-5625-4b01-a3a5-bccb576a4677" }, "body": { "name": "exampleManagedIntegrationRuntime", "properties": { + "dataFactoryName": "exampleFactoryName", "state": "Started", "type": "Managed", + "dataFactoryLocation": null, + "resourceUri": null, "typeProperties": { - "nodes": [ - { - "nodeId": "tvm-1650185656_1-20171128t071919z", - "status": "Unavailable", - "errors": [ - { - "time": "2017-11-28T07:38:41.50199Z", - "code": "AzureSqlConnectionFailure", - "parameters": [], - "message": "Sql Error Number: 18456" - } - ] - } - ], + "nodes": [], "otherErrors": [], - "lastOperation": { - "type": "Start", - "startTime": "2017-11-28T07:17:58.6556933Z", - "result": "Succeeded", - "parameters": [] - }, "state": "Started", - "createTime": "2017-11-28T07:17:56.5930407Z" + "createTime": "2018-06-13T21:11:01.8695494Z" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Stop.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Stop.json index ba04fbbfbb27..c629af7aa096 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Stop.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Stop.json @@ -1,29 +1,23 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleManagedIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { - "202": { - "headers": { - "Date": "Tue, 28 Nov 2017 07:39:21 GMT", - "Location": "https://adfrpnightly.svc.datafactory-test.azure.com/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationRuntimes/exampleManagedIntegrationRuntime/stop/operationresults/50799841b7f94497ae43291b791db7e0?api-version=2017-09-01-preview", - "Retry-After": "15", - "x-ms-request-id": "b36c64a2-3306-4374-b93f-ec91dbb3bf26", - "X-Content-Type-Options": "nosniff" - }, - "body": null - }, "200": { "headers": { - "Date": "Tue, 28 Nov 2017 07:40:23 GMT", - "x-ms-request-id": "bcff281c-ae61-4e2d-8a0c-044e34c1d04a", - "X-Content-Type-Options": "nosniff" + "Date": "Wed, 13 Jun 2018 21:33:03 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "87f6c2c7-92f1-40e6-bb01-769f9e6ca22f", + "x-ms-correlation-request-id": "87f6c2c7-92f1-40e6-bb01-769f9e6ca22f" }, - "body": null + "body": { + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleManagedIntegrationRuntime" + } } } } \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_SyncCredentials.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_SyncCredentials.json new file mode 100644 index 000000000000..b614b05b52e6 --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_SyncCredentials.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "resourceGroupName": "exampleResourceGroup", + "factoryName": "exampleFactoryName", + "integrationRuntimeName": "exampleIntegrationRuntime", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Thu, 14 Jun 2018 15:27:47 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a991b4b4-e33a-4973-9088-200f9137fb84", + "x-ms-correlation-request-id": "a991b4b4-e33a-4973-9088-200f9137fb84" + }, + "body": null + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Update.json index 96b6d14c1721..cbe1a8c4235b 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", @@ -8,34 +8,26 @@ "autoUpdate": "Off", "updateDelayOffset": "\"PT3H\"" }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 29 Nov 2017 04:14:01 GMT", - "x-ms-request-id": "7ee6d3ac-d71b-426a-9023-f87616161540", - "X-Content-Type-Options": "nosniff" + "Date": "Wed, 13 Jun 2018 21:33:04 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "eb1c35f8-4b37-4d08-b5dd-d6a0ad8b182d", + "x-ms-correlation-request-id": "eb1c35f8-4b37-4d08-b5dd-d6a0ad8b182d" }, "body": { + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationruntimes/exampleIntegrationRuntime", "name": "exampleIntegrationRuntime", + "type": "Microsoft.DataFactory/factories/integrationruntimes", "properties": { - "state": "NeedRegistration", "type": "SelfHosted", - "typeProperties": { - "autoUpdate": "Off", - "taskQueueId": "00bb6126-79e3-46f1-a7ea-0d192a3efc26", - "nodes": [], - "updateDelayOffset": "PT3H", - "serviceUrls": [ - "wu.frontend.int.clouddatahub-int.net", - "*.servicebus.windows.net" - ], - "versionStatus": "UpToDate", - "capabilities": {}, - "createTime": "2017-11-29T04:13:56.3605984Z" - } - } + "description": "A selfhosted integration runtime" + }, + "etag": "0400f1a1-0000-0000-0000-5b2188640000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Upgrade.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Upgrade.json index e602bb934009..30998ace71e3 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Upgrade.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/IntegrationRuntimes_Upgrade.json @@ -1,17 +1,19 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "integrationRuntimeName": "exampleIntegrationRuntime", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Tue, 14 Nov 2017 03:42:42 GMT", - "x-ms-request-id": "599429b9-3add-4d0c-973b-91ddaf3364e7", - "X-Content-Type-Options": "nosniff" + "Date": "Thu, 14 Jun 2018 14:53:30 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "e12b9b30-54bf-49a0-8b7e-c8ce58ba6a36", + "x-ms-correlation-request-id": "e12b9b30-54bf-49a0-8b7e-c8ce58ba6a36" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Create.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Create.json index 019304dd2f4e..5f7c0bc17471 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Create.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Create.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "linkedServiceName": "exampleLinkedService", @@ -10,36 +10,38 @@ "type": "AzureStorage", "typeProperties": { "connectionString": { - "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=", - "type": "SecureString" + "type": "SecureString", + "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=" } } } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:53 GMT", - "x-ms-request-id": "6c8f770c-0873-4d97-b9b1-f21eafa81eeb", + "Date": "Sat, 16 Jun 2018 00:37:34 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-correlation-request-id": "866e9410-908e-4bf7-9d44-d3886325787b" + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "b3b336b3-b203-4654-9cb6-a3a8d3a4b5de", + "x-ms-correlation-request-id": "b3b336b3-b203-4654-9cb6-a3a8d3a4b5de" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", "name": "exampleLinkedService", + "type": "Microsoft.DataFactory/factories/linkedservices", "properties": { "type": "AzureStorage", "typeProperties": { "connectionString": { - "value": "**********", - "type": "SecureString" - } + "type": "SecureString", + "value": "**********" + }, + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIkRGLURPR0ZPT0QtWUFOWkhBTkctV1VfM2FiMTk0NjYtNWUxNi00NzU1LWJlNzktMjI2ZTVmZWU3YzY0Ig0KfQ==" } }, - "etag": "28031ca7-0000-0000-0000-59b971290000" + "etag": "0a0062d4-0000-0000-0000-5b245bcf0000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Delete.json index a20847c3074a..ee8b10b68aec 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Delete.json @@ -1,29 +1,29 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "linkedServiceName": "exampleLinkedService", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:28 GMT", - "x-ms-request-id": "7383dae8-e077-4472-8f2e-91e1163dcbb2", + "Date": "Sat, 16 Jun 2018 00:46:29 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-correlation-request-id": "af89dcb6-8a1e-498a-9b0c-3e866bd80f39" + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-request-id": "f55bd1ad-2ab5-4b94-bca5-01489e1b9d57", + "x-ms-correlation-request-id": "f55bd1ad-2ab5-4b94-bca5-01489e1b9d57" }, "body": null }, "204": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:28 GMT", - "x-ms-request-id": "097cab57-d2b8-442d-90f0-2deb5e3733e5", + "Date": "Sat, 16 Jun 2018 00:46:29 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-correlation-request-id": "3adc7b84-2fbe-4409-9481-bf2bd489f49f" + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "b1456813-e580-4cb0-bb05-ffd6099320e6", + "x-ms-correlation-request-id": "b1456813-e580-4cb0-bb05-ffd6099320e6" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Get.json index 341797f698ef..fcdfeba9318d 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Get.json @@ -1,34 +1,37 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "linkedServiceName": "exampleLinkedService", - "api-version": "2017-09-01-preview" + "ifNoneMatch": null, + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:53 GMT", - "x-ms-request-id": "d0d69de8-5acc-4ef4-bf5b-340328408cb2", + "Date": "Sat, 16 Jun 2018 00:37:36 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14914", - "x-ms-correlation-request-id": "a9524daa-23b7-48ef-985c-9f5a0136acea" + "x-ms-ratelimit-remaining-subscription-reads": "14995", + "x-ms-request-id": "b57420cc-9476-4947-b54f-50b041b614ec", + "x-ms-correlation-request-id": "b57420cc-9476-4947-b54f-50b041b614ec" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", "name": "exampleLinkedService", + "type": "Microsoft.DataFactory/factories/linkedservices", "properties": { "type": "AzureStorage", "typeProperties": { "connectionString": { - "value": "**********", - "type": "SecureString" - } + "type": "SecureString", + "value": "**********" + }, + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIkRGLURPR0ZPT0QtWUFOWkhBTkctV1VfMGI2M2EyMmYtMGEzNC00NDg2LWIzMDktNzM0NTlkODUyY2Q1Ig0KfQ==" }, "description": "Example description" }, - "etag": "28031da7-0000-0000-0000-59b971290000" + "etag": "0a0064d4-0000-0000-0000-5b245bd00000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_ListByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_ListByFactory.json index 83a2ed4669b2..d90b155020ce 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_ListByFactory.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_ListByFactory.json @@ -1,35 +1,37 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:54 GMT", - "x-ms-request-id": "b78883ab-f299-495e-ad30-804003deb775", + "Date": "Sat, 16 Jun 2018 00:37:36 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14913", - "x-ms-correlation-request-id": "4864247b-bf7c-4bc6-8d34-4a2bcebdb473" + "x-ms-ratelimit-remaining-subscription-reads": "14994", + "x-ms-request-id": "558d0fd8-dc1f-44b6-9ca9-59fcca8af9a5", + "x-ms-correlation-request-id": "558d0fd8-dc1f-44b6-9ca9-59fcca8af9a5" }, "body": { "value": [ { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", "name": "exampleLinkedService", + "type": "Microsoft.DataFactory/factories/linkedservices", "properties": { "type": "AzureStorage", "typeProperties": { "connectionString": { - "value": "**********", - "type": "SecureString" - } + "type": "SecureString", + "value": "**********" + }, + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIkRGLURPR0ZPT0QtWUFOWkhBTkctV1VfMGI2M2EyMmYtMGEzNC00NDg2LWIzMDktNzM0NTlkODUyY2Q1Ig0KfQ==" }, "description": "Example description" }, - "etag": "28031da7-0000-0000-0000-59b971290000" + "etag": "0a0064d4-0000-0000-0000-5b245bd00000" } ] } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Update.json index 393716d41bbc..2fea4585de27 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/LinkedServices_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "linkedServiceName": "exampleLinkedService", @@ -10,38 +10,40 @@ "type": "AzureStorage", "typeProperties": { "connectionString": { - "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=", - "type": "SecureString" + "type": "SecureString", + "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=" } }, "description": "Example description" } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:53 GMT", - "x-ms-request-id": "1b67d903-bb60-42b1-a91a-3aec5ab6f3a5", + "Date": "Sat, 16 Jun 2018 00:37:36 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-correlation-request-id": "5fe435da-a93c-498d-aee3-8118de9ef4aa" + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "53ad9761-ecdf-43ed-916f-878a5fb92cb0", + "x-ms-correlation-request-id": "53ad9761-ecdf-43ed-916f-878a5fb92cb0" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/linkedservices/exampleLinkedService", "name": "exampleLinkedService", + "type": "Microsoft.DataFactory/factories/linkedservices", "properties": { "type": "AzureStorage", "typeProperties": { "connectionString": { - "value": "**********", - "type": "SecureString" - } + "type": "SecureString", + "value": "**********" + }, + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIkRGLURPR0ZPT0QtWUFOWkhBTkctV1VfMGI2M2EyMmYtMGEzNC00NDg2LWIzMDktNzM0NTlkODUyY2Q1Ig0KfQ==" }, "description": "Example description" }, - "etag": "28031da7-0000-0000-0000-59b971290000" + "etag": "0a0064d4-0000-0000-0000-5b245bd00000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Operations_List.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Operations_List.json index 94475c0b23b8..2a2ed78c8df8 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Operations_List.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Operations_List.json @@ -1,16 +1,16 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "api-version": "2017-09-01-preview" + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:32 GMT", - "x-ms-request-id": "d5496da4-9c52-402f-b067-83cc9ddea888", + "Date": "Sat, 16 Jun 2018 00:46:33 GMT", "X-Content-Type-Options": "nosniff", "x-ms-ratelimit-remaining-tenant-reads": "14999", - "x-ms-correlation-request-id": "25c78f97-0b0a-4fe9-ad39-883a482265cd" + "x-ms-request-id": "522fceaa-5c3b-42ff-a518-843b2a53e0aa", + "x-ms-correlation-request-id": "522fceaa-5c3b-42ff-a518-843b2a53e0aa" }, "body": { "value": [ @@ -27,9 +27,8 @@ "serviceSpecification": { "metricSpecifications": [ { - "name": "SuccessfulRuns", - "displayName": "Successful Runs", - "displayDescription": "Number of successful runs.", + "name": "FailedRuns", + "displayName": "Failed Runs", "unit": "Count", "aggregationType": "Total", "availabilities": [ @@ -37,12 +36,36 @@ "timeGrain": "PT1H", "blobDuration": "P1D" } + ], + "enableRegionalMdmAccount": "false", + "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", + "sourceMdmNamespace": "ADFMetricsV1", + "dimensions": [ + { + "name": "pipelineName", + "displayName": "Pipeline", + "toBeExportedForShoebox": true + }, + { + "name": "activityName", + "displayName": "Activity", + "toBeExportedForShoebox": true + }, + { + "name": "windowEnd", + "displayName": "Window End", + "toBeExportedForShoebox": true + }, + { + "name": "windowStart", + "displayName": "Window Start", + "toBeExportedForShoebox": true + } ] }, { - "name": "FailedRuns", - "displayName": "Failed Runs", - "displayDescription": "Number of failed runs.", + "name": "SuccessfulRuns", + "displayName": "Successful Runs", "unit": "Count", "aggregationType": "Total", "availabilities": [ @@ -50,6 +73,31 @@ "timeGrain": "PT1H", "blobDuration": "P1D" } + ], + "enableRegionalMdmAccount": "false", + "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", + "sourceMdmNamespace": "ADFMetricsV1", + "dimensions": [ + { + "name": "pipelineName", + "displayName": "Pipeline", + "toBeExportedForShoebox": true + }, + { + "name": "activityName", + "displayName": "Activity", + "toBeExportedForShoebox": true + }, + { + "name": "windowEnd", + "displayName": "Window End", + "toBeExportedForShoebox": true + }, + { + "name": "windowStart", + "displayName": "Window Start", + "toBeExportedForShoebox": true + } ] } ] @@ -146,7 +194,19 @@ "aggregationType": "Total", "enableRegionalMdmAccount": "false", "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", - "sourceMdmNamespace": "ADFMetrics" + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "FailureType", + "displayName": "Failure Type", + "toBeExportedForShoebox": true + }, + { + "name": "Name", + "displayName": "Pipeline", + "toBeExportedForShoebox": true + } + ] }, { "name": "PipelineSucceededRuns", @@ -155,7 +215,19 @@ "aggregationType": "Total", "enableRegionalMdmAccount": "false", "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", - "sourceMdmNamespace": "ADFMetrics" + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "FailureType", + "displayName": "Failure Type", + "toBeExportedForShoebox": true + }, + { + "name": "Name", + "displayName": "Pipeline", + "toBeExportedForShoebox": true + } + ] }, { "name": "ActivityFailedRuns", @@ -164,7 +236,29 @@ "aggregationType": "Total", "enableRegionalMdmAccount": "false", "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", - "sourceMdmNamespace": "ADFMetrics" + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "ActivityType", + "displayName": "Activity Type", + "toBeExportedForShoebox": true + }, + { + "name": "PipelineName", + "displayName": "Pipeline", + "toBeExportedForShoebox": true + }, + { + "name": "FailureType", + "displayName": "Failure Type", + "toBeExportedForShoebox": true + }, + { + "name": "Name", + "displayName": "Activity", + "toBeExportedForShoebox": true + } + ] }, { "name": "ActivitySucceededRuns", @@ -173,7 +267,29 @@ "aggregationType": "Total", "enableRegionalMdmAccount": "false", "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", - "sourceMdmNamespace": "ADFMetrics" + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "ActivityType", + "displayName": "Activity Type", + "toBeExportedForShoebox": true + }, + { + "name": "PipelineName", + "displayName": "Pipeline", + "toBeExportedForShoebox": true + }, + { + "name": "FailureType", + "displayName": "Failure Type", + "toBeExportedForShoebox": true + }, + { + "name": "Name", + "displayName": "Activity", + "toBeExportedForShoebox": true + } + ] }, { "name": "TriggerFailedRuns", @@ -182,7 +298,19 @@ "aggregationType": "Total", "enableRegionalMdmAccount": "false", "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", - "sourceMdmNamespace": "ADFMetrics" + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "Name", + "displayName": "Trigger", + "toBeExportedForShoebox": true + }, + { + "name": "FailureType", + "displayName": "Failure Type", + "toBeExportedForShoebox": true + } + ] }, { "name": "TriggerSucceededRuns", @@ -191,11 +319,713 @@ "aggregationType": "Total", "enableRegionalMdmAccount": "false", "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", - "sourceMdmNamespace": "ADFMetrics" + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "Name", + "displayName": "Trigger", + "toBeExportedForShoebox": true + }, + { + "name": "FailureType", + "displayName": "Failure Type", + "toBeExportedForShoebox": true + } + ] + }, + { + "name": "IntegrationRuntimeCpuPercentage", + "displayName": "Integration runtime CPU utilization", + "unit": "Percent", + "aggregationType": "Average", + "enableRegionalMdmAccount": "false", + "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "IntegrationRuntimeName", + "displayName": "Integration Runtime", + "toBeExportedForShoebox": true + }, + { + "name": "NodeName", + "displayName": "Integration Runtime Node", + "toBeExportedForShoebox": true + } + ] + }, + { + "name": "IntegrationRuntimeAvailableMemory", + "displayName": "Integration runtime available memory", + "unit": "Bytes", + "aggregationType": "Average", + "enableRegionalMdmAccount": "false", + "sourceMdmAccount": "MicrosoftDataFactoryProdShoebox", + "sourceMdmNamespace": "ADFMetrics", + "dimensions": [ + { + "name": "IntegrationRuntimeName", + "displayName": "Integration Runtime", + "toBeExportedForShoebox": true + }, + { + "name": "NodeName", + "displayName": "Integration Runtime Node", + "toBeExportedForShoebox": true + } + ] } ] } } + }, + { + "name": "Microsoft.DataFactory/register/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory Resource Provider", + "operation": "Register Data Factory Resource Provider", + "description": "Registers the subscription for the Data Factory Resource Provider." + } + }, + { + "name": "Microsoft.DataFactory/unregister/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory Resource Provider", + "operation": "Unregister Data Factory Resource Provider", + "description": "Unregisters the subscription for the Data Factory Resource Provider." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Read Data Factory", + "description": "Reads the Data Factory." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Create or Update Data Factory", + "description": "Creates or Updates the Data Factory." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Delete Data Factory", + "description": "Deletes the Data Factory." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/linkedServices/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Linked Service", + "operation": "Read Linked Service", + "description": "Reads any Linked Service." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/linkedServices/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Linked Service", + "operation": "Delete Linked Service", + "description": "Deletes any Linked Service." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/linkedServices/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Linked Service", + "operation": "Create or Update Linked Service", + "description": "Creates or Updates any Linked Service." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Read Pipeline", + "description": "Reads any Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Delete Pipeline", + "description": "Deletes any Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/pause/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Pause Pipeline", + "description": "Pauses any Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/resume/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Resume Pipeline", + "description": "Resumes any Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/update/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Update Pipeline", + "description": "Updates any Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Create or Update Pipeline", + "description": "Creates or Updates any Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Read Dataset", + "description": "Reads any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Delete Dataset", + "description": "Deletes any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Create or Update Dataset", + "description": "Creates or Updates any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/tables/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Read Dataset", + "description": "Reads any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/tables/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Delete Dataset", + "description": "Deletes any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/tables/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Create or Update Dataset", + "description": "Creates or Updates any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/slices/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Slice", + "operation": "Read Data Slices", + "description": "Gets the Data Slices in the given period." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/slices/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Slice", + "operation": "Update Data Slice Status", + "description": "Update the Status of the Data Slice." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/sliceruns/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Slice", + "operation": "Read Data Slice Run", + "description": "Reads the Data Slice Run for the given dataset with the given start time." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/runs/loginfo/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Run Log", + "operation": "Read Run Log Info", + "description": "Reads a SAS URI to a blob container containing the logs." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/activitywindows/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Activity Windows", + "operation": "Read Activity Windows in any Data Factory", + "description": "Reads Activity Windows in the Data Factory with specified parameters." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/activitywindows/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Activity Windows", + "operation": "Read Activity Windows for any Pipeline", + "description": "Reads Activity Windows for the Pipeline with specified parameters." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datapipelines/activities/activitywindows/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Activity Windows", + "operation": "Read Activity Windows for any Pipeline Activity", + "description": "Reads Activity Windows for the Pipeline Activity with specified parameters." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/datasets/activitywindows/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Activity Windows", + "operation": "Read Activity Windows for any Dataset", + "description": "Reads Activity Windows for the Dataset with specified parameters." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/gateways/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Gateway", + "operation": "Read Gateway", + "description": "Reads any Gateway." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/gateways/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Gateway", + "operation": "Create or Update Gateway", + "description": "Creates or Updates any Gateway." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/gateways/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Gateway", + "operation": "Delete Gateway", + "description": "Deletes any Gateway." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/gateways/connectioninfo/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Gateway", + "operation": "Read Gateway Connection Info", + "description": "Reads the Connection Info for any Gateway." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/gateways/listauthkeys/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Gateway", + "operation": "List Gateway Authentication Keys", + "description": "Lists the Authentication Keys for any Gateway." + } + }, + { + "name": "Microsoft.DataFactory/datafactories/gateways/regenerateauthkey/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Gateway", + "operation": "Regenerate Gateway Authentication Keys", + "description": "Regenerates the Authentication Keys for any Gateway." + } + }, + { + "name": "Microsoft.DataFactory/factories/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Read Data Factory", + "description": "Reads Data Factory." + } + }, + { + "name": "Microsoft.DataFactory/factories/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Create or Update any Data Factory.", + "description": "Create or Update Data Factory" + } + }, + { + "name": "Microsoft.DataFactory/factories/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Delete Data Factory", + "description": "Deletes Data Factory." + } + }, + { + "name": "Microsoft.DataFactory/factories/linkedServices/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Linked Service", + "operation": "Read Linked Service", + "description": "Reads Linked Service." + } + }, + { + "name": "Microsoft.DataFactory/factories/linkedServices/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Linked Service", + "operation": "Delete Linked Service", + "description": "Deletes Linked Service." + } + }, + { + "name": "Microsoft.DataFactory/factories/linkedServices/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Linked Service", + "operation": "Create or Update any Linked Service.", + "description": "Create or Update Linked Service" + } + }, + { + "name": "Microsoft.DataFactory/factories/pipelines/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Read Pipeline", + "description": "Reads Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/factories/pipelines/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Delete Pipeline", + "description": "Deletes Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/factories/pipelines/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Create or Update any Pipeline.", + "description": "Create or Update Pipeline" + } + }, + { + "name": "Microsoft.DataFactory/factories/pipelines/createrun/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Pipeline", + "operation": "Create Pipeline Run", + "description": "Creates a run for the Pipeline." + } + }, + { + "name": "Microsoft.DataFactory/factories/cancelpipelinerun/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Cancel any Pipeline Run", + "description": "Cancels the pipeline run specified by the run ID." + } + }, + { + "name": "Microsoft.DataFactory/factories/pipelineruns/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Read Pipeline Runs", + "description": "Reads the Pipeline Runs." + } + }, + { + "name": "Microsoft.DataFactory/factories/pipelineruns/activityruns/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Read Activity Runs", + "description": "Reads the activity runs for the specified pipeline run ID." + } + }, + { + "name": "Microsoft.DataFactory/factories/datasets/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Read Dataset", + "description": "Reads any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/factories/datasets/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Delete Dataset", + "description": "Deletes any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/factories/datasets/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Dataset", + "operation": "Create or Update Dataset", + "description": "Creates or Updates any Dataset." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Read Integration Runtime", + "description": "Reads any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Create or Update Integration Runtime", + "description": "Creates or Updates any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Delete Integration Runtime", + "description": "Deletes any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/start/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Start Integration Runtime", + "description": "Starts any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/stop/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Stop Integration Runtime", + "description": "Stops any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/getconnectioninfo/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Read Integration Runtime Connection Info", + "description": "Reads Integration Runtime Connection Info." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/getstatus/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Read Integration Runtime Status", + "description": "Reads Integration Runtime Status." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/listauthkeys/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "List Integration Runtime Authentication Keys", + "description": "Lists the Authentication Keys for any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/monitoringdata/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Get Integration Runtime Monitoring Data", + "description": "Gets the Monitoring Data for any Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/nodes/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Delete Integration Runtime Node", + "description": "Deletes the Node for the specified Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/nodes/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Update Integration Runtime Node", + "description": "Updates a self-hosted Integration Runtime Node." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/nodes/ipAddress/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Read Integration Runtime Node IP Address", + "description": "Returns the IP Address for the specified node of the Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/synccredentials/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Sync Credentials for Integration Runtime", + "description": "Syncs the Credentials for the specified Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/upgrade/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Upgrade Integration Runtime", + "description": "Upgrades the specified Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/integrationruntimes/regenerateauthkey/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Integration Runtime", + "operation": "Regenerate Integration Runtime Authentication Keys", + "description": "Regenerates the Authentication Keys for the specified Integration Runtime." + } + }, + { + "name": "Microsoft.DataFactory/factories/triggers/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Trigger", + "operation": "Read Trigger", + "description": "Reads any Trigger." + } + }, + { + "name": "Microsoft.DataFactory/factories/triggers/write", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Trigger", + "operation": "Create or Update Trigger", + "description": "Creates or Updates any Trigger." + } + }, + { + "name": "Microsoft.DataFactory/factories/triggers/delete", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Trigger", + "operation": "Delete Trigger", + "description": "Deletes any Trigger." + } + }, + { + "name": "Microsoft.DataFactory/factories/triggers/start/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Trigger", + "operation": "Start Trigger", + "description": "Starts any Trigger." + } + }, + { + "name": "Microsoft.DataFactory/factories/triggers/stop/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Trigger", + "operation": "Stop Trigger", + "description": "Stops any Trigger." + } + }, + { + "name": "Microsoft.DataFactory/factories/triggers/triggerruns/read", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Read Trigger Runs", + "description": "Reads the Trigger Runs." + } + }, + { + "name": "Microsoft.DataFactory/locations/configureFactoryRepo/action", + "display": { + "provider": "Microsoft Data Factory", + "resource": "Data Factory", + "operation": "Configure Factory Repository", + "description": "Configures the repository for the factory." + } } ] } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Cancel.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Cancel.json new file mode 100644 index 000000000000..ff5617cb7614 --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Cancel.json @@ -0,0 +1,21 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "resourceGroupName": "exampleResourceGroup", + "factoryName": "exampleFactoryName", + "runId": "16ac5348-ff82-4f95-a80d-638c1d47b721", + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Sat, 16 Jun 2018 00:39:51 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "00215772-3147-4e15-99ae-fbf225d5dd0a", + "x-ms-correlation-request-id": "00215772-3147-4e15-99ae-fbf225d5dd0a" + }, + "body": null + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Get.json index faa6919980cf..657ed25eed2f 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_Get.json @@ -1,36 +1,37 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "runId": "a420e4fd-ebe9-4758-8db7-852b4d06245e", - "api-version": "2017-09-01-preview" + "runId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b", + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:58:09 GMT", - "x-ms-request-id": "751b997c-7971-4c8e-bf84-cc4ee24ba2b7", + "Date": "Sat, 16 Jun 2018 00:40:02 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14911", - "x-ms-correlation-request-id": "5ce2fefe-900d-41b6-a4df-6e15421b1d9d" + "x-ms-ratelimit-remaining-subscription-reads": "14988", + "x-ms-request-id": "6d9de9bd-a412-4a6f-8b9e-37d369323646", + "x-ms-correlation-request-id": "6d9de9bd-a412-4a6f-8b9e-37d369323646" }, "body": { - "runId": "a420e4fd-ebe9-4758-8db7-852b4d06245e", + "runId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b", "pipelineName": "examplePipeline", "parameters": { "OutputBlobNameList": "[\"exampleoutput.csv\"]" }, "invokedBy": { - "id": "be423891558d4c5294d4b49401a34620", + "id": "80a01654a9d34ad18b3fcac5d5d76b67", "name": "Manual" }, - "runStart": "2017-09-13T17:55:57.1202147Z", - "runEnd": "2017-09-13T17:56:25.2051416Z", - "durationInMs": 28084, + "runStart": "2018-06-16T00:37:44.6257014Z", + "runEnd": "2018-06-16T00:38:12.7314495Z", + "durationInMs": 28105, "status": "Succeeded", "message": "", - "lastUpdated": "2017-09-13T17:56:25.2051416Z" + "lastUpdated": "2018-06-16T00:38:12.7314495Z", + "annotations": [] } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_ListByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_ListByFactory.json deleted file mode 100644 index ca5a6749cab5..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_ListByFactory.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "filterParameters": { - "lastUpdatedAfter": "2017-09-13T17:54:57.0811551Z", - "lastUpdatedBefore": "2017-09-13T18:07:59.6211018Z", - "filters": [ - { - "operand": "PipelineName", - "operator": "Equals", - "values": [ - "examplePipeline" - ] - } - ] - }, - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Wed, 13 Sep 2017 17:58:09 GMT", - "x-ms-request-id": "76f99b48-a79c-4af2-a0f0-0655fead6b24", - "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-correlation-request-id": "988c8123-bf35-4601-a5d0-8958c1a2114d" - }, - "body": { - "value": [ - { - "runId": "a420e4fd-ebe9-4758-8db7-852b4d06245e", - "pipelineName": "examplePipeline", - "parameters": { - "OutputBlobNameList": "[\"exampleoutput.csv\"]" - }, - "invokedBy": { - "id": "be423891558d4c5294d4b49401a34620", - "name": "Manual" - }, - "runStart": "2017-09-13T17:55:57.1202147Z", - "runEnd": "2017-09-13T17:56:25.2051416Z", - "durationInMs": 28084, - "status": "Succeeded", - "message": "", - "lastUpdated": "2017-09-13T17:56:25.2051416Z" - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_QueryByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_QueryByFactory.json new file mode 100644 index 000000000000..cbb12946813b --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/PipelineRuns_QueryByFactory.json @@ -0,0 +1,72 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "resourceGroupName": "exampleResourceGroup", + "factoryName": "exampleFactoryName", + "filterParameters": { + "lastUpdatedAfter": "2018-06-16T00:36:44.3345758Z", + "lastUpdatedBefore": "2018-06-16T00:49:48.3686473Z", + "filters": [ + { + "operand": "PipelineName", + "operator": "Equals", + "values": [ + "examplePipeline" + ] + } + ] + }, + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Sat, 16 Jun 2018 00:40:01 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-reads": "14989", + "x-ms-request-id": "2f955e10-c6df-45a7-97d4-81acdb8540cd", + "x-ms-correlation-request-id": "2f955e10-c6df-45a7-97d4-81acdb8540cd" + }, + "body": { + "value": [ + { + "runId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b", + "pipelineName": "examplePipeline", + "parameters": { + "OutputBlobNameList": "[\"exampleoutput.csv\"]" + }, + "invokedBy": { + "id": "80a01654a9d34ad18b3fcac5d5d76b67", + "name": "Manual" + }, + "runStart": "2018-06-16T00:37:44.6257014Z", + "runEnd": "2018-06-16T00:38:12.7314495Z", + "durationInMs": 28105, + "status": "Succeeded", + "message": "", + "lastUpdated": "2018-06-16T00:38:12.7314495Z", + "annotations": [] + }, + { + "runId": "16ac5348-ff82-4f95-a80d-638c1d47b721", + "pipelineName": "examplePipeline", + "parameters": { + "OutputBlobNameList": "[\"exampleoutput.csv\"]" + }, + "invokedBy": { + "id": "7c5fd7ef7e8a464b98b931cf15fcac66", + "name": "Manual" + }, + "runStart": "2018-06-16T00:39:49.2745128Z", + "runEnd": null, + "durationInMs": null, + "status": "Cancelled", + "message": "", + "lastUpdated": "2018-06-16T00:39:51.216097Z", + "annotations": [] + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Create.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Create.json index 73bbfb9138cf..36720c98f369 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Create.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Create.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "pipelineName": "examplePipeline", @@ -25,7 +25,8 @@ }, "sink": { "type": "BlobSink" - } + }, + "dataIntegrationUnits": 32 }, "inputs": [ { @@ -64,20 +65,21 @@ } } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:55 GMT", - "x-ms-request-id": "6cc3413e-9afa-487e-aeff-45bc6285470b", + "Date": "Sat, 16 Jun 2018 00:37:41 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-correlation-request-id": "69c3f715-8fd9-4448-a8ee-becbde571aec" + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "e4c589b7-a9fe-4c28-981c-3855ec27d264", + "x-ms-correlation-request-id": "e4c589b7-a9fe-4c28-981c-3855ec27d264" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", "name": "examplePipeline", + "type": "Microsoft.DataFactory/factories/pipelines", "properties": { "activities": [ { @@ -97,7 +99,8 @@ }, "sink": { "type": "BlobSink" - } + }, + "dataIntegrationUnits": 32 }, "inputs": [ { @@ -135,7 +138,7 @@ } } }, - "etag": "280321a7-0000-0000-0000-59b9712b0000" + "etag": "0a0069d4-0000-0000-0000-5b245bd50000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_CreateRun.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_CreateRun.json index 8e14aee60322..721114951093 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_CreateRun.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_CreateRun.json @@ -1,27 +1,28 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "pipelineName": "examplePipeline", + "referencePipelineRunId": null, "parameters": { "OutputBlobNameList": [ "exampleoutput.csv" ] }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { - "202": { + "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:58 GMT", - "x-ms-request-id": "a420e4fd-ebe9-4758-8db7-852b4d06245e", + "Date": "Sat, 16 Jun 2018 00:37:48 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-correlation-request-id": "15d0c07a-603f-42c7-98ba-872b0eff2326" + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "5c2b442b-d360-43ec-9268-f923f88f31fd", + "x-ms-correlation-request-id": "5c2b442b-d360-43ec-9268-f923f88f31fd" }, "body": { - "runId": "a420e4fd-ebe9-4758-8db7-852b4d06245e" + "runId": "2f7fdb90-5df1-4b8e-ac2f-064cfa58202b" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Delete.json index dbd3f94155c5..6cbb5ed82357 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Delete.json @@ -1,29 +1,29 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "pipelineName": "examplePipeline", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:27 GMT", - "x-ms-request-id": "74ec3492-79c4-4028-9db1-fe7054e794d4", + "Date": "Sat, 16 Jun 2018 00:46:27 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-correlation-request-id": "332e562a-b3f8-4f5d-852d-8bb1bfc6a798" + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "10ea8bd9-4620-425c-92dd-adadef31c9e4", + "x-ms-correlation-request-id": "10ea8bd9-4620-425c-92dd-adadef31c9e4" }, "body": null }, "204": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:27 GMT", - "x-ms-request-id": "86b4c1f6-9944-4cef-8147-170c856da5ec", + "Date": "Sat, 16 Jun 2018 00:46:27 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-correlation-request-id": "5ba4c3d0-6e6a-465d-8ffd-592c38380527" + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "cfb3e876-4271-4300-bf3d-3bffc5a34695", + "x-ms-correlation-request-id": "cfb3e876-4271-4300-bf3d-3bffc5a34695" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Get.json index 810f61a0427a..9dc1bf7c1790 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Get.json @@ -1,23 +1,25 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "pipelineName": "examplePipeline", - "api-version": "2017-09-01-preview" + "ifNoneMatch": null, + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:56 GMT", - "x-ms-request-id": "f43d67bd-6702-4113-9b00-6ce0390f07ea", + "Date": "Sat, 16 Jun 2018 00:37:43 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14910", - "x-ms-correlation-request-id": "80f036bf-e6a7-4248-8ea4-fba427e19c79" + "x-ms-ratelimit-remaining-subscription-reads": "14991", + "x-ms-request-id": "e1e7bf40-37d4-4f38-92aa-4138cc1fa2fa", + "x-ms-correlation-request-id": "e1e7bf40-37d4-4f38-92aa-4138cc1fa2fa" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", "name": "examplePipeline", + "type": "Microsoft.DataFactory/factories/pipelines", "properties": { "description": "Example description", "activities": [ @@ -38,7 +40,8 @@ }, "sink": { "type": "BlobSink" - } + }, + "dataIntegrationUnits": 32 }, "inputs": [ { @@ -76,7 +79,7 @@ } } }, - "etag": "280324a7-0000-0000-0000-59b9712b0000" + "etag": "0a006cd4-0000-0000-0000-5b245bd60000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_ListByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_ListByFactory.json index 1b7a1bd1c4c5..76bfe07287e2 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_ListByFactory.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_ListByFactory.json @@ -1,24 +1,25 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:56 GMT", - "x-ms-request-id": "a8129560-dc5c-4312-9c3e-22fc00f9033f", + "Date": "Sat, 16 Jun 2018 00:37:43 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14909", - "x-ms-correlation-request-id": "fa5fe506-baa4-4974-9d0a-0d79da341bd8" + "x-ms-ratelimit-remaining-subscription-reads": "14990", + "x-ms-request-id": "92292250-c10f-4c47-8eb6-b886b361add7", + "x-ms-correlation-request-id": "92292250-c10f-4c47-8eb6-b886b361add7" }, "body": { "value": [ { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", "name": "examplePipeline", + "type": "Microsoft.DataFactory/factories/pipelines", "properties": { "description": "Example description", "activities": [ @@ -39,7 +40,8 @@ }, "sink": { "type": "BlobSink" - } + }, + "dataIntegrationUnits": 32 }, "inputs": [ { @@ -77,7 +79,7 @@ } } }, - "etag": "280324a7-0000-0000-0000-59b9712b0000" + "etag": "0a006cd4-0000-0000-0000-5b245bd60000" } ] } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Update.json index c23607b35d71..239e9d8251e9 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Pipelines_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "pipelineName": "examplePipeline", @@ -26,7 +26,8 @@ }, "sink": { "type": "BlobSink" - } + }, + "dataIntegrationUnits": 32 }, "inputs": [ { @@ -65,20 +66,21 @@ } } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:55:55 GMT", - "x-ms-request-id": "593b4383-377c-4e4d-8141-c6e76d313b8f", + "Date": "Sat, 16 Jun 2018 00:37:43 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-correlation-request-id": "0bdb8812-2d23-4619-9582-2f16c2434e68" + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "91a763b0-d944-493f-83fc-e989c8b6e122", + "x-ms-correlation-request-id": "91a763b0-d944-493f-83fc-e989c8b6e122" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/pipelines/examplePipeline", "name": "examplePipeline", + "type": "Microsoft.DataFactory/factories/pipelines", "properties": { "description": "Example description", "activities": [ @@ -99,7 +101,8 @@ }, "sink": { "type": "BlobSink" - } + }, + "dataIntegrationUnits": 32 }, "inputs": [ { @@ -137,7 +140,7 @@ } } }, - "etag": "280324a7-0000-0000-0000-59b9712b0000" + "etag": "0a006cd4-0000-0000-0000-5b245bd60000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/TriggerRuns_QueryByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/TriggerRuns_QueryByFactory.json new file mode 100644 index 000000000000..3e7e1935aeaa --- /dev/null +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/TriggerRuns_QueryByFactory.json @@ -0,0 +1,51 @@ +{ + "parameters": { + "subscriptionId": "12345678-1234-1234-1234-12345678abc", + "resourceGroupName": "exampleResourceGroup", + "factoryName": "exampleFactoryName", + "filterParameters": { + "lastUpdatedAfter": "2018-06-16T00:36:44.3345758Z", + "lastUpdatedBefore": "2018-06-16T00:49:48.3686473Z", + "filters": [ + { + "operand": "TriggerName", + "operator": "Equals", + "values": [ + "exampleTrigger" + ] + } + ] + }, + "api-version": "2018-06-01" + }, + "responses": { + "200": { + "headers": { + "Date": "Sat, 16 Jun 2018 00:46:22 GMT", + "X-Content-Type-Options": "nosniff", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "fb328f3e-d21e-44f7-80d7-dad60c955b4d", + "x-ms-correlation-request-id": "fb328f3e-d21e-44f7-80d7-dad60c955b4d" + }, + "body": { + "value": [ + { + "triggerName": "exampleTrigger", + "triggerRunId": "08586724970898148904457116912CU27", + "triggerType": "ScheduleTrigger", + "triggerRunTimestamp": "2018-06-16T00:43:15.660141Z", + "status": "Succeeded", + "message": "", + "properties": { + "TriggerTime": "6/16/2018 12:43:15 AM", + "ScheduleTime": "6/16/2018 12:43:14 AM" + }, + "triggeredPipelines": { + "examplePipeline": "9f3ce8b3-37d7-43eb-96ac-a656c0476283" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Create.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Create.json index 7ff873ae308f..8d0d568e11d3 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Create.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Create.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "triggerName": "exampleTrigger", @@ -12,8 +12,8 @@ "recurrence": { "frequency": "Minute", "interval": 4, - "startTime": "2017-09-13T17:57:20.7835924Z", - "endTime": "2017-09-13T18:13:20.7835924Z", + "startTime": "2018-06-16T00:39:13.8441801Z", + "endTime": "2018-06-16T00:55:13.8441801Z", "timeZone": "UTC" } }, @@ -32,28 +32,29 @@ ] } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:58:21 GMT", - "x-ms-request-id": "3581e103-fcbc-43a1-a8c2-dc086040d0de", + "Date": "Sat, 16 Jun 2018 00:40:14 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-correlation-request-id": "8477d62a-5386-4c52-bf87-fc05a4f11b31" + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "373f1a49-685d-4c07-8857-0fcf1bcaffcb", + "x-ms-correlation-request-id": "373f1a49-685d-4c07-8857-0fcf1bcaffcb" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", "name": "exampleTrigger", + "type": "Microsoft.DataFactory/factories/triggers", "properties": { "type": "ScheduleTrigger", "typeProperties": { "recurrence": { "frequency": "Minute", "interval": 4, - "startTime": "2017-09-13T17:57:20.7835924Z", - "endTime": "2017-09-13T18:13:20.7835924Z", + "startTime": "2018-06-16T00:39:13.8441801Z", + "endTime": "2018-06-16T00:55:13.8441801Z", "timeZone": "UTC" } }, @@ -72,7 +73,7 @@ ], "runtimeState": "Stopped" }, - "etag": "280327a7-0000-0000-0000-59b971bc0000" + "etag": "0a008ad4-0000-0000-0000-5b245c6e0000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Delete.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Delete.json index cb60f5853305..a421eae21ad0 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Delete.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Delete.json @@ -1,29 +1,29 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "triggerName": "exampleTrigger", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:26 GMT", - "x-ms-request-id": "797186e9-af57-4d6c-8b4b-c363df9e9bf1", + "Date": "Sat, 16 Jun 2018 00:46:26 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-correlation-request-id": "19402448-85f2-4872-b998-9c6c1e17f04d" + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "1eea81f0-87de-4c9d-87cd-915e592a9bcc", + "x-ms-correlation-request-id": "1eea81f0-87de-4c9d-87cd-915e592a9bcc" }, "body": null }, "204": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:26 GMT", - "x-ms-request-id": "7d968b21-a030-4ba9-961b-7bbc799c0810", + "Date": "Sat, 16 Jun 2018 00:46:26 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-correlation-request-id": "d66d750a-c28f-4be6-852a-30a67be744a1" + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "833e731f-67dc-48d3-b90f-6dd08e9d819f", + "x-ms-correlation-request-id": "833e731f-67dc-48d3-b90f-6dd08e9d819f" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Get.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Get.json index 36a1f0885074..2594e0f18c53 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Get.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Get.json @@ -1,35 +1,36 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "triggerName": "exampleTrigger", - "api-version": "2017-09-01-preview" + "ifNoneMatch": null, + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:58:22 GMT", - "x-ms-request-id": "bef4032e-cc3c-4ae7-b153-d1fdead84665", + "Date": "Sat, 16 Jun 2018 00:40:17 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14909", - "x-ms-correlation-request-id": "ca0d1b97-970b-494d-b7bb-b87692327db0" + "x-ms-ratelimit-remaining-subscription-reads": "14987", + "x-ms-request-id": "060364d7-7980-4def-8bc1-800552a9b53d", + "x-ms-correlation-request-id": "060364d7-7980-4def-8bc1-800552a9b53d" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", "name": "exampleTrigger", + "type": "Microsoft.DataFactory/factories/triggers", "properties": { "type": "ScheduleTrigger", "typeProperties": { "recurrence": { "frequency": "Minute", "interval": 4, - "startTime": "2017-09-13T17:57:21.7240518Z", - "endTime": "2017-09-13T18:13:21.7240518Z", + "startTime": "2018-06-16T00:39:14.905167Z", + "endTime": "2018-06-16T00:55:14.905167Z", "timeZone": "UTC" } }, - "description": "Example description", "pipelines": [ { "pipelineReference": { @@ -43,9 +44,10 @@ } } ], + "description": "Example description", "runtimeState": "Stopped" }, - "etag": "28032ba7-0000-0000-0000-59b971bd0000" + "etag": "0a008dd4-0000-0000-0000-5b245c6f0000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListByFactory.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListByFactory.json index dfa5940accc0..d624262a0bc7 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListByFactory.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListByFactory.json @@ -1,36 +1,36 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:58:23 GMT", - "x-ms-request-id": "d56fed8c-4033-427d-9fda-d4b8fc53e6b1", + "Date": "Sat, 16 Jun 2018 00:40:20 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14908", - "x-ms-correlation-request-id": "3b7c2a31-c772-447e-a657-c572a8354119" + "x-ms-ratelimit-remaining-subscription-reads": "14986", + "x-ms-request-id": "e474f8f8-b34f-4536-b059-ca740e6b44c3", + "x-ms-correlation-request-id": "e474f8f8-b34f-4536-b059-ca740e6b44c3" }, "body": { "value": [ { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", "name": "exampleTrigger", + "type": "Microsoft.DataFactory/factories/triggers", "properties": { "type": "ScheduleTrigger", "typeProperties": { "recurrence": { "frequency": "Minute", "interval": 4, - "startTime": "2017-09-13T17:57:21.7240518Z", - "endTime": "2017-09-13T18:13:21.7240518Z", + "startTime": "2018-06-16T00:39:14.905167Z", + "endTime": "2018-06-16T00:55:14.905167Z", "timeZone": "UTC" } }, - "description": "Example description", "pipelines": [ { "pipelineReference": { @@ -44,9 +44,10 @@ } } ], + "description": "Example description", "runtimeState": "Started" }, - "etag": "28032ca7-0000-0000-0000-59b971be0000" + "etag": "0a008ed4-0000-0000-0000-5b245c740000" } ] } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListRuns.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListRuns.json deleted file mode 100644 index 34a790263c70..000000000000 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_ListRuns.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", - "resourceGroupName": "exampleResourceGroup", - "factoryName": "exampleFactoryName", - "triggerName": "exampleTrigger", - "startTime": "2017-09-13T17%3A54%3A24.0440889Z", - "endTime": "2017-09-13T18%3A14%3A24.0440889Z", - "api-version": "2017-09-01-preview" - }, - "responses": { - "200": { - "headers": { - "Date": "Wed, 13 Sep 2017 18:04:24 GMT", - "x-ms-request-id": "c82b86e6-2e81-46e4-8e28-356dd4a15f84", - "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-reads": "14855", - "x-ms-correlation-request-id": "165d9588-bcba-49ac-a3d9-0dcc49be6c8a" - }, - "body": { - "value": [ - { - "triggerName": "exampleTrigger", - "triggerRunId": "08586962812027443030287916742", - "triggerType": "ScheduleTrigger", - "triggerRunTimestamp": "2017-09-13T18:01:22.7219263Z", - "status": "Succeeded", - "message": "", - "properties": { - "TriggerTime": "09/13/2017 18:01:22", - "ScheduleTime": "09/13/2017 18:01:21" - }, - "triggeredPipelines": { - "examplePipeline": "0bf632a4-98c4-4179-935b-0b220d14fb19" - } - } - ] - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Start.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Start.json index 7f0bbf8c93f3..e519779f355a 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Start.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Start.json @@ -1,19 +1,19 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "triggerName": "exampleTrigger", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:58:23 GMT", - "x-ms-request-id": "13c76ae4-02b3-49a2-9f2a-d2c9f8511507", + "Date": "Sat, 16 Jun 2018 00:40:20 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-correlation-request-id": "a28c76fa-3343-4bfb-9508-c92e2f374e79" + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "0c1669a9-5b55-47fe-9413-df6d8710697d", + "x-ms-correlation-request-id": "0c1669a9-5b55-47fe-9413-df6d8710697d" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Stop.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Stop.json index 66d1db8a9c1f..d26575b13848 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Stop.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Stop.json @@ -1,19 +1,19 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "triggerName": "exampleTrigger", - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 18:04:25 GMT", - "x-ms-request-id": "601d7eac-1d85-4196-a70b-76b9b906d6dd", + "Date": "Sat, 16 Jun 2018 00:46:24 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-correlation-request-id": "c1f7bc90-6b21-464f-9c00-6e3869c0e63c" + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "5aa854a5-7ac0-4c7e-9356-79c657f4e231", + "x-ms-correlation-request-id": "5aa854a5-7ac0-4c7e-9356-79c657f4e231" }, "body": null } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Update.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Update.json index f4b5a5d0aa50..279774e97f2a 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Update.json +++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Triggers_Update.json @@ -1,6 +1,6 @@ { "parameters": { - "subscriptionId": "12345678-1234-1234-12345678abc", + "subscriptionId": "12345678-1234-1234-1234-12345678abc", "resourceGroupName": "exampleResourceGroup", "factoryName": "exampleFactoryName", "triggerName": "exampleTrigger", @@ -12,12 +12,11 @@ "recurrence": { "frequency": "Minute", "interval": 4, - "startTime": "2017-09-13T17:57:21.7240518Z", - "endTime": "2017-09-13T18:13:21.7240518Z", + "startTime": "2018-06-16T00:39:14.905167Z", + "endTime": "2018-06-16T00:55:14.905167Z", "timeZone": "UTC" } }, - "description": "Example description", "pipelines": [ { "pipelineReference": { @@ -30,35 +29,36 @@ ] } } - ] + ], + "description": "Example description" } }, - "api-version": "2017-09-01-preview" + "api-version": "2018-06-01" }, "responses": { "200": { "headers": { - "Date": "Wed, 13 Sep 2017 17:58:21 GMT", - "x-ms-request-id": "aa1aee23-db99-4aee-83e3-36b46ec02829", + "Date": "Sat, 16 Jun 2018 00:40:15 GMT", "X-Content-Type-Options": "nosniff", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-correlation-request-id": "f0eff525-3ed5-4488-aa0e-3284c2b400f6" + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "d5ccf096-0618-4b26-9829-db77e4c391c7", + "x-ms-correlation-request-id": "d5ccf096-0618-4b26-9829-db77e4c391c7" }, "body": { - "id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", + "id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/triggers/exampleTrigger", "name": "exampleTrigger", + "type": "Microsoft.DataFactory/factories/triggers", "properties": { "type": "ScheduleTrigger", "typeProperties": { "recurrence": { "frequency": "Minute", "interval": 4, - "startTime": "2017-09-13T17:57:21.7240518Z", - "endTime": "2017-09-13T18:13:21.7240518Z", + "startTime": "2018-06-16T00:39:14.905167Z", + "endTime": "2018-06-16T00:55:14.905167Z", "timeZone": "UTC" } }, - "description": "Example description", "pipelines": [ { "pipelineReference": { @@ -72,9 +72,10 @@ } } ], + "description": "Example description", "runtimeState": "Stopped" }, - "etag": "28032ba7-0000-0000-0000-59b971bd0000" + "etag": "0a008dd4-0000-0000-0000-5b245c6f0000" } } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs b/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs index d3285c04cc31..01222a06e25e 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs @@ -54,9 +54,9 @@ public void Factories_Update() } [Fact] - public void Factories_ConfigureRepo() + public void Factories_ConfigureFactoryRepo() { - RunTest("Factories_ConfigureRepo", (example, client, responseCode) => + RunTest("Factories_ConfigureFactoryRepo", (example, client, responseCode) => { Factory resource = client.Factories.ConfigureFactoryRepo(LN(example), GetTypedParameter(example, client, "factoryRepoUpdate")); CheckResponseBody(example, client, responseCode, resource); @@ -117,7 +117,7 @@ public void IntegrationRuntimes_Update() { RunTest("IntegrationRuntimes_Update", (example, client, responseCode) => { - IntegrationRuntimeStatusResponse response = client.IntegrationRuntimes.Update(RGN(example), FN(example), IRN(example), + IntegrationRuntimeResource response = client.IntegrationRuntimes.Update(RGN(example), FN(example), IRN(example), new UpdateIntegrationRuntimeRequest { AutoUpdate = IntegrationRuntimeAutoUpdate.Off, @@ -176,6 +176,16 @@ public void IntegrationRuntimes_GetConnectionInfo() }); } + [Fact] + public void IntegrationRuntimes_GetMonitoringData() + { + RunTest("IntegrationRuntimes_GetMonitoringData", (example, client, responseCode) => + { + IntegrationRuntimeMonitoringData response = client.IntegrationRuntimes.GetMonitoringData(RGN(example), FN(example), IRN(example)); + CheckResponseBody(example, client, responseCode, response); + }); + } + [Fact] public void IntegrationRuntimes_RegenerateAuthKey() { @@ -225,6 +235,15 @@ public void IntegrationRuntimes_Upgrade() }); } + [Fact] + public void IntegrationRuntimes_SyncCredentials() + { + RunAyncApiTest("IntegrationRuntimes_SyncCredentials", (example, client, responseCode) => + { + client.IntegrationRuntimes.SyncCredentials(RGN(example), FN(example), IRN(example)); + }); + } + [Fact] public void IntegrationRuntimeNodes_Update() { @@ -238,19 +257,6 @@ public void IntegrationRuntimeNodes_Update() }); } - [Fact] - public void IntegrationRuntimes_RemoveNode() - { - RunAyncApiTest("IntegrationRuntimes_RemoveNode", (example, client, responseCode) => - { - client.IntegrationRuntimes.RemoveNode(RGN(example), FN(example), IRN(example), - new IntegrationRuntimeRemoveNodeRequest - { - NodeName = "Node_1" - }); - }); - } - [Fact] public void IntegrationRuntimeNodes_Delete() { @@ -368,11 +374,12 @@ public void Triggers_Start() } [Fact] - public void Triggers_ListRuns() + public void TriggerRuns_QueryByFactory() { - RunTest("Triggers_ListRuns", (example, client, responseCode) => + RunTest("TriggerRuns_QueryByFactory", (example, client, responseCode) => { - IPage response = client.Triggers.ListRuns(RGN(example), FN(example), TN(example), GetTypedParameter(example, client, "startTime"), GetTypedParameter(example, client, "endTime")); + RunFilterParameters filterParams = GetTypedParameter(example, client, "filterParameters"); + TriggerRunsQueryResponse response = client.TriggerRuns.QueryByFactory(RGN(example), FN(example), filterParams); CheckResponseBody(example, client, responseCode, response); }); } @@ -498,48 +505,48 @@ public void Pipelines_CreateRun() { RunTest("Pipelines_CreateRun", (example, client, responseCode) => { - CreateRunResponse response = client.Pipelines.CreateRun(RGN(example), FN(example), PN(example), GetTypedParameter>(example, client, "parameters")); + CreateRunResponse response = client.Pipelines.CreateRun(RGN(example), FN(example), PN(example), parameters: GetTypedParameter>(example, client, "parameters")); CheckResponseBody(example, client, responseCode, response); - // ISSUE: It always returns a 202 response with a runId and no Location header, regardless of whether a run was actually created }); } [Fact] - public void Factories_CancelPipelineRun() + public void PipelineRuns_Cancel() { - RunTest("Factories_CancelPipelineRun", (example, client, responseCode) => + RunTest("PipelineRuns_Cancel", (example, client, responseCode) => { - client.Factories.CancelPipelineRun(RGN(example), FN(example), new Guid().ToString()); + client.PipelineRuns.Cancel(RGN(example), FN(example), new Guid().ToString()); }); } [Fact] - public void PipelineRuns_ListByFactory() + public void PipelineRuns_Get() { - RunTest("PipelineRuns_ListByFactory", (example, client, responseCode) => + RunTest("PipelineRuns_Get", (example, client, responseCode) => { - PipelineRunFilterParameters filterParams = GetTypedParameter(example, client, "filterParameters"); - PipelineRunQueryResponse response = client.PipelineRuns.QueryByFactory(RGN(example), FN(example), filterParams); + PipelineRun response = client.PipelineRuns.Get(RGN(example), FN(example), GetTypedParameter(example, client, "runId")); CheckResponseBody(example, client, responseCode, response); }); } - + [Fact] - public void PipelineRuns_Get() + public void PipelineRuns_QueryByFactory() { - RunTest("PipelineRuns_Get", (example, client, responseCode) => + RunTest("PipelineRuns_QueryByFactory", (example, client, responseCode) => { - PipelineRun response = client.PipelineRuns.Get(RGN(example), FN(example), GetTypedParameter(example, client, "runId")); + RunFilterParameters filterParams = GetTypedParameter(example, client, "filterParameters"); + PipelineRunsQueryResponse response = client.PipelineRuns.QueryByFactory(RGN(example), FN(example), filterParams); CheckResponseBody(example, client, responseCode, response); }); } [Fact] - public void ActivityRuns_ListByPipelineRun() + public void ActivityRuns_QueryByPipelineRun() { - RunTest("ActivityRuns_ListByPipelineRun", (example, client, responseCode) => + RunTest("ActivityRuns_QueryByPipelineRun", (example, client, responseCode) => { - IPage response = client.ActivityRuns.ListByPipelineRun(RGN(example), FN(example), GetTypedParameter(example, client, "runId"), GetTypedParameter(example, client, "startTime"), GetTypedParameter(example, client, "endTime")); + RunFilterParameters filterParams = GetTypedParameter(example, client, "filterParameters"); + ActivityRunsQueryResponse response = client.ActivityRuns.QueryByPipelineRun(RGN(example), FN(example), GetTypedParameter(example, client, "runId"), filterParams); CheckResponseBody(example, client, responseCode, response); }); } @@ -549,7 +556,7 @@ public void Operations_List() { RunTest("Operations_List", (example, client, responseCode) => { - OperationListResponse response = client.Operations.List(); + IPage response = client.Operations.List(); CheckResponseBody(example, client, responseCode, response); }); } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs index 8828c07f28f8..526d34607d49 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs @@ -4,15 +4,14 @@ using Microsoft.Azure.Management.DataFactory; using Microsoft.Azure.Management.DataFactory.Models; -using Rm = Microsoft.Azure.Management.Resources; using Microsoft.Rest; using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; using Newtonsoft.Json.Linq; using System; -using System.Linq; using System.Collections.Generic; using System.Globalization; +using Rm = Microsoft.Azure.Management.Resources; namespace DataFactory.Tests.Utils { @@ -103,14 +102,14 @@ public void CaptureAllExamples() CapturePipelines_Get(); // 200 CapturePipelines_ListByFactory(); // 200 DateTime beforeStartTime = DateTime.UtcNow.AddMinutes(-1); // allow 1 minute for clock skew - string runId = CapturePipelines_CreateRun(); // 202, ISSUE service doesn't follow long-running pattern + string runId = CapturePipelines_CreateRun(); // 200 System.Threading.Thread.Sleep(TimeSpan.FromSeconds(120)); // Prefer to get succeeded monitoring result on first attempt even if it slows capture DateTime afterEndTime = DateTime.UtcNow.AddMinutes(10); // allow 10 minutes for run time, monitoring latency, and clock skew - CaptureFactories_CancelRun(); + CapturePipelineRuns_Cancel(); - CapturePipelineRuns_ListByFactory(runId, beforeStartTime, afterEndTime); // 200, waits until succeeded so ready to get logs + CapturePipelineRuns_QueryByFactory(runId, beforeStartTime, afterEndTime); // 200, waits until succeeded so ready to get logs CapturePipelineRuns_Get(runId); // 200 - CaptureActivityRuns_ListByPipelineRun(runId, beforeStartTime, afterEndTime); // 200 + CaptureActivityRuns_QueryByPipelineRun(runId, beforeStartTime, afterEndTime); // 200 // Start Trigger operations, leaving triggers available CaptureTriggers_Create(); // 200 @@ -118,7 +117,7 @@ public void CaptureAllExamples() CaptureTriggers_Get(); // 200 CaptureTriggers_Start(); // 202 CaptureTriggers_ListByFactory(); // 200 - CaptureTriggers_ListRuns(); // 200 + CaptureTriggerRuns_QueryByFactory(beforeStartTime, afterEndTime); // 200 CaptureTriggers_Stop(); // 202 // Finish Triggers operations, deleting triggers @@ -181,7 +180,7 @@ private void EnsureFactoryDoesNotExist() { client.Factories.Delete(secrets.ResourceGroupName, secrets.FactoryName); } - catch (ErrorResponseException) + catch (CloudException) { // in direct access case might get exception rather than 204 since rg doesn't exist } @@ -192,7 +191,7 @@ private void EnsureFactoryDoesNotExist() { client.Factories.Get(secrets.ResourceGroupName, secrets.FactoryName); } - catch (ErrorResponseException e) + catch (CloudException e) { if (e.Response.StatusCode == System.Net.HttpStatusCode.NotFound) { @@ -222,12 +221,11 @@ private void CaptureFactories_Update() private void CaptureFactories_ConfigureRepo() { - interceptor.CurrentExampleName = "Factories_Update"; + interceptor.CurrentExampleName = "Factories_ConfigureFactoryRepo"; var repoUpdate = new FactoryRepoUpdate() { - FactoryResourceId = string.Format("/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.DataFactory/factories/{2}", ExampleSecrets.ExampleSubId,ExampleSecrets.ExampleResourceGroupName, ExampleSecrets.ExampleFactoryName), - ResourceGroupName = ExampleSecrets.ExampleResourceGroupName, - VstsConfiguration = new FactoryVSTSConfiguration() + FactoryResourceId = string.Format("/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.DataFactory/factories/{2}", secrets.SubId, secrets.ResourceGroupName, secrets.FactoryName), + RepoConfiguration = new FactoryVSTSConfiguration() { AccountName = "ADF", ProjectName= "project", @@ -320,7 +318,7 @@ private void CaptureIntegrationRuntimes_Create() private void CaptureIntegrationRuntimes_Update() { interceptor.CurrentExampleName = "IntegrationRuntimes_Update"; - IntegrationRuntimeStatusResponse response = client.IntegrationRuntimes.Update(secrets.ResourceGroupName, secrets.FactoryName, integrationRuntimeName, + IntegrationRuntimeResource response = client.IntegrationRuntimes.Update(secrets.ResourceGroupName, secrets.FactoryName, integrationRuntimeName, new UpdateIntegrationRuntimeRequest { AutoUpdate = IntegrationRuntimeAutoUpdate.Off, @@ -402,17 +400,6 @@ private void CaptureIntegrationRuntimes_Upgrade() client.IntegrationRuntimes.Upgrade(secrets.ResourceGroupName, secrets.FactoryName, integrationRuntimeName); } - private void CaptureIntegrationRuntimes_RemoveNode() - { - interceptor.CurrentExampleName = "IntegrationRuntimes_RemoveNode"; - - client.IntegrationRuntimes.RemoveNode(secrets.ResourceGroupName, secrets.FactoryName, integrationRuntimeName, - new IntegrationRuntimeRemoveNodeRequest - { - NodeName = "Node_1" - }); - } - private void CaptureIntegrationRuntimeNodes_Update() { interceptor.CurrentExampleName = "IntegrationRuntimeNodes_Update"; @@ -556,6 +543,7 @@ private PipelineResource GetPipelineResource(string description) CopyActivity copyActivity = new CopyActivity { Name = "ExampleCopyActivity", + DataIntegrationUnits = 32, Inputs = new List { new DatasetReference @@ -637,15 +625,15 @@ private string CapturePipelines_CreateRun() { "OutputBlobNameList", outputBlobNameArray } }; - CreateRunResponse rtr = client.Pipelines.CreateRun(secrets.ResourceGroupName, secrets.FactoryName, pipelineName, arguments); + CreateRunResponse rtr = client.Pipelines.CreateRun(secrets.ResourceGroupName, secrets.FactoryName, pipelineName, parameters: arguments); return rtr.RunId; } - private void CaptureFactories_CancelRun() + private void CapturePipelineRuns_Cancel() { string runId = this.CapturePipelines_CreateRun(); - interceptor.CurrentExampleName = "Factories_CancelPipelineRun"; - client.Factories.CancelPipelineRun(secrets.ResourceGroupName, secrets.FactoryName, runId); + interceptor.CurrentExampleName = "PipelineRuns_Cancel"; + client.PipelineRuns.Cancel(secrets.ResourceGroupName, secrets.FactoryName, runId); } private void CapturePipelines_Delete() @@ -654,22 +642,22 @@ private void CapturePipelines_Delete() client.Pipelines.Delete(secrets.ResourceGroupName, secrets.FactoryName, pipelineName); } - private void CapturePipelineRuns_ListByFactory(string runId, DateTime lastUpdatedAfter, DateTime lastUpdatedBefore) + private void CapturePipelineRuns_QueryByFactory(string runId, DateTime lastUpdatedAfter, DateTime lastUpdatedBefore) { // Assumes run will be on first page if found, which is currently true. - interceptor.CurrentExampleName = "PipelineRuns_ListByFactory"; - PipelineRunQueryResponse response; + interceptor.CurrentExampleName = "PipelineRuns_QueryByFactory"; + PipelineRunsQueryResponse response; System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch(); sw.Start(); do { System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); - response = client.PipelineRuns.QueryByFactory(secrets.ResourceGroupName, secrets.FactoryName, new PipelineRunFilterParameters + response = client.PipelineRuns.QueryByFactory(secrets.ResourceGroupName, secrets.FactoryName, new RunFilterParameters { - Filters = new List + Filters = new List { - new PipelineRunQueryFilter(PipelineRunQueryFilterOperand.PipelineName, PipelineRunQueryFilterOperator.Equals, new List { pipelineName }) + new RunQueryFilter(RunQueryFilterOperand.PipelineName, RunQueryFilterOperator.Equals, new List { pipelineName }) }, LastUpdatedAfter = lastUpdatedAfter, LastUpdatedBefore = lastUpdatedBefore @@ -694,20 +682,24 @@ private void CapturePipelineRuns_Get(string runId) PipelineRun run = client.PipelineRuns.Get(secrets.ResourceGroupName, secrets.FactoryName, runId); } - private void CaptureActivityRuns_ListByPipelineRun(string runId, DateTime startTime, DateTime endTime) + private void CaptureActivityRuns_QueryByPipelineRun(string runId, DateTime lastUpdatedAfter, DateTime lastUpdatedBefore) { // Assumes activity runs are on first page if found, which is currently true - interceptor.CurrentExampleName = "ActivityRuns_ListByPipelineRun"; - IPage response; + interceptor.CurrentExampleName = "ActivityRuns_QueryByPipelineRun"; + ActivityRunsQueryResponse response; System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch(); sw.Start(); do { System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); - response = client.ActivityRuns.ListByPipelineRun(secrets.ResourceGroupName, secrets.FactoryName, runId, startTime, endTime); + response = client.ActivityRuns.QueryByPipelineRun(secrets.ResourceGroupName, secrets.FactoryName, runId, new RunFilterParameters + { + LastUpdatedAfter = lastUpdatedAfter, + LastUpdatedBefore = lastUpdatedBefore + }); if (response != null) { - foreach (ActivityRun item in response) + foreach (ActivityRun item in response.Value) { if (item.Status == "Succeeded") { @@ -716,7 +708,7 @@ private void CaptureActivityRuns_ListByPipelineRun(string runId, DateTime startT } } } while (sw.Elapsed.TotalMinutes <= 3); - throw new TimeoutException("CaptureActivityRuns_ListByPipelineRun didn't finish in 3 minutes, should take about 1"); + throw new TimeoutException("ActivityRuns_QueryByPipelineRun didn't finish in 3 minutes, should take about 1"); } private TriggerResource GetTriggerResource(string description) @@ -832,37 +824,47 @@ private void CaptureTriggers_Stop() client.Triggers.Stop(secrets.ResourceGroupName, secrets.FactoryName, triggerName); } - private void CaptureTriggers_ListRuns() + private void CaptureTriggerRuns_QueryByFactory(DateTime lastUpdatedAfter, DateTime lastUpdatedBefore) { - interceptor.CurrentExampleName = "Triggers_ListRuns"; + interceptor.CurrentExampleName = "TriggerRuns_QueryByFactory"; //Wait for the Trigger to Run System.Threading.Thread.Sleep(TimeSpan.FromMinutes(6)); - IPage response = client.Triggers.ListRuns(secrets.ResourceGroupName, secrets.FactoryName, triggerName, DateTime.UtcNow.AddMinutes(-10), DateTime.UtcNow.AddMinutes(10)); + TriggerRunsQueryResponse response = client.TriggerRuns.QueryByFactory(secrets.ResourceGroupName, secrets.FactoryName, new RunFilterParameters + { + Filters = new List + { + new RunQueryFilter("TriggerName", RunQueryFilterOperator.Equals, new List { triggerName }) + }, + LastUpdatedAfter = lastUpdatedAfter, + LastUpdatedBefore = lastUpdatedBefore + }); System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch(); sw.Start(); do { - if (response != null && response.Count() > 0) + if (response != null && response.Value.Count > 0) { return; // found successful run } System.Threading.Thread.Sleep(TimeSpan.FromSeconds(30)); - if (response.NextPageLink != null) - { - response = client.Triggers.ListRunsNext(response.NextPageLink); - } - else + response = client.TriggerRuns.QueryByFactory(secrets.ResourceGroupName, secrets.FactoryName, new RunFilterParameters { - response = client.Triggers.ListRuns(secrets.ResourceGroupName, secrets.FactoryName, triggerName, DateTime.UtcNow.AddMinutes(-20), DateTime.UtcNow.AddMinutes(20)); - } + Filters = new List + { + new RunQueryFilter("TriggerName", RunQueryFilterOperator.Equals, new List { triggerName }) + }, + LastUpdatedAfter = lastUpdatedAfter, + LastUpdatedBefore = lastUpdatedBefore, + ContinuationToken = response.ContinuationToken + }); } while (sw.Elapsed.TotalMinutes <= 3); - throw new TimeoutException("Triggers_ListRuns didn't finish in 5 minutes"); + throw new TimeoutException("TriggerRuns_QueryByFactory didn't finish in 5 minutes"); } private void CaptureTriggers_Delete() @@ -874,7 +876,7 @@ private void CaptureTriggers_Delete() private void CaptureOperations_List() { interceptor.CurrentExampleName = "Operations_List"; - OperationListResponse operations = client.Operations.List(); + IPage operations = client.Operations.List(); } } diff --git a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleHelpers.cs b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleHelpers.cs index 220dab5abb76..ff40bff59a5f 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleHelpers.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleHelpers.cs @@ -27,7 +27,7 @@ public static class ExampleHelpers /// /// Work around issue where apparently no version of client runtime fully supports .net standard /// - class CertificateCredentials: ServiceClientCredentials + class CertificateCredentials : ServiceClientCredentials { private X509Certificate2 cert; public CertificateCredentials(X509Certificate2 cert) @@ -88,7 +88,7 @@ public static ExampleSecrets ReadSecretsFile(string path) string json = File.ReadAllText(path); return SafeJsonConvert.DeserializeObject(json); } - + public static Rm.IResourceManagementClient GetRealRmClient(ExampleSecrets secrets) { Rm.IResourceManagementClient client = null; @@ -109,6 +109,20 @@ public static Rm.IResourceManagementClient GetRealRmClient(ExampleSecrets secret client = new Rm.ResourceManagementClient(creds) { SubscriptionId = secrets.SubId }; client.BaseUri = new Uri("https://api-dogfood.resources.windows-int.net/"); } + else if (secrets.Environment == "dogfood") + { + string ArmTenant = secrets.TenantId; + string ArmServicePrincipalIdentity = secrets.ClientId; + string SubId = secrets.SubId; + // Use service principal with cert to authenticate against Azure + string secret = secrets.ClientSecret; + var cac = new ClientCredential(ArmServicePrincipalIdentity, secret); + var context = new AuthenticationContext("https://login.windows-ppe.net/" + ArmTenant); + AuthenticationResult result = context.AcquireTokenAsync("https://management.core.windows.net/", cac).Result; + ServiceClientCredentials creds = new TokenCredentials(result.AccessToken); + client = new Rm.ResourceManagementClient(creds) { SubscriptionId = secrets.SubId }; + client.BaseUri = new Uri("https://api-dogfood.resources.windows-int.net/"); + } else if (secrets.Environment == "prod") { // Use Service Principal to authenticate against Azure @@ -150,6 +164,20 @@ public static IDataFactoryManagementClient GetRealClient(ExampleSecrets secrets) client = new DataFactoryManagementClient(creds) { SubscriptionId = SubId }; client.BaseUri = new Uri("https://api-dogfood.resources.windows-int.net/"); } + else if (secrets.Environment == "dogfood") + { + string ArmTenant = secrets.TenantId; + string ArmServicePrincipalIdentity = secrets.ClientId; + string SubId = secrets.SubId; + // Use service principal with key to authenticate against Azure + string secret = secrets.ClientSecret; + var cac = new ClientCredential(ArmServicePrincipalIdentity, secret); + var context = new AuthenticationContext("https://login.windows-ppe.net/" + ArmTenant); + AuthenticationResult result = context.AcquireTokenAsync("https://management.core.windows.net/", cac).Result; + ServiceClientCredentials creds = new TokenCredentials(result.AccessToken); + client = new DataFactoryManagementClient(creds) { SubscriptionId = SubId }; + client.BaseUri = new Uri("https://api-dogfood.resources.windows-int.net/"); + } else if (secrets.Environment == "prod") { // Use Service Principal to authenticate against Azure diff --git a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleSecrets.cs b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleSecrets.cs index a3ce364bd128..fe756547967b 100644 --- a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleSecrets.cs +++ b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleSecrets.cs @@ -11,10 +11,10 @@ public class ExampleSecrets // The constants are example values used when writing captured example json. // The properties are actual values used when capturing example json, read from a json config file. - public const string ExampleTenantId = "12345678-1234-1234-123456789abc"; - public const string ExampleClientId = "12345678-1234-1234-123456789abc"; + public const string ExampleTenantId = "12345678-1234-1234-1234-123456789abc"; + public const string ExampleClientId = "12345678-1234-1234-1234-123456789abc"; public const string ExampleClientSecret = "examplePassword"; - public const string ExampleSubId = "12345678-1234-1234-12345678abc"; + public const string ExampleSubId = "12345678-1234-1234-1234-12345678abc"; public const string ExampleResourceGroupName = "exampleResourceGroup"; public const string ExampleFactoryName = "exampleFactoryName"; public const string ExampleFactoryLocation = "East US"; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs index 1557a565472a..e3d9674d6f28 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs @@ -51,7 +51,7 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) public DataFactoryManagementClient Client { get; private set; } /// - /// List activity runs based on input filter conditions. + /// Query activity runs based on input filter conditions. /// /// /// The resource group name. @@ -62,20 +62,8 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) /// /// The pipeline run identifier. /// - /// - /// The start time of activity runs in ISO8601 format. - /// - /// - /// The end time of activity runs in ISO8601 format. - /// - /// - /// The status of the pipeline run. - /// - /// - /// The name of the activity. - /// - /// - /// The linked service name. + /// + /// Parameters to filter the activity runs. /// /// /// Headers that will be added to request. @@ -83,7 +71,7 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -98,7 +86,7 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByPipelineRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, System.DateTime startTime, System.DateTime endTime, string status = default(string), string activityName = default(string), string linkedServiceName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> QueryByPipelineRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, RunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -150,20 +138,13 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (linkedServiceName != null) + if (filterParameters == null) { - if (linkedServiceName.Length > 260) - { - throw new ValidationException(ValidationRules.MaxLength, "linkedServiceName", 260); - } - if (linkedServiceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "linkedServiceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(linkedServiceName, "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$")) - { - throw new ValidationException(ValidationRules.Pattern, "linkedServiceName", "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$"); - } + throw new ValidationException(ValidationRules.CannotBeNull, "filterParameters"); + } + if (filterParameters != null) + { + filterParameters.Validate(); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -175,17 +156,13 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("runId", runId); - tracingParameters.Add("startTime", startTime); - tracingParameters.Add("endTime", endTime); - tracingParameters.Add("status", status); - tracingParameters.Add("activityName", activityName); - tracingParameters.Add("linkedServiceName", linkedServiceName); + tracingParameters.Add("filterParameters", filterParameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByPipelineRun", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "QueryByPipelineRun", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}/activityruns").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}/queryActivityruns").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); @@ -195,20 +172,6 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } - _queryParameters.Add(string.Format("startTime={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(startTime, Client.SerializationSettings).Trim('"')))); - _queryParameters.Add(string.Format("endTime={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(endTime, Client.SerializationSettings).Trim('"')))); - if (status != null) - { - _queryParameters.Add(string.Format("status={0}", System.Uri.EscapeDataString(status))); - } - if (activityName != null) - { - _queryParameters.Add(string.Format("activityName={0}", System.Uri.EscapeDataString(activityName))); - } - if (linkedServiceName != null) - { - _queryParameters.Add(string.Format("linkedServiceName={0}", System.Uri.EscapeDataString(linkedServiceName))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -216,7 +179,7 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -247,174 +210,12 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) // Serialize Request string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) + if(filterParameters != null) { - ServiceClientTracing.Exit(_invocationId, _result); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(filterParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } - return _result; - } - - /// - /// List activity runs based on input filter conditions. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListByPipelineRunNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByPipelineRunNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; // Set Credentials if (Client.Credentials != null) { @@ -437,13 +238,14 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -453,6 +255,10 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -465,7 +271,7 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -478,7 +284,7 @@ internal ActivityRunsOperations(DataFactoryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs index a5dfec659a5a..17f1fb26c6c9 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.DataFactory public static partial class ActivityRunsOperationsExtensions { /// - /// List activity runs based on input filter conditions. + /// Query activity runs based on input filter conditions. /// /// /// The operations group for this extension method. @@ -36,28 +36,16 @@ public static partial class ActivityRunsOperationsExtensions /// /// The pipeline run identifier. /// - /// - /// The start time of activity runs in ISO8601 format. + /// + /// Parameters to filter the activity runs. /// - /// - /// The end time of activity runs in ISO8601 format. - /// - /// - /// The status of the pipeline run. - /// - /// - /// The name of the activity. - /// - /// - /// The linked service name. - /// - public static IPage ListByPipelineRun(this IActivityRunsOperations operations, string resourceGroupName, string factoryName, string runId, System.DateTime startTime, System.DateTime endTime, string status = default(string), string activityName = default(string), string linkedServiceName = default(string)) + public static ActivityRunsQueryResponse QueryByPipelineRun(this IActivityRunsOperations operations, string resourceGroupName, string factoryName, string runId, RunFilterParameters filterParameters) { - return operations.ListByPipelineRunAsync(resourceGroupName, factoryName, runId, startTime, endTime, status, activityName, linkedServiceName).GetAwaiter().GetResult(); + return operations.QueryByPipelineRunAsync(resourceGroupName, factoryName, runId, filterParameters).GetAwaiter().GetResult(); } /// - /// List activity runs based on input filter conditions. + /// Query activity runs based on input filter conditions. /// /// /// The operations group for this extension method. @@ -71,61 +59,15 @@ public static partial class ActivityRunsOperationsExtensions /// /// The pipeline run identifier. /// - /// - /// The start time of activity runs in ISO8601 format. - /// - /// - /// The end time of activity runs in ISO8601 format. - /// - /// - /// The status of the pipeline run. - /// - /// - /// The name of the activity. - /// - /// - /// The linked service name. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByPipelineRunAsync(this IActivityRunsOperations operations, string resourceGroupName, string factoryName, string runId, System.DateTime startTime, System.DateTime endTime, string status = default(string), string activityName = default(string), string linkedServiceName = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByPipelineRunWithHttpMessagesAsync(resourceGroupName, factoryName, runId, startTime, endTime, status, activityName, linkedServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// List activity runs based on input filter conditions. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListByPipelineRunNext(this IActivityRunsOperations operations, string nextPageLink) - { - return operations.ListByPipelineRunNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// List activity runs based on input filter conditions. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// Parameters to filter the activity runs. /// /// /// The cancellation token. /// - public static async Task> ListByPipelineRunNextAsync(this IActivityRunsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task QueryByPipelineRunAsync(this IActivityRunsOperations operations, string resourceGroupName, string factoryName, string runId, RunFilterParameters filterParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByPipelineRunNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.QueryByPipelineRunWithHttpMessagesAsync(resourceGroupName, factoryName, runId, filterParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs index 2c5952ba80bd..b5c116794769 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs @@ -124,6 +124,11 @@ public partial class DataFactoryManagementClient : ServiceClient public virtual ITriggersOperations Triggers { get; private set; } + /// + /// Gets the ITriggerRunsOperations. + /// + public virtual ITriggerRunsOperations TriggerRuns { get; private set; } + /// /// Initializes a new instance of the DataFactoryManagementClient class. /// @@ -335,8 +340,9 @@ private void Initialize() PipelineRuns = new PipelineRunsOperations(this); ActivityRuns = new ActivityRunsOperations(this); Triggers = new TriggersOperations(this); + TriggerRuns = new TriggerRunsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2017-09-01-preview"; + ApiVersion = "2018-06-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; @@ -368,6 +374,8 @@ private void Initialize() }; SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); @@ -392,8 +400,6 @@ private void Initialize() DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); - SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("authorizationType")); - DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("authorizationType")); CustomInitialize(); DeserializationSettings.Converters.Add(new TransformationJsonConverter()); DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs index d04d5b6e17c8..5ed00054a770 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs @@ -65,7 +65,7 @@ internal DatasetsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -211,13 +211,14 @@ internal DatasetsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,6 +228,10 @@ internal DatasetsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -296,7 +301,7 @@ internal DatasetsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -487,13 +492,14 @@ internal DatasetsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -503,6 +509,10 @@ internal DatasetsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -559,13 +569,18 @@ internal DatasetsOperations(DataFactoryManagementClient client) /// /// 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. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -580,7 +595,7 @@ internal DatasetsOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string datasetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string datasetName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -657,6 +672,7 @@ internal DatasetsOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("datasetName", datasetName); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -686,6 +702,14 @@ internal DatasetsOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -730,15 +754,16 @@ internal DatasetsOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 304) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -748,6 +773,10 @@ internal DatasetsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -810,7 +839,7 @@ internal DatasetsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -974,13 +1003,14 @@ internal DatasetsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -990,6 +1020,10 @@ internal DatasetsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1028,7 +1062,7 @@ internal DatasetsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1124,13 +1158,14 @@ internal DatasetsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1140,6 +1175,10 @@ internal DatasetsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs index 640e6d084c69..02506730bcbe 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs @@ -136,9 +136,14 @@ public static IPage ListByFactory(this IDatasetsOperations oper /// /// The dataset name. /// - public static DatasetResource Get(this IDatasetsOperations operations, string resourceGroupName, string factoryName, string datasetName) + /// + /// 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. + /// + public static DatasetResource Get(this IDatasetsOperations operations, string resourceGroupName, string factoryName, string datasetName, string ifNoneMatch = default(string)) { - return operations.GetAsync(resourceGroupName, factoryName, datasetName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, factoryName, datasetName, ifNoneMatch).GetAwaiter().GetResult(); } /// @@ -156,12 +161,17 @@ public static DatasetResource Get(this IDatasetsOperations operations, string re /// /// 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. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDatasetsOperations operations, string resourceGroupName, string factoryName, string datasetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDatasetsOperations operations, string resourceGroupName, string factoryName, string datasetName, string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, datasetName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, datasetName, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs index 16a08e8fdba3..23b66ed5f7f5 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs @@ -59,7 +59,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -163,13 +163,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -179,6 +180,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -238,7 +243,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -271,6 +276,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "factoryRepoUpdate"); } + if (factoryRepoUpdate != null) + { + factoryRepoUpdate.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -359,13 +368,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -375,6 +385,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -431,7 +445,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -556,13 +570,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -572,6 +587,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -628,13 +647,17 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// Factory resource definition. /// + /// + /// ETag of the factory entity. Should only be specified for update, for which + /// it should match existing entity or can be * for unconditional update. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -649,7 +672,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, Factory factory, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, Factory factory, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -701,6 +724,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "factory"); } + if (factory != null) + { + factory.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -711,6 +738,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("factory", factory); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } @@ -739,6 +767,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -791,13 +827,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -807,6 +844,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -869,7 +910,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1026,13 +1067,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1042,6 +1084,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1095,13 +1141,18 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The factory name. /// + /// + /// ETag of the factory 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. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1116,7 +1167,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1173,6 +1224,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -1201,6 +1253,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1245,15 +1305,16 @@ internal FactoriesOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 304) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1263,6 +1324,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1322,7 +1387,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1465,13 +1530,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1481,215 +1547,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) + if (_httpResponse.Headers.Contains("x-ms-request-id")) { - ServiceClientTracing.Error(_invocationId, ex); + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Cancel a pipeline run by its run ID. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The pipeline run identifier. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task CancelPipelineRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } - if (factoryName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "factoryName"); - } - if (factoryName != null) - { - if (factoryName.Length > 63) - { - throw new ValidationException(ValidationRules.MaxLength, "factoryName", 63); - } - if (factoryName.Length < 3) - { - throw new ValidationException(ValidationRules.MinLength, "factoryName", 3); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(factoryName, "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "factoryName", "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$"); - } - } - if (runId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "runId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("factoryName", factoryName); - tracingParameters.Add("runId", runId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CancelPipelineRun", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/cancelpipelinerun/{runId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); - _url = _url.Replace("{runId}", System.Uri.EscapeDataString(runId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1728,7 +1589,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1824,13 +1685,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1840,6 +1702,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1896,7 +1762,7 @@ internal FactoriesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1992,13 +1858,14 @@ internal FactoriesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2008,6 +1875,10 @@ internal FactoriesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs index 5add376d3a18..222bc5fd2fb3 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs @@ -138,9 +138,13 @@ public static IPage ListByResourceGroup(this IFactoriesOperations opera /// /// Factory resource definition. /// - public static Factory CreateOrUpdate(this IFactoriesOperations operations, string resourceGroupName, string factoryName, Factory factory) + /// + /// ETag of the factory entity. Should only be specified for update, for which + /// it should match existing entity or can be * for unconditional update. + /// + public static Factory CreateOrUpdate(this IFactoriesOperations operations, string resourceGroupName, string factoryName, Factory factory, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, factoryName, factory).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, factoryName, factory, ifMatch).GetAwaiter().GetResult(); } /// @@ -158,12 +162,16 @@ public static Factory CreateOrUpdate(this IFactoriesOperations operations, strin /// /// Factory resource definition. /// + /// + /// ETag of the factory entity. Should only be specified for update, for which + /// it should match existing entity or can be * for unconditional update. + /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IFactoriesOperations operations, string resourceGroupName, string factoryName, Factory factory, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IFactoriesOperations operations, string resourceGroupName, string factoryName, Factory factory, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, factoryName, factory, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, factoryName, factory, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -227,9 +235,14 @@ public static Factory Update(this IFactoriesOperations operations, string resour /// /// The factory name. /// - public static Factory Get(this IFactoriesOperations operations, string resourceGroupName, string factoryName) + /// + /// ETag of the factory 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. + /// + public static Factory Get(this IFactoriesOperations operations, string resourceGroupName, string factoryName, string ifNoneMatch = default(string)) { - return operations.GetAsync(resourceGroupName, factoryName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, factoryName, ifNoneMatch).GetAwaiter().GetResult(); } /// @@ -244,12 +257,17 @@ public static Factory Get(this IFactoriesOperations operations, string resourceG /// /// The factory name. /// + /// + /// ETag of the factory 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. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IFactoriesOperations operations, string resourceGroupName, string factoryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IFactoriesOperations operations, string resourceGroupName, string factoryName, string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -292,49 +310,6 @@ public static void Delete(this IFactoriesOperations operations, string resourceG (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, factoryName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } - /// - /// Cancel a pipeline run by its run ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The pipeline run identifier. - /// - public static void CancelPipelineRun(this IFactoriesOperations operations, string resourceGroupName, string factoryName, string runId) - { - operations.CancelPipelineRunAsync(resourceGroupName, factoryName, runId).GetAwaiter().GetResult(); - } - - /// - /// Cancel a pipeline run by its run ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The pipeline run identifier. - /// - /// - /// The cancellation token. - /// - public static async Task CancelPipelineRunAsync(this IFactoriesOperations operations, string resourceGroupName, string factoryName, string runId, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.CancelPipelineRunWithHttpMessagesAsync(resourceGroupName, factoryName, runId, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - /// /// Lists factories under the specified subscription. /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IActivityRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IActivityRunsOperations.cs index 91628342ca8e..6ab4e4404ad8 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IActivityRunsOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IActivityRunsOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.DataFactory public partial interface IActivityRunsOperations { /// - /// List activity runs based on input filter conditions. + /// Query activity runs based on input filter conditions. /// /// /// The resource group name. @@ -35,42 +35,8 @@ public partial interface IActivityRunsOperations /// /// The pipeline run identifier. /// - /// - /// The start time of activity runs in ISO8601 format. - /// - /// - /// The end time of activity runs in ISO8601 format. - /// - /// - /// The status of the pipeline run. - /// - /// - /// The name of the activity. - /// - /// - /// The linked service name. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByPipelineRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, System.DateTime startTime, System.DateTime endTime, string status = default(string), string activityName = default(string), string linkedServiceName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// List activity runs based on input filter conditions. - /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// Parameters to filter the activity runs. /// /// /// The headers that will be added to request. @@ -78,7 +44,7 @@ public partial interface IActivityRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -87,6 +53,6 @@ public partial interface IActivityRunsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByPipelineRunNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> QueryByPipelineRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, RunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs index e3454fae3f04..275d4e4008e9 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs @@ -119,5 +119,10 @@ public partial interface IDataFactoryManagementClient : System.IDisposable /// ITriggersOperations Triggers { get; } + /// + /// Gets the ITriggerRunsOperations. + /// + ITriggerRunsOperations TriggerRuns { get; } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs index 6324df435dfe..76516cf6e45c 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs @@ -38,7 +38,7 @@ public partial interface IDatasetsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ public partial interface IDatasetsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -96,13 +96,18 @@ public partial interface IDatasetsOperations /// /// 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. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -111,7 +116,7 @@ public partial interface IDatasetsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string datasetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string datasetName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a dataset. /// @@ -130,7 +135,7 @@ public partial interface IDatasetsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -149,7 +154,7 @@ public partial interface IDatasetsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs index 156e76dd98ae..e27291ccd9f9 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs @@ -32,7 +32,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -57,7 +57,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -79,7 +79,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -101,13 +101,18 @@ public partial interface IFactoriesOperations /// /// Factory resource definition. /// + /// + /// ETag of the factory entity. Should only be specified for update, + /// for which it should match existing entity or can be * for + /// unconditional update. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -116,7 +121,7 @@ public partial interface IFactoriesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, Factory factory, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, Factory factory, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates a factory. /// @@ -135,7 +140,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -154,13 +159,18 @@ public partial interface IFactoriesOperations /// /// The factory name. /// + /// + /// ETag of the factory 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. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -169,7 +179,7 @@ public partial interface IFactoriesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a factory. /// @@ -185,7 +195,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -193,31 +203,6 @@ public partial interface IFactoriesOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string factoryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Cancel a pipeline run by its run ID. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The pipeline run identifier. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task CancelPipelineRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Lists factories under the specified subscription. /// /// @@ -229,7 +214,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -251,7 +236,7 @@ public partial interface IFactoriesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimeNodesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimeNodesOperations.cs index 96244e31122a..7887182305ce 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimeNodesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimeNodesOperations.cs @@ -44,7 +44,7 @@ public partial interface IIntegrationRuntimeNodesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -75,7 +75,7 @@ public partial interface IIntegrationRuntimeNodesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -106,7 +106,7 @@ public partial interface IIntegrationRuntimeNodesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs index b7dc2364a779..1db07085bbf1 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs @@ -38,7 +38,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -96,13 +96,18 @@ public partial interface IIntegrationRuntimesOperations /// /// The integration runtime name. /// + /// + /// ETag of the integration runtime 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. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -111,7 +116,7 @@ public partial interface IIntegrationRuntimesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates an integration runtime. /// @@ -133,7 +138,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -142,7 +147,7 @@ public partial interface IIntegrationRuntimesOperations /// /// Thrown when a required parameter is null /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes an integration runtime. /// @@ -161,7 +166,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -186,7 +191,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -215,7 +220,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -247,7 +252,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -275,7 +280,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -303,7 +308,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -331,7 +336,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -339,34 +344,6 @@ public partial interface IIntegrationRuntimesOperations /// Task StopWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Remove a node from integration runtime. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The integration runtime name. - /// - /// - /// The name of the node to be removed from an integration runtime. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task RemoveNodeWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, IntegrationRuntimeRemoveNodeRequest removeNodeParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Force the integration runtime to synchronize credentials across /// integration runtime nodes, and this will override the credentials /// across all worker nodes with those available on the dispatcher @@ -389,7 +366,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -415,7 +392,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -444,7 +421,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -469,7 +446,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -497,7 +474,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -516,7 +493,7 @@ public partial interface IIntegrationRuntimesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs index 2242be726e6c..d04b40b40954 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs @@ -38,7 +38,7 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -96,13 +96,18 @@ public partial interface ILinkedServicesOperations /// /// The linked service name. /// + /// + /// ETag of the linked service 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. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -111,7 +116,7 @@ public partial interface ILinkedServicesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string linkedServiceName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a linked service. /// @@ -130,7 +135,7 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -149,7 +154,7 @@ public partial interface ILinkedServicesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs index a1441169fc9b..13a41f065270 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs @@ -32,7 +32,7 @@ public partial interface IOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -41,6 +41,28 @@ public partial interface IOperations /// /// Thrown when a required parameter is null /// - Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the available Azure Data Factory API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs index d693e0351fd1..9a2ffacf8938 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs @@ -42,7 +42,7 @@ public partial interface IPipelineRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -51,7 +51,7 @@ public partial interface IPipelineRunsOperations /// /// Thrown when a required parameter is null /// - Task> QueryByFactoryWithHttpMessagesAsync(string resourceGroupName, string factoryName, PipelineRunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> QueryByFactoryWithHttpMessagesAsync(string resourceGroupName, string factoryName, RunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Get a pipeline run by its run ID. /// @@ -70,7 +70,7 @@ public partial interface IPipelineRunsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -80,5 +80,30 @@ public partial interface IPipelineRunsOperations /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Cancel a pipeline run by its run ID. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// The pipeline run identifier. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CancelWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs index 53110ad46387..23d82963a866 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs @@ -38,7 +38,7 @@ public partial interface IPipelinesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ public partial interface IPipelinesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -96,13 +96,18 @@ public partial interface IPipelinesOperations /// /// The pipeline name. /// + /// + /// ETag of the pipeline 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. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -111,7 +116,7 @@ public partial interface IPipelinesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a pipeline. /// @@ -130,7 +135,7 @@ public partial interface IPipelinesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -149,8 +154,13 @@ public partial interface IPipelinesOperations /// /// The pipeline name. /// + /// + /// The pipeline run identifier. If run ID is specified the parameters + /// of the the specified run will be used to create a new run. + /// /// - /// Parameters of the pipeline run. + /// Parameters of the pipeline run. These parameters will be used only + /// if the runId is not specified. /// /// /// The headers that will be added to request. @@ -158,7 +168,7 @@ public partial interface IPipelinesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -167,7 +177,7 @@ public partial interface IPipelinesOperations /// /// Thrown when a required parameter is null /// - Task> CreateRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, IDictionary parameters = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default(string), IDictionary parameters = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists pipelines. /// @@ -180,7 +190,7 @@ public partial interface IPipelinesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggerRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggerRunsOperations.cs new file mode 100644 index 000000000000..79b62b150a39 --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggerRunsOperations.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// TriggerRunsOperations operations. + /// + public partial interface ITriggerRunsOperations + { + /// + /// Query trigger runs. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// Parameters to filter the pipeline run. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> QueryByFactoryWithHttpMessagesAsync(string resourceGroupName, string factoryName, RunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs index f33f949b60cd..638fc80b41a1 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs @@ -38,7 +38,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -96,13 +96,18 @@ public partial interface ITriggersOperations /// /// The trigger name. /// + /// + /// ETag of the trigger 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. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -111,7 +116,7 @@ public partial interface ITriggersOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a trigger. /// @@ -130,7 +135,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -155,7 +160,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -180,7 +185,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -188,40 +193,6 @@ public partial interface ITriggersOperations /// Task StopWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List trigger runs. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The trigger name. - /// - /// - /// Start time for trigger runs. - /// - /// - /// End time for trigger runs. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListRunsWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, System.DateTime startTime, System.DateTime endTime, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Starts a trigger. /// /// @@ -239,7 +210,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -264,7 +235,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -283,7 +254,7 @@ public partial interface ITriggersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -293,27 +264,5 @@ public partial interface ITriggersOperations /// Thrown when a required parameter is null /// Task>> ListByFactoryNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// List trigger runs. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListRunsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimeNodesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimeNodesOperations.cs index 64ff5c93c3cb..b7ae77717d7b 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimeNodesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimeNodesOperations.cs @@ -71,7 +71,7 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -256,13 +256,14 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -272,6 +273,10 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -322,7 +327,7 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -521,13 +526,14 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -537,6 +543,10 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -602,7 +612,7 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -790,13 +800,14 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -806,6 +817,10 @@ internal IntegrationRuntimeNodesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs index 30c314480120..a3e6d3c5f3b2 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs @@ -65,7 +65,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -211,13 +211,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,6 +228,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -297,7 +302,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -488,13 +493,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -504,6 +510,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -560,13 +570,18 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The integration runtime name. /// + /// + /// ETag of the integration runtime 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. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -581,7 +596,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -658,6 +673,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("integrationRuntimeName", integrationRuntimeName); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -687,6 +703,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -731,15 +755,16 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 304) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -749,6 +774,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -814,7 +843,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -829,7 +858,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -992,13 +1021,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1008,6 +1038,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1020,7 +1054,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1033,7 +1067,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1070,7 +1104,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1234,13 +1268,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1250,6 +1285,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1294,7 +1333,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1461,13 +1500,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1477,6 +1517,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1540,7 +1584,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1707,13 +1751,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1723,6 +1768,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1788,7 +1837,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1966,13 +2015,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1982,6 +2032,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -2044,7 +2098,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -2211,13 +2265,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2227,6 +2282,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -2321,244 +2380,6 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } - /// - /// Remove a node from integration runtime. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The integration runtime name. - /// - /// - /// The name of the node to be removed from an integration runtime. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task RemoveNodeWithHttpMessagesAsync(string resourceGroupName, string factoryName, string integrationRuntimeName, IntegrationRuntimeRemoveNodeRequest removeNodeParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } - if (factoryName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "factoryName"); - } - if (factoryName != null) - { - if (factoryName.Length > 63) - { - throw new ValidationException(ValidationRules.MaxLength, "factoryName", 63); - } - if (factoryName.Length < 3) - { - throw new ValidationException(ValidationRules.MinLength, "factoryName", 3); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(factoryName, "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "factoryName", "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$"); - } - } - if (integrationRuntimeName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "integrationRuntimeName"); - } - if (integrationRuntimeName != null) - { - if (integrationRuntimeName.Length > 63) - { - throw new ValidationException(ValidationRules.MaxLength, "integrationRuntimeName", 63); - } - if (integrationRuntimeName.Length < 3) - { - throw new ValidationException(ValidationRules.MinLength, "integrationRuntimeName", 3); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(integrationRuntimeName, "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "integrationRuntimeName", "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (removeNodeParameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "removeNodeParameters"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("factoryName", factoryName); - tracingParameters.Add("integrationRuntimeName", integrationRuntimeName); - tracingParameters.Add("removeNodeParameters", removeNodeParameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "RemoveNode", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/integrationRuntimes/{integrationRuntimeName}/removeNode").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); - _url = _url.Replace("{integrationRuntimeName}", System.Uri.EscapeDataString(integrationRuntimeName)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(removeNodeParameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(removeNodeParameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - /// /// Force the integration runtime to synchronize credentials across integration /// runtime nodes, and this will override the credentials across all worker @@ -2581,7 +2402,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -2745,13 +2566,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2761,6 +2583,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -2806,7 +2632,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -2973,13 +2799,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2989,6 +2816,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -3051,7 +2882,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -3215,13 +3046,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -3231,6 +3063,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -3275,7 +3111,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -3442,13 +3278,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -3458,6 +3295,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -3520,7 +3361,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -3684,13 +3525,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -3700,6 +3542,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -3738,7 +3584,7 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -3834,13 +3680,14 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -3850,6 +3697,10 @@ internal IntegrationRuntimesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs index 5de81050b3cc..283eb6aa3068 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs @@ -138,9 +138,14 @@ public static IPage ListByFactory(this IIntegrationR /// /// The integration runtime name. /// - public static IntegrationRuntimeResource Get(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName) + /// + /// ETag of the integration runtime 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. + /// + public static IntegrationRuntimeResource Get(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, string ifNoneMatch = default(string)) { - return operations.GetAsync(resourceGroupName, factoryName, integrationRuntimeName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, factoryName, integrationRuntimeName, ifNoneMatch).GetAwaiter().GetResult(); } /// @@ -158,12 +163,17 @@ public static IntegrationRuntimeResource Get(this IIntegrationRuntimesOperations /// /// The integration runtime name. /// + /// + /// ETag of the integration runtime 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. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, integrationRuntimeName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, integrationRuntimeName, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -187,7 +197,7 @@ public static IntegrationRuntimeResource Get(this IIntegrationRuntimesOperations /// /// The parameters for updating an integration runtime. /// - public static IntegrationRuntimeStatusResponse Update(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest) + public static IntegrationRuntimeResource Update(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest) { return operations.UpdateAsync(resourceGroupName, factoryName, integrationRuntimeName, updateIntegrationRuntimeRequest).GetAwaiter().GetResult(); } @@ -213,7 +223,7 @@ public static IntegrationRuntimeStatusResponse Update(this IIntegrationRuntimesO /// /// The cancellation token. /// - public static async Task UpdateAsync(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, UpdateIntegrationRuntimeRequest updateIntegrationRuntimeRequest, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, factoryName, integrationRuntimeName, updateIntegrationRuntimeRequest, null, cancellationToken).ConfigureAwait(false)) { @@ -545,55 +555,6 @@ public static void Stop(this IIntegrationRuntimesOperations operations, string r (await operations.StopWithHttpMessagesAsync(resourceGroupName, factoryName, integrationRuntimeName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } - /// - /// Remove a node from integration runtime. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The integration runtime name. - /// - /// - /// The name of the node to be removed from an integration runtime. - /// - public static void RemoveNode(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, IntegrationRuntimeRemoveNodeRequest removeNodeParameters) - { - operations.RemoveNodeAsync(resourceGroupName, factoryName, integrationRuntimeName, removeNodeParameters).GetAwaiter().GetResult(); - } - - /// - /// Remove a node from integration runtime. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The integration runtime name. - /// - /// - /// The name of the node to be removed from an integration runtime. - /// - /// - /// The cancellation token. - /// - public static async Task RemoveNodeAsync(this IIntegrationRuntimesOperations operations, string resourceGroupName, string factoryName, string integrationRuntimeName, IntegrationRuntimeRemoveNodeRequest removeNodeParameters, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RemoveNodeWithHttpMessagesAsync(resourceGroupName, factoryName, integrationRuntimeName, removeNodeParameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - /// /// Force the integration runtime to synchronize credentials across integration /// runtime nodes, and this will override the credentials across all worker diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs index f1506cf6721b..392c620b7f0f 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs @@ -65,7 +65,7 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -211,13 +211,14 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,6 +228,10 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -296,7 +301,7 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -487,13 +492,14 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -503,6 +509,10 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -559,13 +569,18 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) /// /// The linked service name. /// + /// + /// ETag of the linked service 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. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -580,7 +595,7 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string linkedServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string linkedServiceName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -657,6 +672,7 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("linkedServiceName", linkedServiceName); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -686,6 +702,14 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -730,15 +754,16 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 304) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -748,6 +773,10 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -810,7 +839,7 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -974,13 +1003,14 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -990,6 +1020,10 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1028,7 +1062,7 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1124,13 +1158,14 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1140,6 +1175,10 @@ internal LinkedServicesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs index bc077133a1b7..7124d9710223 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs @@ -136,9 +136,14 @@ public static IPage ListByFactory(this ILinkedServicesOpe /// /// The linked service name. /// - public static LinkedServiceResource Get(this ILinkedServicesOperations operations, string resourceGroupName, string factoryName, string linkedServiceName) + /// + /// ETag of the linked service 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. + /// + public static LinkedServiceResource Get(this ILinkedServicesOperations operations, string resourceGroupName, string factoryName, string linkedServiceName, string ifNoneMatch = default(string)) { - return operations.GetAsync(resourceGroupName, factoryName, linkedServiceName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, factoryName, linkedServiceName, ifNoneMatch).GetAwaiter().GetResult(); } /// @@ -156,12 +161,17 @@ public static LinkedServiceResource Get(this ILinkedServicesOperations operation /// /// The linked service name. /// + /// + /// ETag of the linked service 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. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this ILinkedServicesOperations operations, string resourceGroupName, string factoryName, string linkedServiceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ILinkedServicesOperations operations, string resourceGroupName, string factoryName, string linkedServiceName, string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, linkedServiceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, linkedServiceName, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs index ab3f3e522dcf..f7b8e4200b42 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs @@ -37,12 +37,14 @@ public Activity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. - public Activity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList)) + /// Activity user properties. + public Activity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary)) { AdditionalProperties = additionalProperties; Name = name; Description = description; DependsOn = dependsOn; + UserProperties = userProperties; CustomInit(); } @@ -76,6 +78,12 @@ public Activity() [JsonProperty(PropertyName = "dependsOn")] public IList DependsOn { get; set; } + /// + /// Gets or sets activity user properties. + /// + [JsonProperty(PropertyName = "userProperties")] + public IDictionary UserProperties { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRunsQueryResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRunsQueryResponse.cs new file mode 100644 index 000000000000..85d2ff983033 --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRunsQueryResponse.cs @@ -0,0 +1,78 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A list activity runs. + /// + public partial class ActivityRunsQueryResponse + { + /// + /// Initializes a new instance of the ActivityRunsQueryResponse class. + /// + public ActivityRunsQueryResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ActivityRunsQueryResponse class. + /// + /// List of activity runs. + /// The continuation token for getting + /// the next page of results, if any remaining results exist, null + /// otherwise. + public ActivityRunsQueryResponse(IList value, string continuationToken = default(string)) + { + Value = value; + ContinuationToken = continuationToken; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of activity runs. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets the continuation token for getting the next page of + /// results, if any remaining results exist, null otherwise. + /// + [JsonProperty(PropertyName = "continuationToken")] + public string ContinuationToken { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Value == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); + } + } + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs index 94491b1be69d..96c898c69be1 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs @@ -42,6 +42,7 @@ public AzureMLBatchExecutionActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Key,Value pairs to be passed to the @@ -59,8 +60,8 @@ public AzureMLBatchExecutionActivity() /// objects specifying the input Blob locations.. This information will /// be passed in the WebServiceInputs property of the Azure ML batch /// execution request. - public AzureMLBatchExecutionActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary globalParameters = default(IDictionary), IDictionary webServiceOutputs = default(IDictionary), IDictionary webServiceInputs = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public AzureMLBatchExecutionActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary globalParameters = default(IDictionary), IDictionary webServiceOutputs = default(IDictionary), IDictionary webServiceInputs = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { GlobalParameters = globalParameters; WebServiceOutputs = webServiceOutputs; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs index fb607f048fd6..c69e90ca06e7 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs @@ -53,10 +53,11 @@ public AzureMLUpdateResourceActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. - public AzureMLUpdateResourceActivity(string name, object trainedModelName, LinkedServiceReference trainedModelLinkedServiceName, object trainedModelFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public AzureMLUpdateResourceActivity(string name, object trainedModelName, LinkedServiceReference trainedModelLinkedServiceName, object trainedModelFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { TrainedModelName = trainedModelName; TrainedModelLinkedServiceName = trainedModelLinkedServiceName; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs index fac72d90d874..b9efd59e69de 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs @@ -38,8 +38,9 @@ public ControlActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. - public ControlActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList)) - : base(name, additionalProperties, description, dependsOn) + /// Activity user properties. + public ControlActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties) { CustomInit(); } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs index 0083503ecb41..bde549a116e1 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs @@ -42,6 +42,7 @@ public CopyActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Copy activity translator. If not @@ -55,8 +56,8 @@ public CopyActivity() /// opened on the source or sink to avoid overloading the data store. /// Type: integer (or Expression with resultType integer), minimum: /// 0. - /// Maximum number of cloud data - /// movement units that can be used to perform this data movement. + /// Maximum number of data + /// integration units that can be used to perform this data movement. /// Type: integer (or Expression with resultType integer), minimum: /// 0. /// Whether to skip @@ -66,8 +67,8 @@ public CopyActivity() /// row settings when EnableSkipIncompatibleRow is true. /// List of inputs for the activity. /// List of outputs for the activity. - public CopyActivity(string name, CopySource source, CopySink sink, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), CopyTranslator translator = default(CopyTranslator), object enableStaging = default(object), StagingSettings stagingSettings = default(StagingSettings), object parallelCopies = default(object), object cloudDataMovementUnits = default(object), object enableSkipIncompatibleRow = default(object), RedirectIncompatibleRowSettings redirectIncompatibleRowSettings = default(RedirectIncompatibleRowSettings), IList inputs = default(IList), IList outputs = default(IList)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public CopyActivity(string name, CopySource source, CopySink sink, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), CopyTranslator translator = default(CopyTranslator), object enableStaging = default(object), StagingSettings stagingSettings = default(StagingSettings), object parallelCopies = default(object), object dataIntegrationUnits = default(object), object enableSkipIncompatibleRow = default(object), RedirectIncompatibleRowSettings redirectIncompatibleRowSettings = default(RedirectIncompatibleRowSettings), IList inputs = default(IList), IList outputs = default(IList)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { Source = source; Sink = sink; @@ -75,7 +76,7 @@ public CopyActivity() EnableStaging = enableStaging; StagingSettings = stagingSettings; ParallelCopies = parallelCopies; - CloudDataMovementUnits = cloudDataMovementUnits; + DataIntegrationUnits = dataIntegrationUnits; EnableSkipIncompatibleRow = enableSkipIncompatibleRow; RedirectIncompatibleRowSettings = redirectIncompatibleRowSettings; Inputs = inputs; @@ -131,12 +132,12 @@ public CopyActivity() public object ParallelCopies { get; set; } /// - /// Gets or sets maximum number of cloud data movement units that can - /// be used to perform this data movement. Type: integer (or Expression + /// Gets or sets maximum number of data integration units that can be + /// used to perform this data movement. Type: integer (or Expression /// with resultType integer), minimum: 0. /// - [JsonProperty(PropertyName = "typeProperties.cloudDataMovementUnits")] - public object CloudDataMovementUnits { get; set; } + [JsonProperty(PropertyName = "typeProperties.dataIntegrationUnits")] + public object DataIntegrationUnits { get; set; } /// /// Gets or sets whether to skip incompatible row. Default value is diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs index ef7f28143992..df38286eb7c8 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs @@ -42,6 +42,7 @@ public CustomActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Resource linked service @@ -53,8 +54,8 @@ public CustomActivity() /// is no restriction on the keys or values that can be used. The user /// specified custom activity has the full responsibility to consume /// and interpret the content defined. - public CustomActivity(string name, object command, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), LinkedServiceReference resourceLinkedService = default(LinkedServiceReference), object folderPath = default(object), CustomActivityReferenceObject referenceObjects = default(CustomActivityReferenceObject), IDictionary extendedProperties = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public CustomActivity(string name, object command, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), LinkedServiceReference resourceLinkedService = default(LinkedServiceReference), object folderPath = default(object), CustomActivityReferenceObject referenceObjects = default(CustomActivityReferenceObject), IDictionary extendedProperties = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { Command = command; ResourceLinkedService = resourceLinkedService; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs index 9d16bc40c44e..624ebc616e86 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs @@ -48,6 +48,7 @@ public DataLakeAnalyticsUSQLActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// The maximum number of nodes @@ -64,8 +65,8 @@ public DataLakeAnalyticsUSQLActivity() /// Compilation mode of U-SQL. Must be /// one of these values : Semantic, Full and SingleBox. Type: string /// (or Expression with resultType string). - public DataLakeAnalyticsUSQLActivity(string name, object scriptPath, LinkedServiceReference scriptLinkedService, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object degreeOfParallelism = default(object), object priority = default(object), IDictionary parameters = default(IDictionary), object runtimeVersion = default(object), object compilationMode = default(object)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public DataLakeAnalyticsUSQLActivity(string name, object scriptPath, LinkedServiceReference scriptLinkedService, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object degreeOfParallelism = default(object), object priority = default(object), IDictionary parameters = default(IDictionary), object runtimeVersion = default(object), object compilationMode = default(object)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { ScriptPath = scriptPath; ScriptLinkedService = scriptLinkedService; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatabricksNotebookActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatabricksNotebookActivity.cs index 0cf55087fa95..4f3143325b35 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatabricksNotebookActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatabricksNotebookActivity.cs @@ -43,14 +43,15 @@ public DatabricksNotebookActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Base parameters to be used for each /// run of this job.If the notebook takes a parameter that is not /// specified, the default value from the notebook will be /// used. - public DatabricksNotebookActivity(string name, object notebookPath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary baseParameters = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public DatabricksNotebookActivity(string name, object notebookPath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary baseParameters = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { NotebookPath = notebookPath; BaseParameters = baseParameters; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs deleted file mode 100644 index afd69dda24be..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs +++ /dev/null @@ -1,107 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// The object that defines the structure of an Azure Data Factory - /// response. - /// - public partial class ErrorResponse - { - /// - /// Initializes a new instance of the ErrorResponse class. - /// - public ErrorResponse() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ErrorResponse class. - /// - /// Error code. - /// Error message. - /// Property name/path in request associated with - /// error. - /// Array with additional error details. - public ErrorResponse(string code, string message, string target = default(string), IList details = default(IList)) - { - Code = code; - Message = message; - Target = target; - Details = details; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets error code. - /// - [JsonProperty(PropertyName = "code")] - public string Code { get; set; } - - /// - /// Gets or sets error message. - /// - [JsonProperty(PropertyName = "message")] - public string Message { get; set; } - - /// - /// Gets or sets property name/path in request associated with error. - /// - [JsonProperty(PropertyName = "target")] - public string Target { get; set; } - - /// - /// Gets or sets array with additional error details. - /// - [JsonProperty(PropertyName = "details")] - public IList Details { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Code == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Code"); - } - if (Message == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Message"); - } - if (Details != null) - { - foreach (var element in Details) - { - if (element != null) - { - element.Validate(); - } - } - } - } - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs deleted file mode 100644 index 1f86ee4288b8..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs +++ /dev/null @@ -1,62 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Microsoft.Rest; - - /// - /// Exception thrown for an invalid response with ErrorResponse - /// information. - /// - public partial class ErrorResponseException : RestException - { - /// - /// Gets information about the associated HTTP request. - /// - public HttpRequestMessageWrapper Request { get; set; } - - /// - /// Gets information about the associated HTTP response. - /// - public HttpResponseMessageWrapper Response { get; set; } - - /// - /// Gets or sets the body object. - /// - public ErrorResponse Body { get; set; } - - /// - /// Initializes a new instance of the ErrorResponseException class. - /// - public ErrorResponseException() - { - } - - /// - /// Initializes a new instance of the ErrorResponseException class. - /// - /// The exception message. - public ErrorResponseException(string message) - : this(message, null) - { - } - - /// - /// Initializes a new instance of the ErrorResponseException class. - /// - /// The exception message. - /// Inner exception. - public ErrorResponseException(string message, System.Exception innerException) - : base(message, innerException) - { - } - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs index 4880123683bb..18d6fec2e158 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs @@ -42,12 +42,13 @@ public ExecutePipelineActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Pipeline parameters. /// Defines whether activity execution /// will wait for the dependent pipeline execution to finish. Default /// is false. - public ExecutePipelineActivity(string name, PipelineReference pipeline, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary parameters = default(IDictionary), bool? waitOnCompletion = default(bool?)) - : base(name, additionalProperties, description, dependsOn) + public ExecutePipelineActivity(string name, PipelineReference pipeline, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), IDictionary parameters = default(IDictionary), bool? waitOnCompletion = default(bool?)) + : base(name, additionalProperties, description, dependsOn, userProperties) { Pipeline = pipeline; Parameters = parameters; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecuteSSISPackageActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecuteSSISPackageActivity.cs index 573b7978e398..3b40d6e57ba8 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecuteSSISPackageActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecuteSSISPackageActivity.cs @@ -43,6 +43,7 @@ public ExecuteSSISPackageActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Specifies the runtime to execute SSIS @@ -61,8 +62,8 @@ public ExecuteSSISPackageActivity() /// connection managers to execute the SSIS package. /// The property overrides to execute /// the SSIS package. - public ExecuteSSISPackageActivity(string name, SSISPackageLocation packageLocation, IntegrationRuntimeReference connectVia, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), string runtime = default(string), string loggingLevel = default(string), string environmentPath = default(string), IDictionary projectParameters = default(IDictionary), IDictionary packageParameters = default(IDictionary), IDictionary> projectConnectionManagers = default(IDictionary>), IDictionary> packageConnectionManagers = default(IDictionary>), IDictionary propertyOverrides = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public ExecuteSSISPackageActivity(string name, SSISPackageLocation packageLocation, IntegrationRuntimeReference connectVia, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), string runtime = default(string), string loggingLevel = default(string), string environmentPath = default(string), IDictionary projectParameters = default(IDictionary), IDictionary packageParameters = default(IDictionary), IDictionary> projectConnectionManagers = default(IDictionary>), IDictionary> packageConnectionManagers = default(IDictionary>), IDictionary propertyOverrides = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { PackageLocation = packageLocation; Runtime = runtime; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs index 725876eba2e2..05ae1d0672fc 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs @@ -37,10 +37,11 @@ public ExecutionActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. - public ExecutionActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy)) - : base(name, additionalProperties, description, dependsOn) + public ExecutionActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy)) + : base(name, additionalProperties, description, dependsOn, userProperties) { LinkedServiceName = linkedServiceName; Policy = policy; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs index 6cd5a26fe93a..33e0252cfbcf 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs @@ -39,6 +39,7 @@ public Factory() /// The resource type. /// The resource location. /// The resource tags. + /// Etag identifies change in the resource. /// Unmatched properties from the /// message are deserialized this collection /// Managed service identity of the @@ -48,17 +49,17 @@ public Factory() /// Time the factory was created in ISO8601 /// format. /// Version of the factory. - /// VSTS repo information of the + /// Git repo information of the /// factory. - public Factory(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IDictionary additionalProperties = default(IDictionary), FactoryIdentity identity = default(FactoryIdentity), string provisioningState = default(string), System.DateTime? createTime = default(System.DateTime?), string version = default(string), FactoryVSTSConfiguration vstsConfiguration = default(FactoryVSTSConfiguration)) - : base(id, name, type, location, tags) + public Factory(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string eTag = default(string), IDictionary additionalProperties = default(IDictionary), FactoryIdentity identity = default(FactoryIdentity), string provisioningState = default(string), System.DateTime? createTime = default(System.DateTime?), string version = default(string), FactoryRepoConfiguration repoConfiguration = default(FactoryRepoConfiguration)) + : base(id, name, type, location, tags, eTag) { AdditionalProperties = additionalProperties; Identity = identity; ProvisioningState = provisioningState; CreateTime = createTime; Version = version; - VstsConfiguration = vstsConfiguration; + RepoConfiguration = repoConfiguration; CustomInit(); } @@ -99,10 +100,23 @@ public Factory() public string Version { get; private set; } /// - /// Gets or sets VSTS repo information of the factory. + /// Gets or sets git repo information of the factory. /// - [JsonProperty(PropertyName = "properties.vstsConfiguration")] - public FactoryVSTSConfiguration VstsConfiguration { get; set; } + [JsonProperty(PropertyName = "properties.repoConfiguration")] + public FactoryRepoConfiguration RepoConfiguration { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RepoConfiguration != null) + { + RepoConfiguration.Validate(); + } + } } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryGitHubConfiguration.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryGitHubConfiguration.cs new file mode 100644 index 000000000000..d3a96668001e --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryGitHubConfiguration.cs @@ -0,0 +1,68 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Factory's GitHub repo information. + /// + [Newtonsoft.Json.JsonObject("FactoryGithubConfiguration")] + public partial class FactoryGitHubConfiguration : FactoryRepoConfiguration + { + /// + /// Initializes a new instance of the FactoryGitHubConfiguration class. + /// + public FactoryGitHubConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the FactoryGitHubConfiguration class. + /// + /// Account name. + /// Rrepository name. + /// Collaboration branch. + /// Root folder. + /// Last commit id. + /// GitHub repo host name. + public FactoryGitHubConfiguration(string accountName, string repositoryName, string collaborationBranch, string rootFolder, string lastCommitId = default(string), string hostName = default(string)) + : base(accountName, repositoryName, collaborationBranch, rootFolder, lastCommitId) + { + HostName = hostName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets gitHub repo host name. + /// + [JsonProperty(PropertyName = "hostName")] + public string HostName { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoConfiguration.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoConfiguration.cs new file mode 100644 index 000000000000..86fe4e58789d --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoConfiguration.cs @@ -0,0 +1,109 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Factory's git repo information. + /// + public partial class FactoryRepoConfiguration + { + /// + /// Initializes a new instance of the FactoryRepoConfiguration class. + /// + public FactoryRepoConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the FactoryRepoConfiguration class. + /// + /// Account name. + /// Rrepository name. + /// Collaboration branch. + /// Root folder. + /// Last commit id. + public FactoryRepoConfiguration(string accountName, string repositoryName, string collaborationBranch, string rootFolder, string lastCommitId = default(string)) + { + AccountName = accountName; + RepositoryName = repositoryName; + CollaborationBranch = collaborationBranch; + RootFolder = rootFolder; + LastCommitId = lastCommitId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets account name. + /// + [JsonProperty(PropertyName = "accountName")] + public string AccountName { get; set; } + + /// + /// Gets or sets rrepository name. + /// + [JsonProperty(PropertyName = "repositoryName")] + public string RepositoryName { get; set; } + + /// + /// Gets or sets collaboration branch. + /// + [JsonProperty(PropertyName = "collaborationBranch")] + public string CollaborationBranch { get; set; } + + /// + /// Gets or sets root folder. + /// + [JsonProperty(PropertyName = "rootFolder")] + public string RootFolder { get; set; } + + /// + /// Gets or sets last commit id. + /// + [JsonProperty(PropertyName = "lastCommitId")] + public string LastCommitId { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AccountName"); + } + if (RepositoryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RepositoryName"); + } + if (CollaborationBranch == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CollaborationBranch"); + } + if (RootFolder == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RootFolder"); + } + } + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoUpdate.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoUpdate.cs index 7bd09fb5e421..4fe2f64b0b68 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoUpdate.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryRepoUpdate.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.DataFactory.Models using System.Linq; /// - /// Factory's VSTS repo information. + /// Factory's git repo information. /// public partial class FactoryRepoUpdate { @@ -30,14 +30,12 @@ public FactoryRepoUpdate() /// Initializes a new instance of the FactoryRepoUpdate class. /// /// The factory resource id. - /// The resource group name. - /// VSTS repo information of the + /// Git repo information of the /// factory. - public FactoryRepoUpdate(string factoryResourceId = default(string), string resourceGroupName = default(string), FactoryVSTSConfiguration vstsConfiguration = default(FactoryVSTSConfiguration)) + public FactoryRepoUpdate(string factoryResourceId = default(string), FactoryRepoConfiguration repoConfiguration = default(FactoryRepoConfiguration)) { FactoryResourceId = factoryResourceId; - ResourceGroupName = resourceGroupName; - VstsConfiguration = vstsConfiguration; + RepoConfiguration = repoConfiguration; CustomInit(); } @@ -53,16 +51,23 @@ public FactoryRepoUpdate() public string FactoryResourceId { get; set; } /// - /// Gets or sets the resource group name. + /// Gets or sets git repo information of the factory. /// - [JsonProperty(PropertyName = "resourceGroupName")] - public string ResourceGroupName { get; set; } + [JsonProperty(PropertyName = "repoConfiguration")] + public FactoryRepoConfiguration RepoConfiguration { get; set; } /// - /// Gets or sets VSTS repo information of the factory. + /// Validate the object. /// - [JsonProperty(PropertyName = "vstsConfiguration")] - public FactoryVSTSConfiguration VstsConfiguration { get; set; } - + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RepoConfiguration != null) + { + RepoConfiguration.Validate(); + } + } } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryVSTSConfiguration.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryVSTSConfiguration.cs index 1685d69411ce..fea02fc13f2a 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryVSTSConfiguration.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryVSTSConfiguration.cs @@ -10,13 +10,14 @@ namespace Microsoft.Azure.Management.DataFactory.Models { + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; /// /// Factory's VSTS repo information. /// - public partial class FactoryVSTSConfiguration + public partial class FactoryVSTSConfiguration : FactoryRepoConfiguration { /// /// Initializes a new instance of the FactoryVSTSConfiguration class. @@ -29,22 +30,17 @@ public FactoryVSTSConfiguration() /// /// Initializes a new instance of the FactoryVSTSConfiguration class. /// - /// VSTS account name. + /// Account name. + /// Rrepository name. + /// Collaboration branch. + /// Root folder. /// VSTS project name. - /// VSTS repository name. - /// VSTS collaboration - /// branch. - /// VSTS root folder. - /// VSTS last commit id. + /// Last commit id. /// VSTS tenant id. - public FactoryVSTSConfiguration(string accountName = default(string), string projectName = default(string), string repositoryName = default(string), string collaborationBranch = default(string), string rootFolder = default(string), string lastCommitId = default(string), string tenantId = default(string)) + public FactoryVSTSConfiguration(string accountName, string repositoryName, string collaborationBranch, string rootFolder, string projectName, string lastCommitId = default(string), string tenantId = default(string)) + : base(accountName, repositoryName, collaborationBranch, rootFolder, lastCommitId) { - AccountName = accountName; ProjectName = projectName; - RepositoryName = repositoryName; - CollaborationBranch = collaborationBranch; - RootFolder = rootFolder; - LastCommitId = lastCommitId; TenantId = tenantId; CustomInit(); } @@ -54,47 +50,31 @@ public FactoryVSTSConfiguration() /// partial void CustomInit(); - /// - /// Gets or sets VSTS account name. - /// - [JsonProperty(PropertyName = "accountName")] - public string AccountName { get; set; } - /// /// Gets or sets VSTS project name. /// [JsonProperty(PropertyName = "projectName")] public string ProjectName { get; set; } - /// - /// Gets or sets VSTS repository name. - /// - [JsonProperty(PropertyName = "repositoryName")] - public string RepositoryName { get; set; } - - /// - /// Gets or sets VSTS collaboration branch. - /// - [JsonProperty(PropertyName = "collaborationBranch")] - public string CollaborationBranch { get; set; } - - /// - /// Gets or sets VSTS root folder. - /// - [JsonProperty(PropertyName = "rootFolder")] - public string RootFolder { get; set; } - - /// - /// Gets or sets VSTS last commit id. - /// - [JsonProperty(PropertyName = "lastCommitId")] - public string LastCommitId { get; set; } - /// /// Gets or sets VSTS tenant id. /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (ProjectName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProjectName"); + } + } } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FilterActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FilterActivity.cs index 3b442173ddc7..61292e98d1f6 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FilterActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FilterActivity.cs @@ -46,8 +46,9 @@ public FilterActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. - public FilterActivity(string name, Expression items, Expression condition, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList)) - : base(name, additionalProperties, description, dependsOn) + /// Activity user properties. + public FilterActivity(string name, Expression items, Expression condition, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties) { Items = items; Condition = condition; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs index e1083b4c6400..f8e988bcc81f 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs @@ -44,13 +44,14 @@ public ForEachActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Should the loop be executed in sequence /// or in parallel (max 50) /// Batch count to be used for controlling the /// number of parallel execution (when isSequential is set to /// false). - public ForEachActivity(string name, Expression items, IList activities, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), bool? isSequential = default(bool?), int? batchCount = default(int?)) - : base(name, additionalProperties, description, dependsOn) + public ForEachActivity(string name, Expression items, IList activities, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), bool? isSequential = default(bool?), int? batchCount = default(int?)) + : base(name, additionalProperties, description, dependsOn, userProperties) { IsSequential = isSequential; BatchCount = batchCount; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs index 36a907c4a0d5..9fe5df2a7cee 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs @@ -43,12 +43,13 @@ public GetMetadataActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Fields of metadata to get from /// dataset. - public GetMetadataActivity(string name, DatasetReference dataset, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList fieldList = default(IList)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public GetMetadataActivity(string name, DatasetReference dataset, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList fieldList = default(IList)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { Dataset = dataset; FieldList = fieldList; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs index dcdc0c6fe042..6d6b0e6c435d 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs @@ -40,6 +40,7 @@ public HDInsightHiveActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Storage linked service @@ -54,8 +55,8 @@ public HDInsightHiveActivity() /// reference. /// Allows user to specify defines for Hive job /// request. - public HDInsightHiveActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), object scriptPath = default(object), LinkedServiceReference scriptLinkedService = default(LinkedServiceReference), IDictionary defines = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public HDInsightHiveActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), object scriptPath = default(object), LinkedServiceReference scriptLinkedService = default(LinkedServiceReference), IDictionary defines = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { StorageLinkedServices = storageLinkedServices; Arguments = arguments; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs index 7a9d22dcca3e..b06d12149873 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs @@ -44,6 +44,7 @@ public HDInsightMapReduceActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Storage linked service @@ -57,8 +58,8 @@ public HDInsightMapReduceActivity() /// Jar libs. /// Allows user to specify defines for the /// MapReduce job request. - public HDInsightMapReduceActivity(string name, object className, object jarFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), LinkedServiceReference jarLinkedService = default(LinkedServiceReference), IList jarLibs = default(IList), IDictionary defines = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public HDInsightMapReduceActivity(string name, object className, object jarFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), LinkedServiceReference jarLinkedService = default(LinkedServiceReference), IList jarLibs = default(IList), IDictionary defines = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { StorageLinkedServices = storageLinkedServices; Arguments = arguments; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs index f26d6b4b8c1a..7e90a71752d1 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs @@ -40,6 +40,7 @@ public HDInsightPigActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Storage linked service @@ -54,8 +55,8 @@ public HDInsightPigActivity() /// reference. /// Allows user to specify defines for Pig job /// request. - public HDInsightPigActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), object scriptPath = default(object), LinkedServiceReference scriptLinkedService = default(LinkedServiceReference), IDictionary defines = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public HDInsightPigActivity(string name, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), object scriptPath = default(object), LinkedServiceReference scriptLinkedService = default(LinkedServiceReference), IDictionary defines = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { StorageLinkedServices = storageLinkedServices; Arguments = arguments; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs index d8669f52c86f..e7f27222d4e5 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs @@ -46,6 +46,7 @@ public HDInsightSparkActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// The user-specified arguments to @@ -61,8 +62,8 @@ public HDInsightSparkActivity() /// the job. Type: string (or Expression with resultType /// string). /// Spark configuration property. - public HDInsightSparkActivity(string name, object rootPath, object entryFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList arguments = default(IList), string getDebugInfo = default(string), LinkedServiceReference sparkJobLinkedService = default(LinkedServiceReference), string className = default(string), object proxyUser = default(object), IDictionary sparkConfig = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public HDInsightSparkActivity(string name, object rootPath, object entryFilePath, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList arguments = default(IList), string getDebugInfo = default(string), LinkedServiceReference sparkJobLinkedService = default(LinkedServiceReference), string className = default(string), object proxyUser = default(object), IDictionary sparkConfig = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { RootPath = rootPath; EntryFilePath = entryFilePath; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs index fb456ff9ba09..5cb00db2efea 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs @@ -50,6 +50,7 @@ public HDInsightStreamingActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Storage linked service @@ -66,8 +67,8 @@ public HDInsightStreamingActivity() /// values. /// Allows user to specify defines for streaming /// job request. - public HDInsightStreamingActivity(string name, object mapper, object reducer, object input, object output, IList filePaths, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), LinkedServiceReference fileLinkedService = default(LinkedServiceReference), object combiner = default(object), IList commandEnvironment = default(IList), IDictionary defines = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public HDInsightStreamingActivity(string name, object mapper, object reducer, object input, object output, IList filePaths, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IList storageLinkedServices = default(IList), IList arguments = default(IList), string getDebugInfo = default(string), LinkedServiceReference fileLinkedService = default(LinkedServiceReference), object combiner = default(object), IList commandEnvironment = default(IList), IDictionary defines = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { StorageLinkedServices = storageLinkedServices; Arguments = arguments; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs index d3d3115fab88..b59625f5a978 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs @@ -47,14 +47,15 @@ public IfConditionActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// List of activities to execute if /// expression is evaluated to true. This is an optional property and /// if not provided, the activity will exit without any action. /// List of activities to execute if /// expression is evaluated to false. This is an optional property and /// if not provided, the activity will exit without any action. - public IfConditionActivity(string name, Expression expression, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IList ifTrueActivities = default(IList), IList ifFalseActivities = default(IList)) - : base(name, additionalProperties, description, dependsOn) + public IfConditionActivity(string name, Expression expression, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), IList ifTrueActivities = default(IList), IList ifFalseActivities = default(IList)) + : base(name, additionalProperties, description, dependsOn, userProperties) { Expression = expression; IfTrueActivities = ifTrueActivities; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs index 7ef59ce76888..04ed5aefb1f2 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs @@ -117,10 +117,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.InclusiveMinimum, "NumberOfNodes", 1); } - if (MaxParallelExecutionsPerNode > 8) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxParallelExecutionsPerNode", 8); - } if (MaxParallelExecutionsPerNode < 1) { throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxParallelExecutionsPerNode", 1); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs index d1e3cbaddb0f..d99852ec79a2 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs @@ -51,7 +51,7 @@ public IntegrationRuntimeNodeMonitoringData() /// node. /// Received bytes on the integration /// runtime node. - public IntegrationRuntimeNodeMonitoringData(IDictionary additionalProperties = default(IDictionary), string nodeName = default(string), int? availableMemoryInMB = default(int?), double? cpuUtilization = default(double?), int? concurrentJobsLimit = default(int?), int? concurrentJobsRunning = default(int?), int? maxConcurrentJobs = default(int?), double? sentBytes = default(double?), double? receivedBytes = default(double?)) + public IntegrationRuntimeNodeMonitoringData(IDictionary additionalProperties = default(IDictionary), string nodeName = default(string), int? availableMemoryInMB = default(int?), int? cpuUtilization = default(int?), int? concurrentJobsLimit = default(int?), int? concurrentJobsRunning = default(int?), int? maxConcurrentJobs = default(int?), double? sentBytes = default(double?), double? receivedBytes = default(double?)) { AdditionalProperties = additionalProperties; NodeName = nodeName; @@ -93,7 +93,7 @@ public IntegrationRuntimeNodeMonitoringData() /// Gets CPU percentage on the integration runtime node. /// [JsonProperty(PropertyName = "cpuUtilization")] - public double? CpuUtilization { get; private set; } + public int? CpuUtilization { get; private set; } /// /// Gets maximum concurrent jobs on the integration runtime node. diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs deleted file mode 100644 index 4d1c9daf9731..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs +++ /dev/null @@ -1,65 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Request to remove a node. - /// - public partial class IntegrationRuntimeRemoveNodeRequest - { - /// - /// Initializes a new instance of the - /// IntegrationRuntimeRemoveNodeRequest class. - /// - public IntegrationRuntimeRemoveNodeRequest() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// IntegrationRuntimeRemoveNodeRequest class. - /// - /// Unmatched properties from the - /// message are deserialized this collection - /// The name of the node to be removed. - public IntegrationRuntimeRemoveNodeRequest(IDictionary additionalProperties = default(IDictionary), string nodeName = default(string)) - { - AdditionalProperties = additionalProperties; - NodeName = nodeName; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets unmatched properties from the message are deserialized - /// this collection - /// - [JsonExtensionData] - public IDictionary AdditionalProperties { get; set; } - - /// - /// Gets or sets the name of the node to be removed. - /// - [JsonProperty(PropertyName = "nodeName")] - public string NodeName { get; set; } - - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntime.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntime.cs deleted file mode 100644 index 4ec7da81daf2..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntime.cs +++ /dev/null @@ -1,91 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// The linked integration runtime information. - /// - public partial class LinkedIntegrationRuntime - { - /// - /// Initializes a new instance of the LinkedIntegrationRuntime class. - /// - public LinkedIntegrationRuntime() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LinkedIntegrationRuntime class. - /// - /// The name of the linked integration - /// runtime. - /// The subscription ID for which the - /// linked integration runtime belong to. - /// The name of the data factory for - /// which the linked integration runtime belong to. - /// The location of the data factory - /// for which the linked integration runtime belong to. - /// The creating time of the linked - /// integration runtime. - public LinkedIntegrationRuntime(string name = default(string), string subscriptionId = default(string), string dataFactoryName = default(string), string dataFactoryLocation = default(string), System.DateTime? createTime = default(System.DateTime?)) - { - Name = name; - SubscriptionId = subscriptionId; - DataFactoryName = dataFactoryName; - DataFactoryLocation = dataFactoryLocation; - CreateTime = createTime; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the name of the linked integration runtime. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets the subscription ID for which the linked integration runtime - /// belong to. - /// - [JsonProperty(PropertyName = "subscriptionId")] - public string SubscriptionId { get; private set; } - - /// - /// Gets the name of the data factory for which the linked integration - /// runtime belong to. - /// - [JsonProperty(PropertyName = "dataFactoryName")] - public string DataFactoryName { get; private set; } - - /// - /// Gets the location of the data factory for which the linked - /// integration runtime belong to. - /// - [JsonProperty(PropertyName = "dataFactoryLocation")] - public string DataFactoryLocation { get; private set; } - - /// - /// Gets the creating time of the linked integration runtime. - /// - [JsonProperty(PropertyName = "createTime")] - public System.DateTime? CreateTime { get; private set; } - - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeKey.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeKey.cs deleted file mode 100644 index 5828bc4b72d9..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeKey.cs +++ /dev/null @@ -1,72 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// The base definition of a secret type. - /// - [Newtonsoft.Json.JsonObject("Key")] - public partial class LinkedIntegrationRuntimeKey : LinkedIntegrationRuntimeProperties - { - /// - /// Initializes a new instance of the LinkedIntegrationRuntimeKey - /// class. - /// - public LinkedIntegrationRuntimeKey() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LinkedIntegrationRuntimeKey - /// class. - /// - /// Type of the secret. - public LinkedIntegrationRuntimeKey(SecureString key) - { - Key = key; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets type of the secret. - /// - [JsonProperty(PropertyName = "key")] - public SecureString Key { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Key == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Key"); - } - if (Key != null) - { - Key.Validate(); - } - } - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeProperties.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeProperties.cs deleted file mode 100644 index ec46297db3ed..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeProperties.cs +++ /dev/null @@ -1,36 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using System.Linq; - - /// - /// The base definition of a secret type. - /// - public partial class LinkedIntegrationRuntimeProperties - { - /// - /// Initializes a new instance of the - /// LinkedIntegrationRuntimeProperties class. - /// - public LinkedIntegrationRuntimeProperties() - { - CustomInit(); - } - - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeRbac.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeRbac.cs deleted file mode 100644 index c803a2c6dd33..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedIntegrationRuntimeRbac.cs +++ /dev/null @@ -1,70 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// The base definition of a secret type. - /// - [Newtonsoft.Json.JsonObject("RBAC")] - public partial class LinkedIntegrationRuntimeRbac : LinkedIntegrationRuntimeProperties - { - /// - /// Initializes a new instance of the LinkedIntegrationRuntimeRbac - /// class. - /// - public LinkedIntegrationRuntimeRbac() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LinkedIntegrationRuntimeRbac - /// class. - /// - /// The resource ID of the integration runtime - /// to be shared. - public LinkedIntegrationRuntimeRbac(string resourceId) - { - ResourceId = resourceId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the resource ID of the integration runtime to be - /// shared. - /// - [JsonProperty(PropertyName = "resourceId")] - public string ResourceId { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (ResourceId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ResourceId"); - } - } - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs index cd814b50b83f..d989fe9c8864 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs @@ -44,13 +44,14 @@ public LookupActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Whether to return first row or all rows. /// Default value is true. Type: boolean (or Expression with resultType /// boolean). - public LookupActivity(string name, CopySource source, DatasetReference dataset, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object firstRowOnly = default(object)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public LookupActivity(string name, CopySource source, DatasetReference dataset, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object firstRowOnly = default(object)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { Source = source; Dataset = dataset; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs deleted file mode 100644 index ab1c762bb198..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs +++ /dev/null @@ -1,65 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// A list of operations that can be performed by the Data Factory service. - /// - public partial class OperationListResponse - { - /// - /// Initializes a new instance of the OperationListResponse class. - /// - public OperationListResponse() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the OperationListResponse class. - /// - /// List of Data Factory operations supported by - /// the Data Factory resource provider. - /// The link to the next page of results, if any - /// remaining results exist. - public OperationListResponse(IList value = default(IList), string nextLink = default(string)) - { - Value = value; - NextLink = nextLink; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of Data Factory operations supported by the Data - /// Factory resource provider. - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - /// - /// Gets or sets the link to the next page of results, if any remaining - /// results exist. - /// - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricDimension.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricDimension.cs new file mode 100644 index 000000000000..d05a043e1ccc --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricDimension.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines the metric dimension. + /// + public partial class OperationMetricDimension + { + /// + /// Initializes a new instance of the OperationMetricDimension class. + /// + public OperationMetricDimension() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationMetricDimension class. + /// + /// The name of the dimension for the + /// metric. + /// The display name of the metric + /// dimension. + /// Whether the dimension should + /// be exported to Azure Monitor. + public OperationMetricDimension(string name = default(string), string displayName = default(string), bool? toBeExportedForShoebox = default(bool?)) + { + Name = name; + DisplayName = displayName; + ToBeExportedForShoebox = toBeExportedForShoebox; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the dimension for the metric. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the display name of the metric dimension. + /// + [JsonProperty(PropertyName = "displayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets whether the dimension should be exported to Azure + /// Monitor. + /// + [JsonProperty(PropertyName = "toBeExportedForShoebox")] + public bool? ToBeExportedForShoebox { get; set; } + + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs index e289287d5483..dafde584839c 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs @@ -48,7 +48,8 @@ public OperationMetricSpecification() /// namespace. /// Defines how often data for metrics /// becomes available. - public OperationMetricSpecification(string name = default(string), string displayName = default(string), string displayDescription = default(string), string unit = default(string), string aggregationType = default(string), string enableRegionalMdmAccount = default(string), string sourceMdmAccount = default(string), string sourceMdmNamespace = default(string), IList availabilities = default(IList)) + /// Defines the metric dimension. + public OperationMetricSpecification(string name = default(string), string displayName = default(string), string displayDescription = default(string), string unit = default(string), string aggregationType = default(string), string enableRegionalMdmAccount = default(string), string sourceMdmAccount = default(string), string sourceMdmNamespace = default(string), IList availabilities = default(IList), IList dimensions = default(IList)) { Name = name; DisplayName = displayName; @@ -59,6 +60,7 @@ public OperationMetricSpecification() SourceMdmAccount = sourceMdmAccount; SourceMdmNamespace = sourceMdmNamespace; Availabilities = availabilities; + Dimensions = dimensions; CustomInit(); } @@ -122,5 +124,11 @@ public OperationMetricSpecification() [JsonProperty(PropertyName = "availabilities")] public IList Availabilities { get; set; } + /// + /// Gets or sets defines the metric dimension. + /// + [JsonProperty(PropertyName = "dimensions")] + public IList Dimensions { get; set; } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs index 92421a27e8c7..2f94c1e336c7 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs @@ -32,10 +32,13 @@ public PipelineRunInvokedBy() /// Name of the entity that started the pipeline /// run. /// The ID of the entity that started the run. - public PipelineRunInvokedBy(string name = default(string), string id = default(string)) + /// The type of the entity that started the + /// run. + public PipelineRunInvokedBy(string name = default(string), string id = default(string), string invokedByType = default(string)) { Name = name; Id = id; + InvokedByType = invokedByType; CustomInit(); } @@ -56,5 +59,11 @@ public PipelineRunInvokedBy() [JsonProperty(PropertyName = "id")] public string Id { get; private set; } + /// + /// Gets the type of the entity that started the run. + /// + [JsonProperty(PropertyName = "invokedByType")] + public string InvokedByType { get; private set; } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs deleted file mode 100644 index f568d4bef124..000000000000 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs +++ /dev/null @@ -1,22 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.DataFactory.Models -{ - - /// - /// Defines values for PipelineRunQueryOrderByField. - /// - public static class PipelineRunQueryOrderByField - { - public const string RunStart = "RunStart"; - public const string RunEnd = "RunEnd"; - } -} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunsQueryResponse.cs similarity index 85% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunsQueryResponse.cs index 8108c377849b..155fd7af7049 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunsQueryResponse.cs @@ -19,24 +19,24 @@ namespace Microsoft.Azure.Management.DataFactory.Models /// /// A list pipeline runs. /// - public partial class PipelineRunQueryResponse + public partial class PipelineRunsQueryResponse { /// - /// Initializes a new instance of the PipelineRunQueryResponse class. + /// Initializes a new instance of the PipelineRunsQueryResponse class. /// - public PipelineRunQueryResponse() + public PipelineRunsQueryResponse() { CustomInit(); } /// - /// Initializes a new instance of the PipelineRunQueryResponse class. + /// Initializes a new instance of the PipelineRunsQueryResponse class. /// /// List of pipeline runs. /// The continuation token for getting /// the next page of results, if any remaining results exist, null /// otherwise. - public PipelineRunQueryResponse(IList value, string continuationToken = default(string)) + public PipelineRunsQueryResponse(IList value, string continuationToken = default(string)) { Value = value; ContinuationToken = continuationToken; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs index e419a420c598..24b909a26852 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs @@ -38,13 +38,15 @@ public Resource() /// The resource type. /// The resource location. /// The resource tags. - public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) + /// Etag identifies change in the resource. + public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string eTag = default(string)) { Id = id; Name = name; Type = type; Location = location; Tags = tags; + ETag = eTag; CustomInit(); } @@ -83,5 +85,11 @@ public Resource() [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } + /// + /// Gets etag identifies change in the resource. + /// + [JsonProperty(PropertyName = "eTag")] + public string ETag { get; private set; } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunFilterParameters.cs similarity index 73% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunFilterParameters.cs index cf333c55b9e3..91e6fbe3737f 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunFilterParameters.cs @@ -16,32 +16,30 @@ namespace Microsoft.Azure.Management.DataFactory.Models using System.Linq; /// - /// Query parameters for listing pipeline runs. + /// Query parameters for listing runs. /// - public partial class PipelineRunFilterParameters + public partial class RunFilterParameters { /// - /// Initializes a new instance of the PipelineRunFilterParameters - /// class. + /// Initializes a new instance of the RunFilterParameters class. /// - public PipelineRunFilterParameters() + public RunFilterParameters() { CustomInit(); } /// - /// Initializes a new instance of the PipelineRunFilterParameters - /// class. + /// Initializes a new instance of the RunFilterParameters class. /// - /// The time at or after which the - /// pipeline run event was updated in 'ISO 8601' format. - /// The time at or before which the - /// pipeline run event was updated in 'ISO 8601' format. + /// The time at or after which the run + /// event was updated in 'ISO 8601' format. + /// The time at or before which the run + /// event was updated in 'ISO 8601' format. /// The continuation token for getting /// the next page of results. Null for first page. /// List of filters. /// List of OrderBy option. - public PipelineRunFilterParameters(System.DateTime lastUpdatedAfter, System.DateTime lastUpdatedBefore, string continuationToken = default(string), IList filters = default(IList), IList orderBy = default(IList)) + public RunFilterParameters(System.DateTime lastUpdatedAfter, System.DateTime lastUpdatedBefore, string continuationToken = default(string), IList filters = default(IList), IList orderBy = default(IList)) { ContinuationToken = continuationToken; LastUpdatedAfter = lastUpdatedAfter; @@ -64,15 +62,15 @@ public PipelineRunFilterParameters() public string ContinuationToken { get; set; } /// - /// Gets or sets the time at or after which the pipeline run event was - /// updated in 'ISO 8601' format. + /// Gets or sets the time at or after which the run event was updated + /// in 'ISO 8601' format. /// [JsonProperty(PropertyName = "lastUpdatedAfter")] public System.DateTime LastUpdatedAfter { get; set; } /// - /// Gets or sets the time at or before which the pipeline run event was - /// updated in 'ISO 8601' format. + /// Gets or sets the time at or before which the run event was updated + /// in 'ISO 8601' format. /// [JsonProperty(PropertyName = "lastUpdatedBefore")] public System.DateTime LastUpdatedBefore { get; set; } @@ -81,13 +79,13 @@ public PipelineRunFilterParameters() /// Gets or sets list of filters. /// [JsonProperty(PropertyName = "filters")] - public IList Filters { get; set; } + public IList Filters { get; set; } /// /// Gets or sets list of OrderBy option. /// [JsonProperty(PropertyName = "orderBy")] - public IList OrderBy { get; set; } + public IList OrderBy { get; set; } /// /// Validate the object. diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilter.cs similarity index 66% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilter.cs index af522014fed6..7743939db0b4 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilter.cs @@ -17,29 +17,34 @@ namespace Microsoft.Azure.Management.DataFactory.Models using System.Linq; /// - /// Query filter option for listing pipeline runs. + /// Query filter option for listing runs. /// - public partial class PipelineRunQueryFilter + public partial class RunQueryFilter { /// - /// Initializes a new instance of the PipelineRunQueryFilter class. + /// Initializes a new instance of the RunQueryFilter class. /// - public PipelineRunQueryFilter() + public RunQueryFilter() { CustomInit(); } /// - /// Initializes a new instance of the PipelineRunQueryFilter class. + /// Initializes a new instance of the RunQueryFilter class. /// - /// Parameter name to be used for filter. + /// Parameter name to be used for filter. The + /// allowed operands to query pipeline runs are PipelineName, RunStart, + /// RunEnd and Status; to query activity runs are ActivityName, + /// ActivityRunStart, ActivityRunEnd, ActivityType and Status, and to + /// query trigger runs are TriggerName, TriggerRunTimestamp and Status. /// Possible values include: 'PipelineName', 'Status', 'RunStart', - /// 'RunEnd' + /// 'RunEnd', 'ActivityName', 'ActivityRunStart', 'ActivityRunEnd', + /// 'ActivityType', 'TriggerName', 'TriggerRunTimestamp' /// Operator to be used for filter. /// Possible values include: 'Equals', 'NotEquals', 'In', /// 'NotIn' /// List of filter values. - public PipelineRunQueryFilter(string operand, string operatorProperty, IList values) + public RunQueryFilter(string operand, string operatorProperty, IList values) { Operand = operand; OperatorProperty = operatorProperty; @@ -53,8 +58,14 @@ public PipelineRunQueryFilter(string operand, string operatorProperty, IList - /// Gets or sets parameter name to be used for filter. Possible values - /// include: 'PipelineName', 'Status', 'RunStart', 'RunEnd' + /// Gets or sets parameter name to be used for filter. The allowed + /// operands to query pipeline runs are PipelineName, RunStart, RunEnd + /// and Status; to query activity runs are ActivityName, + /// ActivityRunStart, ActivityRunEnd, ActivityType and Status, and to + /// query trigger runs are TriggerName, TriggerRunTimestamp and Status. + /// Possible values include: 'PipelineName', 'Status', 'RunStart', + /// 'RunEnd', 'ActivityName', 'ActivityRunStart', 'ActivityRunEnd', + /// 'ActivityType', 'TriggerName', 'TriggerRunTimestamp' /// [JsonProperty(PropertyName = "operand")] public string Operand { get; set; } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilterOperand.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilterOperand.cs new file mode 100644 index 000000000000..d141f44696aa --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilterOperand.cs @@ -0,0 +1,30 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory.Models +{ + + /// + /// Defines values for RunQueryFilterOperand. + /// + public static class RunQueryFilterOperand + { + public const string PipelineName = "PipelineName"; + public const string Status = "Status"; + public const string RunStart = "RunStart"; + public const string RunEnd = "RunEnd"; + public const string ActivityName = "ActivityName"; + public const string ActivityRunStart = "ActivityRunStart"; + public const string ActivityRunEnd = "ActivityRunEnd"; + public const string ActivityType = "ActivityType"; + public const string TriggerName = "TriggerName"; + public const string TriggerRunTimestamp = "TriggerRunTimestamp"; + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilterOperator.cs similarity index 85% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilterOperator.cs index cf5e1752fd31..6511978c907a 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryFilterOperator.cs @@ -12,9 +12,9 @@ namespace Microsoft.Azure.Management.DataFactory.Models { /// - /// Defines values for PipelineRunQueryFilterOperator. + /// Defines values for RunQueryFilterOperator. /// - public static class PipelineRunQueryFilterOperator + public static class RunQueryFilterOperator { public const string Equals = "Equals"; public const string NotEquals = "NotEquals"; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrder.cs similarity index 85% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrder.cs index 3b8f4711ef80..38c1e3859e90 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrder.cs @@ -12,9 +12,9 @@ namespace Microsoft.Azure.Management.DataFactory.Models { /// - /// Defines values for PipelineRunQueryOrder. + /// Defines values for RunQueryOrder. /// - public static class PipelineRunQueryOrder + public static class RunQueryOrder { public const string ASC = "ASC"; public const string DESC = "DESC"; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrderBy.cs similarity index 61% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrderBy.cs index 0576d228f013..52350f4144be 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrderBy.cs @@ -15,26 +15,32 @@ namespace Microsoft.Azure.Management.DataFactory.Models using System.Linq; /// - /// An object to provide order by options for listing pipeline runs. + /// An object to provide order by options for listing runs. /// - public partial class PipelineRunQueryOrderBy + public partial class RunQueryOrderBy { /// - /// Initializes a new instance of the PipelineRunQueryOrderBy class. + /// Initializes a new instance of the RunQueryOrderBy class. /// - public PipelineRunQueryOrderBy() + public RunQueryOrderBy() { CustomInit(); } /// - /// Initializes a new instance of the PipelineRunQueryOrderBy class. + /// Initializes a new instance of the RunQueryOrderBy class. /// - /// Parameter name to be used for order by. - /// Possible values include: 'RunStart', 'RunEnd' + /// Parameter name to be used for order by. The + /// allowed parameters to order by for pipeline runs are PipelineName, + /// RunStart, RunEnd and Status; for activity runs are ActivityName, + /// ActivityRunStart, ActivityRunEnd and Status; for trigger runs are + /// TriggerName, TriggerRunTimestamp and Status. Possible values + /// include: 'RunStart', 'RunEnd', 'PipelineName', 'Status', + /// 'ActivityName', 'ActivityRunStart', 'ActivityRunEnd', + /// 'TriggerName', 'TriggerRunTimestamp' /// Sorting order of the parameter. Possible values /// include: 'ASC', 'DESC' - public PipelineRunQueryOrderBy(string orderBy, string order) + public RunQueryOrderBy(string orderBy, string order) { OrderBy = orderBy; Order = order; @@ -47,8 +53,14 @@ public PipelineRunQueryOrderBy(string orderBy, string order) partial void CustomInit(); /// - /// Gets or sets parameter name to be used for order by. Possible - /// values include: 'RunStart', 'RunEnd' + /// Gets or sets parameter name to be used for order by. The allowed + /// parameters to order by for pipeline runs are PipelineName, + /// RunStart, RunEnd and Status; for activity runs are ActivityName, + /// ActivityRunStart, ActivityRunEnd and Status; for trigger runs are + /// TriggerName, TriggerRunTimestamp and Status. Possible values + /// include: 'RunStart', 'RunEnd', 'PipelineName', 'Status', + /// 'ActivityName', 'ActivityRunStart', 'ActivityRunEnd', + /// 'TriggerName', 'TriggerRunTimestamp' /// [JsonProperty(PropertyName = "orderBy")] public string OrderBy { get; set; } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrderByField.cs similarity index 61% rename from src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs rename to src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrderByField.cs index 5bbe6c9eff77..22ac2a6964de 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RunQueryOrderByField.cs @@ -12,13 +12,18 @@ namespace Microsoft.Azure.Management.DataFactory.Models { /// - /// Defines values for PipelineRunQueryFilterOperand. + /// Defines values for RunQueryOrderByField. /// - public static class PipelineRunQueryFilterOperand + public static class RunQueryOrderByField { - public const string PipelineName = "PipelineName"; - public const string Status = "Status"; public const string RunStart = "RunStart"; public const string RunEnd = "RunEnd"; + public const string PipelineName = "PipelineName"; + public const string Status = "Status"; + public const string ActivityName = "ActivityName"; + public const string ActivityRunStart = "ActivityRunStart"; + public const string ActivityRunEnd = "ActivityRunEnd"; + public const string TriggerName = "TriggerName"; + public const string TriggerRunTimestamp = "TriggerRunTimestamp"; } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs index 3ee00e622af5..7b160e484386 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs @@ -10,8 +10,6 @@ namespace Microsoft.Azure.Management.DataFactory.Models { - using Microsoft.Rest; - using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,7 +19,6 @@ namespace Microsoft.Azure.Management.DataFactory.Models /// Self-hosted integration runtime. /// [Newtonsoft.Json.JsonObject("SelfHosted")] - [Rest.Serialization.JsonTransformation] public partial class SelfHostedIntegrationRuntime : IntegrationRuntime { /// @@ -40,10 +37,9 @@ public SelfHostedIntegrationRuntime() /// Unmatched properties from the /// message are deserialized this collection /// Integration runtime description. - public SelfHostedIntegrationRuntime(IDictionary additionalProperties = default(IDictionary), string description = default(string), LinkedIntegrationRuntimeProperties linkedInfo = default(LinkedIntegrationRuntimeProperties)) + public SelfHostedIntegrationRuntime(IDictionary additionalProperties = default(IDictionary), string description = default(string)) : base(additionalProperties, description) { - LinkedInfo = linkedInfo; CustomInit(); } @@ -52,10 +48,5 @@ public SelfHostedIntegrationRuntime() /// partial void CustomInit(); - /// - /// - [JsonProperty(PropertyName = "typeProperties.linkedInfo")] - public LinkedIntegrationRuntimeProperties LinkedInfo { get; set; } - } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs index 01dadc75ca72..68132543d2a6 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs @@ -72,9 +72,11 @@ public SelfHostedIntegrationRuntimeStatus() /// 'Off' /// Status of the integration runtime /// version. - /// The list of linked integration runtimes that - /// are created to share with this integration runtime. - public SelfHostedIntegrationRuntimeStatus(IDictionary additionalProperties = default(IDictionary), string dataFactoryName = default(string), string state = default(string), System.DateTime? createTime = default(System.DateTime?), string taskQueueId = default(string), string internalChannelEncryption = default(string), string version = default(string), IList nodes = default(IList), System.DateTime? scheduledUpdateDate = default(System.DateTime?), string updateDelayOffset = default(string), string localTimeZoneOffset = default(string), IDictionary capabilities = default(IDictionary), IList serviceUrls = default(IList), string autoUpdate = default(string), string versionStatus = default(string), IList links = default(IList)) + /// The version that the integration + /// runtime is going to update to. + /// The latest version on download + /// center. + public SelfHostedIntegrationRuntimeStatus(IDictionary additionalProperties = default(IDictionary), string dataFactoryName = default(string), string state = default(string), System.DateTime? createTime = default(System.DateTime?), string taskQueueId = default(string), string internalChannelEncryption = default(string), string version = default(string), IList nodes = default(IList), System.DateTime? scheduledUpdateDate = default(System.DateTime?), string updateDelayOffset = default(string), string localTimeZoneOffset = default(string), IDictionary capabilities = default(IDictionary), IList serviceUrls = default(IList), string autoUpdate = default(string), string versionStatus = default(string), string pushedVersion = default(string), string latestVersion = default(string)) : base(additionalProperties, dataFactoryName, state) { CreateTime = createTime; @@ -89,7 +91,8 @@ public SelfHostedIntegrationRuntimeStatus() ServiceUrls = serviceUrls; AutoUpdate = autoUpdate; VersionStatus = versionStatus; - Links = links; + PushedVersion = pushedVersion; + LatestVersion = latestVersion; CustomInit(); } @@ -180,11 +183,17 @@ public SelfHostedIntegrationRuntimeStatus() public string VersionStatus { get; private set; } /// - /// Gets or sets the list of linked integration runtimes that are - /// created to share with this integration runtime. + /// Gets the version that the integration runtime is going to update + /// to. /// - [JsonProperty(PropertyName = "typeProperties.links")] - public IList Links { get; set; } + [JsonProperty(PropertyName = "typeProperties.pushedVersion")] + public string PushedVersion { get; private set; } + + /// + /// Gets the latest version on download center. + /// + [JsonProperty(PropertyName = "typeProperties.latestVersion")] + public string LatestVersion { get; private set; } } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs index af9c84b6b845..8ef7837c41dc 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs @@ -44,13 +44,14 @@ public SqlServerStoredProcedureActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Value and type setting for /// stored procedure parameters. Example: "{Parameter1: {value: "1", /// type: "int"}}". - public SqlServerStoredProcedureActivity(string name, object storedProcedureName, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary storedProcedureParameters = default(IDictionary)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public SqlServerStoredProcedureActivity(string name, object storedProcedureName, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), IDictionary storedProcedureParameters = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { StoredProcedureName = storedProcedureName; StoredProcedureParameters = storedProcedureParameters; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs index 8550c7df141e..05d0edfcce4f 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs @@ -33,12 +33,19 @@ public TabularTranslator() /// /// Unmatched properties from the /// message are deserialized this collection - /// Column mappings. Type: string (or - /// Expression with resultType string). - public TabularTranslator(IDictionary additionalProperties = default(IDictionary), object columnMappings = default(object)) + /// Column mappings. Example: "UserId: + /// MyUserId, Group: MyGroup, Name: MyName" Type: string (or Expression + /// with resultType string). + /// The schema mapping to map between + /// tabular data and hierarchical data. Example: {"Column1": + /// "$.Column1", "Column2": "$.Column2.Property1", "Column3": + /// "$.Column2.Property2"}. Type: object (or Expression with resultType + /// object). + public TabularTranslator(IDictionary additionalProperties = default(IDictionary), object columnMappings = default(object), object schemaMapping = default(object)) : base(additionalProperties) { ColumnMappings = columnMappings; + SchemaMapping = schemaMapping; CustomInit(); } @@ -48,11 +55,21 @@ public TabularTranslator() partial void CustomInit(); /// - /// Gets or sets column mappings. Type: string (or Expression with - /// resultType string). + /// Gets or sets column mappings. Example: "UserId: MyUserId, Group: + /// MyGroup, Name: MyName" Type: string (or Expression with resultType + /// string). /// [JsonProperty(PropertyName = "columnMappings")] public object ColumnMappings { get; set; } + /// + /// Gets or sets the schema mapping to map between tabular data and + /// hierarchical data. Example: {"Column1": "$.Column1", "Column2": + /// "$.Column2.Property1", "Column3": "$.Column2.Property2"}. Type: + /// object (or Expression with resultType object). + /// + [JsonProperty(PropertyName = "schemaMapping")] + public object SchemaMapping { get; set; } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunsQueryResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunsQueryResponse.cs new file mode 100644 index 000000000000..fcd7ea71ebfb --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunsQueryResponse.cs @@ -0,0 +1,78 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A list of trigger runs. + /// + public partial class TriggerRunsQueryResponse + { + /// + /// Initializes a new instance of the TriggerRunsQueryResponse class. + /// + public TriggerRunsQueryResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TriggerRunsQueryResponse class. + /// + /// List of trigger runs. + /// The continuation token for getting + /// the next page of results, if any remaining results exist, null + /// otherwise. + public TriggerRunsQueryResponse(IList value, string continuationToken = default(string)) + { + Value = value; + ContinuationToken = continuationToken; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of trigger runs. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets the continuation token for getting the next page of + /// results, if any remaining results exist, null otherwise. + /// + [JsonProperty(PropertyName = "continuationToken")] + public string ContinuationToken { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Value == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); + } + } + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs index 0db8dd9cc145..edc4e73c8be7 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs @@ -46,6 +46,7 @@ public UntilActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Specifies the timeout for the activity to /// run. If there is no value specified, it takes the value of /// TimeSpan.FromDays(7) which is 1 week as default. Type: string (or @@ -53,8 +54,8 @@ public UntilActivity() /// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). Type: string /// (or Expression with resultType string), pattern: /// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - public UntilActivity(string name, Expression expression, IList activities, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), object timeout = default(object)) - : base(name, additionalProperties, description, dependsOn) + public UntilActivity(string name, Expression expression, IList activities, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), object timeout = default(object)) + : base(name, additionalProperties, description, dependsOn, userProperties) { Expression = expression; Timeout = timeout; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs index 30c06de09c13..7bbed4269237 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs @@ -41,8 +41,9 @@ public WaitActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. - public WaitActivity(string name, int waitTimeInSeconds, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList)) - : base(name, additionalProperties, description, dependsOn) + /// Activity user properties. + public WaitActivity(string name, int waitTimeInSeconds, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary)) + : base(name, additionalProperties, description, dependsOn, userProperties) { WaitTimeInSeconds = waitTimeInSeconds; CustomInit(); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs index 3a8723ef9349..bba2c2ddc009 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs @@ -43,6 +43,7 @@ public WebActivity() /// message are deserialized this collection /// Activity description. /// Activity depends on condition. + /// Activity user properties. /// Linked service reference. /// Activity policy. /// Represents the headers that will be sent to @@ -59,8 +60,8 @@ public WebActivity() /// endpoint. /// List of linked services passed to web /// endpoint. - public WebActivity(string name, string method, object url, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object headers = default(object), object body = default(object), WebActivityAuthentication authentication = default(WebActivityAuthentication), IList datasets = default(IList), IList linkedServices = default(IList)) - : base(name, additionalProperties, description, dependsOn, linkedServiceName, policy) + public WebActivity(string name, string method, object url, IDictionary additionalProperties = default(IDictionary), string description = default(string), IList dependsOn = default(IList), IDictionary userProperties = default(IDictionary), LinkedServiceReference linkedServiceName = default(LinkedServiceReference), ActivityPolicy policy = default(ActivityPolicy), object headers = default(object), object body = default(object), WebActivityAuthentication authentication = default(WebActivityAuthentication), IList datasets = default(IList), IList linkedServices = default(IList)) + : base(name, additionalProperties, description, dependsOn, userProperties, linkedServiceName, policy) { Method = method; Url = url; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs index 18cbab805d36..29d01eb797b5 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs @@ -59,7 +59,7 @@ internal Operations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ internal Operations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -158,13 +158,14 @@ internal Operations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -174,6 +175,183 @@ internal Operations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists the available Azure Data Factory API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -186,7 +364,7 @@ internal Operations(DataFactoryManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -199,7 +377,7 @@ internal Operations(DataFactoryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs index b737a3bb7e14..92df29dcf4f2 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs @@ -27,7 +27,7 @@ public static partial class OperationsExtensions /// /// The operations group for this extension method. /// - public static OperationListResponse List(this IOperations operations) + public static IPage List(this IOperations operations) { return operations.ListAsync().GetAwaiter().GetResult(); } @@ -41,7 +41,7 @@ public static OperationListResponse List(this IOperations operations) /// /// The cancellation token. /// - public static async Task ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -49,5 +49,39 @@ public static OperationListResponse List(this IOperations operations) } } + /// + /// Lists the available Azure Data Factory API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the available Azure Data Factory API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs index f68cc9265609..4b508afd900c 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs @@ -68,7 +68,7 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -83,7 +83,7 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> QueryByFactoryWithHttpMessagesAsync(string resourceGroupName, string factoryName, PipelineRunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> QueryByFactoryWithHttpMessagesAsync(string resourceGroupName, string factoryName, RunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -154,7 +154,7 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/queryPipelineRuns").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); @@ -229,13 +229,14 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -245,6 +246,10 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -257,7 +262,7 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -270,7 +275,7 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -307,7 +312,7 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -459,13 +464,14 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -475,6 +481,10 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -519,5 +529,219 @@ internal PipelineRunsOperations(DataFactoryManagementClient client) return _result; } + /// + /// Cancel a pipeline run by its run ID. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// The pipeline run identifier. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string factoryName, string runId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (factoryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "factoryName"); + } + if (factoryName != null) + { + if (factoryName.Length > 63) + { + throw new ValidationException(ValidationRules.MaxLength, "factoryName", 63); + } + if (factoryName.Length < 3) + { + throw new ValidationException(ValidationRules.MinLength, "factoryName", 3); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(factoryName, "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")) + { + throw new ValidationException(ValidationRules.Pattern, "factoryName", "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$"); + } + } + if (runId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "runId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("factoryName", factoryName); + tracingParameters.Add("runId", runId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}/cancel").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); + _url = _url.Replace("{runId}", System.Uri.EscapeDataString(runId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs index 59fbfbc2b08d..9c9b69173afe 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs @@ -36,7 +36,7 @@ public static partial class PipelineRunsOperationsExtensions /// /// Parameters to filter the pipeline run. /// - public static PipelineRunQueryResponse QueryByFactory(this IPipelineRunsOperations operations, string resourceGroupName, string factoryName, PipelineRunFilterParameters filterParameters) + public static PipelineRunsQueryResponse QueryByFactory(this IPipelineRunsOperations operations, string resourceGroupName, string factoryName, RunFilterParameters filterParameters) { return operations.QueryByFactoryAsync(resourceGroupName, factoryName, filterParameters).GetAwaiter().GetResult(); } @@ -59,7 +59,7 @@ public static PipelineRunQueryResponse QueryByFactory(this IPipelineRunsOperatio /// /// The cancellation token. /// - public static async Task QueryByFactoryAsync(this IPipelineRunsOperations operations, string resourceGroupName, string factoryName, PipelineRunFilterParameters filterParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task QueryByFactoryAsync(this IPipelineRunsOperations operations, string resourceGroupName, string factoryName, RunFilterParameters filterParameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.QueryByFactoryWithHttpMessagesAsync(resourceGroupName, factoryName, filterParameters, null, cancellationToken).ConfigureAwait(false)) { @@ -113,5 +113,48 @@ public static PipelineRun Get(this IPipelineRunsOperations operations, string re } } + /// + /// Cancel a pipeline run by its run ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// The pipeline run identifier. + /// + public static void Cancel(this IPipelineRunsOperations operations, string resourceGroupName, string factoryName, string runId) + { + operations.CancelAsync(resourceGroupName, factoryName, runId).GetAwaiter().GetResult(); + } + + /// + /// Cancel a pipeline run by its run ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// The pipeline run identifier. + /// + /// + /// The cancellation token. + /// + public static async Task CancelAsync(this IPipelineRunsOperations operations, string resourceGroupName, string factoryName, string runId, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CancelWithHttpMessagesAsync(resourceGroupName, factoryName, runId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs index e3d350b454c8..8aad6976a67b 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs @@ -65,7 +65,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -211,13 +211,14 @@ internal PipelinesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,6 +228,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -296,7 +301,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -487,13 +492,14 @@ internal PipelinesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -503,6 +509,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -559,13 +569,18 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The pipeline name. /// + /// + /// ETag of the pipeline 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. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -580,7 +595,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -657,6 +672,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("pipelineName", pipelineName); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -686,6 +702,14 @@ internal PipelinesOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -730,15 +754,16 @@ internal PipelinesOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 304) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -748,6 +773,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -810,7 +839,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -974,13 +1003,14 @@ internal PipelinesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -990,6 +1020,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1028,8 +1062,13 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The pipeline name. /// + /// + /// The pipeline run identifier. If run ID is specified the parameters of the + /// the specified run will be used to create a new run. + /// /// - /// Parameters of the pipeline run. + /// Parameters of the pipeline run. These parameters will be used only if the + /// runId is not specified. /// /// /// Headers that will be added to request. @@ -1037,7 +1076,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1052,7 +1091,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, IDictionary parameters = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default(string), IDictionary parameters = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1129,6 +1168,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("pipelineName", pipelineName); + tracingParameters.Add("referencePipelineRunId", referencePipelineRunId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateRun", tracingParameters); @@ -1145,6 +1185,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } + if (referencePipelineRunId != null) + { + _queryParameters.Add(string.Format("referencePipelineRunId={0}", System.Uri.EscapeDataString(referencePipelineRunId))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1209,15 +1253,16 @@ internal PipelinesOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1227,6 +1272,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1247,7 +1296,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 202) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try @@ -1283,7 +1332,7 @@ internal PipelinesOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1379,13 +1428,14 @@ internal PipelinesOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1395,6 +1445,10 @@ internal PipelinesOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs index 86fafb6aa09b..21133aad7162 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs @@ -138,9 +138,14 @@ public static IPage ListByFactory(this IPipelinesOperations op /// /// The pipeline name. /// - public static PipelineResource Get(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName) + /// + /// ETag of the pipeline 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. + /// + public static PipelineResource Get(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, string ifNoneMatch = default(string)) { - return operations.GetAsync(resourceGroupName, factoryName, pipelineName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, factoryName, pipelineName, ifNoneMatch).GetAwaiter().GetResult(); } /// @@ -158,12 +163,17 @@ public static PipelineResource Get(this IPipelinesOperations operations, string /// /// The pipeline name. /// + /// + /// ETag of the pipeline 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. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, pipelineName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, pipelineName, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -227,12 +237,17 @@ public static void Delete(this IPipelinesOperations operations, string resourceG /// /// The pipeline name. /// + /// + /// The pipeline run identifier. If run ID is specified the parameters of the + /// the specified run will be used to create a new run. + /// /// - /// Parameters of the pipeline run. + /// Parameters of the pipeline run. These parameters will be used only if the + /// runId is not specified. /// - public static CreateRunResponse CreateRun(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, IDictionary parameters = default(IDictionary)) + public static CreateRunResponse CreateRun(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default(string), IDictionary parameters = default(IDictionary)) { - return operations.CreateRunAsync(resourceGroupName, factoryName, pipelineName, parameters).GetAwaiter().GetResult(); + return operations.CreateRunAsync(resourceGroupName, factoryName, pipelineName, referencePipelineRunId, parameters).GetAwaiter().GetResult(); } /// @@ -250,15 +265,20 @@ public static void Delete(this IPipelinesOperations operations, string resourceG /// /// The pipeline name. /// + /// + /// The pipeline run identifier. If run ID is specified the parameters of the + /// the specified run will be used to create a new run. + /// /// - /// Parameters of the pipeline run. + /// Parameters of the pipeline run. These parameters will be used only if the + /// runId is not specified. /// /// /// The cancellation token. /// - public static async Task CreateRunAsync(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, IDictionary parameters = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateRunAsync(this IPipelinesOperations operations, string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default(string), IDictionary parameters = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateRunWithHttpMessagesAsync(resourceGroupName, factoryName, pipelineName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateRunWithHttpMessagesAsync(resourceGroupName, factoryName, pipelineName, referencePipelineRunId, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/SdkInfo_DataFactoryManagementClient.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/SdkInfo_DataFactoryManagementClient.cs index 363a89da08f9..03210e39bd38 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/SdkInfo_DataFactoryManagementClient.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/SdkInfo_DataFactoryManagementClient.cs @@ -19,16 +19,17 @@ public static IEnumerable> ApiInfo_DataFactoryMana { return new Tuple[] { - new Tuple("DataFactory", "ActivityRuns", "2017-09-01-preview"), - new Tuple("DataFactory", "Datasets", "2017-09-01-preview"), - new Tuple("DataFactory", "Factories", "2017-09-01-preview"), - new Tuple("DataFactory", "IntegrationRuntimeNodes", "2017-09-01-preview"), - new Tuple("DataFactory", "IntegrationRuntimes", "2017-09-01-preview"), - new Tuple("DataFactory", "LinkedServices", "2017-09-01-preview"), - new Tuple("DataFactory", "Operations", "2017-09-01-preview"), - new Tuple("DataFactory", "PipelineRuns", "2017-09-01-preview"), - new Tuple("DataFactory", "Pipelines", "2017-09-01-preview"), - new Tuple("DataFactory", "Triggers", "2017-09-01-preview"), + new Tuple("DataFactory", "ActivityRuns", "2018-06-01"), + new Tuple("DataFactory", "Datasets", "2018-06-01"), + new Tuple("DataFactory", "Factories", "2018-06-01"), + new Tuple("DataFactory", "IntegrationRuntimeNodes", "2018-06-01"), + new Tuple("DataFactory", "IntegrationRuntimes", "2018-06-01"), + new Tuple("DataFactory", "LinkedServices", "2018-06-01"), + new Tuple("DataFactory", "Operations", "2018-06-01"), + new Tuple("DataFactory", "PipelineRuns", "2018-06-01"), + new Tuple("DataFactory", "Pipelines", "2018-06-01"), + new Tuple("DataFactory", "TriggerRuns", "2018-06-01"), + new Tuple("DataFactory", "Triggers", "2018-06-01"), }.AsEnumerable(); } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggerRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggerRunsOperations.cs new file mode 100644 index 000000000000..fdf5df272f69 --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggerRunsOperations.cs @@ -0,0 +1,298 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// TriggerRunsOperations operations. + /// + internal partial class TriggerRunsOperations : IServiceOperations, ITriggerRunsOperations + { + /// + /// Initializes a new instance of the TriggerRunsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal TriggerRunsOperations(DataFactoryManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the DataFactoryManagementClient + /// + public DataFactoryManagementClient Client { get; private set; } + + /// + /// Query trigger runs. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// Parameters to filter the pipeline run. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> QueryByFactoryWithHttpMessagesAsync(string resourceGroupName, string factoryName, RunFilterParameters filterParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (factoryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "factoryName"); + } + if (factoryName != null) + { + if (factoryName.Length > 63) + { + throw new ValidationException(ValidationRules.MaxLength, "factoryName", 63); + } + if (factoryName.Length < 3) + { + throw new ValidationException(ValidationRules.MinLength, "factoryName", 3); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(factoryName, "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")) + { + throw new ValidationException(ValidationRules.Pattern, "factoryName", "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (filterParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "filterParameters"); + } + if (filterParameters != null) + { + filterParameters.Validate(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("factoryName", factoryName); + tracingParameters.Add("filterParameters", filterParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "QueryByFactory", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/queryTriggerRuns").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(filterParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(filterParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggerRunsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggerRunsOperationsExtensions.cs new file mode 100644 index 000000000000..130e9c889322 --- /dev/null +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggerRunsOperationsExtensions.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DataFactory +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for TriggerRunsOperations. + /// + public static partial class TriggerRunsOperationsExtensions + { + /// + /// Query trigger runs. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// Parameters to filter the pipeline run. + /// + public static TriggerRunsQueryResponse QueryByFactory(this ITriggerRunsOperations operations, string resourceGroupName, string factoryName, RunFilterParameters filterParameters) + { + return operations.QueryByFactoryAsync(resourceGroupName, factoryName, filterParameters).GetAwaiter().GetResult(); + } + + /// + /// Query trigger runs. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The resource group name. + /// + /// + /// The factory name. + /// + /// + /// Parameters to filter the pipeline run. + /// + /// + /// The cancellation token. + /// + public static async Task QueryByFactoryAsync(this ITriggerRunsOperations operations, string resourceGroupName, string factoryName, RunFilterParameters filterParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.QueryByFactoryWithHttpMessagesAsync(resourceGroupName, factoryName, filterParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs index 2a92bf696054..45ce129518bc 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs @@ -65,7 +65,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -211,13 +211,14 @@ internal TriggersOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,6 +228,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -296,7 +301,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -487,13 +492,14 @@ internal TriggersOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -503,6 +509,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -559,13 +569,18 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The trigger name. /// + /// + /// ETag of the trigger 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. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -580,7 +595,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, string ifNoneMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -657,6 +672,7 @@ internal TriggersOperations(DataFactoryManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("factoryName", factoryName); tracingParameters.Add("triggerName", triggerName); + tracingParameters.Add("ifNoneMatch", ifNoneMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -686,6 +702,14 @@ internal TriggersOperations(DataFactoryManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifNoneMatch != null) + { + if (_httpRequest.Headers.Contains("If-None-Match")) + { + _httpRequest.Headers.Remove("If-None-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-None-Match", ifNoneMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -730,15 +754,16 @@ internal TriggersOperations(DataFactoryManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 304) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -748,6 +773,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -810,7 +839,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -974,13 +1003,14 @@ internal TriggersOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -990,6 +1020,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1066,261 +1100,6 @@ internal TriggersOperations(DataFactoryManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } - /// - /// List trigger runs. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The trigger name. - /// - /// - /// Start time for trigger runs. - /// - /// - /// End time for trigger runs. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListRunsWithHttpMessagesAsync(string resourceGroupName, string factoryName, string triggerName, System.DateTime startTime, System.DateTime endTime, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } - if (factoryName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "factoryName"); - } - if (factoryName != null) - { - if (factoryName.Length > 63) - { - throw new ValidationException(ValidationRules.MaxLength, "factoryName", 63); - } - if (factoryName.Length < 3) - { - throw new ValidationException(ValidationRules.MinLength, "factoryName", 3); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(factoryName, "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "factoryName", "^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$"); - } - } - if (triggerName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); - } - if (triggerName != null) - { - if (triggerName.Length > 260) - { - throw new ValidationException(ValidationRules.MaxLength, "triggerName", 260); - } - if (triggerName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "triggerName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(triggerName, "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$")) - { - throw new ValidationException(ValidationRules.Pattern, "triggerName", "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("factoryName", factoryName); - tracingParameters.Add("triggerName", triggerName); - tracingParameters.Add("startTime", startTime); - tracingParameters.Add("endTime", endTime); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListRuns", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/triggers/{triggerName}/triggerruns").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{factoryName}", System.Uri.EscapeDataString(factoryName)); - _url = _url.Replace("{triggerName}", System.Uri.EscapeDataString(triggerName)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - _queryParameters.Add(string.Format("startTime={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(startTime, Client.SerializationSettings).Trim('"')))); - _queryParameters.Add(string.Format("endTime={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(endTime, Client.SerializationSettings).Trim('"')))); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - /// /// Starts a trigger. /// @@ -1339,7 +1118,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1503,13 +1282,14 @@ internal TriggersOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1519,6 +1299,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1563,7 +1347,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1727,13 +1511,14 @@ internal TriggersOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1743,6 +1528,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1781,7 +1570,7 @@ internal TriggersOperations(DataFactoryManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1877,13 +1666,14 @@ internal TriggersOperations(DataFactoryManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1893,174 +1683,10 @@ internal TriggersOperations(DataFactoryManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) + if (_httpResponse.Headers.Contains("x-ms-request-id")) { - ServiceClientTracing.Error(_invocationId, ex); + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// List trigger runs. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListRunsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListRunsNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -2073,7 +1699,7 @@ internal TriggersOperations(DataFactoryManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2086,7 +1712,7 @@ internal TriggersOperations(DataFactoryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs index 94a578341f19..b942984b5427 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs @@ -136,9 +136,14 @@ public static IPage ListByFactory(this ITriggersOperations oper /// /// The trigger name. /// - public static TriggerResource Get(this ITriggersOperations operations, string resourceGroupName, string factoryName, string triggerName) + /// + /// ETag of the trigger 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. + /// + public static TriggerResource Get(this ITriggersOperations operations, string resourceGroupName, string factoryName, string triggerName, string ifNoneMatch = default(string)) { - return operations.GetAsync(resourceGroupName, factoryName, triggerName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, factoryName, triggerName, ifNoneMatch).GetAwaiter().GetResult(); } /// @@ -156,12 +161,17 @@ public static TriggerResource Get(this ITriggersOperations operations, string re /// /// The trigger name. /// + /// + /// ETag of the trigger 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. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this ITriggersOperations operations, string resourceGroupName, string factoryName, string triggerName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ITriggersOperations operations, string resourceGroupName, string factoryName, string triggerName, string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, triggerName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, factoryName, triggerName, ifNoneMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -296,64 +306,6 @@ public static void Stop(this ITriggersOperations operations, string resourceGrou (await operations.StopWithHttpMessagesAsync(resourceGroupName, factoryName, triggerName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } - /// - /// List trigger runs. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The trigger name. - /// - /// - /// Start time for trigger runs. - /// - /// - /// End time for trigger runs. - /// - public static IPage ListRuns(this ITriggersOperations operations, string resourceGroupName, string factoryName, string triggerName, System.DateTime startTime, System.DateTime endTime) - { - return operations.ListRunsAsync(resourceGroupName, factoryName, triggerName, startTime, endTime).GetAwaiter().GetResult(); - } - - /// - /// List trigger runs. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The resource group name. - /// - /// - /// The factory name. - /// - /// - /// The trigger name. - /// - /// - /// Start time for trigger runs. - /// - /// - /// End time for trigger runs. - /// - /// - /// The cancellation token. - /// - public static async Task> ListRunsAsync(this ITriggersOperations operations, string resourceGroupName, string factoryName, string triggerName, System.DateTime startTime, System.DateTime endTime, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListRunsWithHttpMessagesAsync(resourceGroupName, factoryName, triggerName, startTime, endTime, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Starts a trigger. /// @@ -474,39 +426,5 @@ public static IPage ListByFactoryNext(this ITriggersOperations } } - /// - /// List trigger runs. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListRunsNext(this ITriggersOperations operations, string nextPageLink) - { - return operations.ListRunsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// List trigger runs. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListRunsNextAsync(this ITriggersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListRunsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - } } diff --git a/src/SDKs/DataFactory/Management.DataFactory/Microsoft.Azure.Management.DataFactory.csproj b/src/SDKs/DataFactory/Management.DataFactory/Microsoft.Azure.Management.DataFactory.csproj index 4cf7d8aacd4e..3a15b6acb9a7 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Microsoft.Azure.Management.DataFactory.csproj +++ b/src/SDKs/DataFactory/Management.DataFactory/Microsoft.Azure.Management.DataFactory.csproj @@ -6,16 +6,23 @@ Microsoft.Azure.Management.DataFactory Azure Data Factory V2 is the data integration platform that goes beyond Azure Data Factory V1's orchestration and batch-processing of time-series data, with a general purpose app model supporting modern data warehousing patterns and scenarios, lift-and-shift SSIS, and data-driven SaaS applications. Compose and manage reliable and secure data integration workflows at scale. Use native ADF data connectors and Integration Runtimes to move and transform cloud and on-premises data that can be unstructured, semi-structured, and structured with Hadoop, Azure Data Lake, Spark, SQL Server, Cosmos DB and many other data platforms. - 0.8.0-preview + 1.0.0 Microsoft.Azure.Management.DataFactory Microsoft Azure resource management;Data Factory;ADF; diff --git a/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs b/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs index 27c3102a3ca4..9c57d5ba495b 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs @@ -6,8 +6,8 @@ [assembly: AssemblyTitle("Microsoft Azure Data Factory Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Factory Resources.")] -[assembly: AssemblyVersion("0.8.0.0")] -[assembly: AssemblyFileVersion("0.8.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/SDKs/DataFactory/Management.DataFactory/generate.ps1 b/src/SDKs/DataFactory/Management.DataFactory/generate.ps1 index 013759515a03..b3d210f78cd9 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/generate.ps1 +++ b/src/SDKs/DataFactory/Management.DataFactory/generate.ps1 @@ -1 +1 @@ -Start-AutoRestCodeGeneration -ResourceProvider "datafactory/resource-manager" -AutoRestVersion "latest" +Start-AutoRestCodeGeneration -ResourceProvider "datafactory/resource-manager" -AutoRestVersion "latest" -ConfigFileTag "package-2018-06" diff --git a/src/SDKs/_metadata/datafactory_resource-manager.txt b/src/SDKs/_metadata/datafactory_resource-manager.txt index 399680c9bab5..e46a28ca0508 100644 --- a/src/SDKs/_metadata/datafactory_resource-manager.txt +++ b/src/SDKs/_metadata/datafactory_resource-manager.txt @@ -1,17 +1,35 @@ -Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\ADF\azure-sdk-for-net\tools\..\src\SDKs\ -2018-05-23 20:04:22 UTC +Installing AutoRest version: latest + +> autorest@2.0.4280 preinstall C:\Users\hvermis\AppData\Roaming\npm\node_modules\autorest +> node ./preinstall-check + +C:\Users\hvermis\AppData\Roaming\npm\autorest -> C:\Users\hvermis\AppData\Roaming\npm\node_modules\autorest\dist\app.js ++ autorest@2.0.4280 +updated 1 package in 1.685s + +AutoRest installed successfully. +Commencing code generation +Generating CSharp code +Executing AutoRest command +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=F:\g2\azure-sdk-for-net\src\SDKs +AutoRest code generation utility [version: 2.0.4280; node: v8.9.1] +(C) 2018 Microsoft Corporation. +https://aka.ms/autorest + Loading AutoRest core 'C:\Users\hvermis\.autorest\@microsoft.azure_autorest-core@2.0.4280\node_modules\@microsoft.azure\autorest-core\dist' (2.0.4280) + Loading AutoRest extension '@microsoft.azure/autorest.csharp' (~2.2.51->2.2.53) + Loading AutoRest extension '@microsoft.azure/autorest.modeler' (2.3.43->2.3.43) + +2018-06-22 22:48:42 UTC 1) azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 0d97bd1e397779473c8863fdf3ca66a6b075f9c2 +Commit: 37ca9e71d6c89b46ab990eb064ddb70308fd5824 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Users\fgutierr\AppData\Roaming\npm +-- autorest@2.0.4262 `-- oad@0.1.7 `-- autorest@1.9.1 +Bootstrapper version: C:\Users\hvermis\AppData\Roaming\npm `-- autorest@2.0.4280 Latest installed version: -.\tools\generate.ps1 was invoked by generate.ps1