diff --git a/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CancelPipelineRun.json b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CancelPipelineRun.json
new file mode 100644
index 000000000000..5b03267619e1
--- /dev/null
+++ b/src/SDKs/DataFactory/DataFactory.Tests/TestData/Factories_CancelPipelineRun.json
@@ -0,0 +1,21 @@
+{
+ "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/UnitTests/ExamplesUnitTest.cs b/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs
index 695224a590a0..a2f372da06a7 100644
--- a/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs
+++ b/src/SDKs/DataFactory/DataFactory.Tests/UnitTests/ExamplesUnitTest.cs
@@ -436,6 +436,15 @@ public void Pipelines_CreateRun()
});
}
+ [Fact]
+ public void Factories_CancelPipelineRun()
+ {
+ RunTest("Factories_CancelPipelineRun", (example, client, responseCode) =>
+ {
+ client.Factories.CancelPipelineRun(RGN(example), FN(example), new Guid().ToString());
+ });
+ }
+
[Fact]
public void PipelineRuns_ListByFactory()
{
diff --git a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs
index 54a9741884c0..2b0184aaa1cc 100644
--- a/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs
+++ b/src/SDKs/DataFactory/DataFactory.Tests/Utils/ExampleCapture.cs
@@ -51,7 +51,7 @@ public void CaptureAllExamples()
EnsureResourceGroupExists();
EnsureFactoryDoesNotExist();
ServiceClientTracing.IsEnabled = true;
-
+
// Start Factories operations, leaving factory available
CaptureFactories_CreateOrUpdate(); // 200
CaptureFactories_Update(); // 200
@@ -95,6 +95,7 @@ public void CaptureAllExamples()
string runId = CapturePipelines_CreateRun(); // 202, ISSUE service doesn't follow long-running pattern
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_ListByFactory(runId, beforeStartTime, afterEndTime); // 200, waits until succeeded so ready to get logs
CapturePipelineRuns_Get(runId); // 200
@@ -123,7 +124,7 @@ public void CaptureAllExamples()
// Finish LinkedServices operations, deleting linked service
CaptureLinkedServices_Delete(); // 200
CaptureLinkedServices_Delete(); // 204
-
+
// Finish integration runtime operations, deleting integration runtime
CaptureIntegrationRuntimes_Delete(); // 202
CaptureIntegrationRuntimes_Delete(); // 204
@@ -559,6 +560,13 @@ private string CapturePipelines_CreateRun()
return rtr.RunId;
}
+ private void CaptureFactories_CancelRun()
+ {
+ string runId = this.CapturePipelines_CreateRun();
+ interceptor.CurrentExampleName = "Factories_CancelPipelineRun";
+ client.Factories.CancelPipelineRun(secrets.ResourceGroupName, secrets.FactoryName, runId);
+ }
+
private void CapturePipelines_Delete()
{
interceptor.CurrentExampleName = "Pipelines_Delete";
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs
index 8baf6d6af8e6..1557a565472a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs
index 441dc1354b52..a5dfec659a5a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ActivityRunsOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs
index 85215fc503f1..bd18ebf8321c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/DataFactoryManagementClient.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Serialization;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs
index 5f973742eb63..3888079e5f8a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs
index 1a88b8b33dce..640e6d084c69 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/DatasetsOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs
index 5540f84f3aac..8bc4bfb00180 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
@@ -1319,6 +1319,215 @@ internal FactoriesOperations(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 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);
+ }
+ _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;
+ }
+
///
/// Lists factories under the specified subscription.
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs
index dffeff6dca1b..e3022e0ce571 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/FactoriesOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
@@ -252,6 +252,49 @@ 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 7cf69858984c..91628342ca8e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IActivityRunsOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IActivityRunsOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs
index d563cfd01d89..5936e4a60c5e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDataFactoryManagementClient.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs
index 9fb77a8cf696..6324df435dfe 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IDatasetsOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs
index 3cc50fc4d818..550b3dbc5b17 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IFactoriesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
@@ -168,6 +168,31 @@ 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.
///
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs
index 73295f5dcd30..6129cb2f0d4a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IIntegrationRuntimesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs
index 58a67e65c076..2242be726e6c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ILinkedServicesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs
index 22328cc78503..a1441169fc9b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs
index 90b34e6ab801..d693e0351fd1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelineRunsOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs
index 3e771948dceb..53110ad46387 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IPipelinesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs
index 4e15576732ae..f33f949b60cd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/ITriggersOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs
index 0d1090be47da..7a435a530d92 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs
index 8d415197beb7..1918211e0052 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/IntegrationRuntimesOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs
index cfa5d44a2542..106b0897cb7e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs
index 2665ad27e141..bc077133a1b7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/LinkedServicesOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs
index c7fa17bf9f02..51a901ef2002 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Activity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -27,7 +26,7 @@ public partial class Activity
///
public Activity()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs
index e47006796420..436836e60f30 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityDependency.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -27,7 +26,7 @@ public partial class ActivityDependency
///
public ActivityDependency()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs
index 3cbc038d522c..8003e5b3478c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityPolicy.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class ActivityPolicy
///
public ActivityPolicy()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs
index 7f6fd1672fc2..91732a903b1d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ActivityRun.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class ActivityRun
///
public ActivityRun()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs
index 67b7e71bc8f2..f71b2e71a736 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs
index 0f4e4f247ac3..95093a0ae9ad 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonRedshiftSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs
index 5881cb9d3d27..772b91bf00ba 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3Dataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +30,8 @@ public partial class AmazonS3Dataset : Dataset
///
public AmazonS3Dataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs
index 72711e1f125b..4fcb9b77e67f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AmazonS3LinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs
index edd62ccb080f..a250096a2ffe 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AvroFormat.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class AvroFormat : DatasetStorageFormat
///
public AvroFormat()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs
index b33f96b08e28..d012b794d0da 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBatchLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs
index 2a4dfc835ae9..42efb511fb44 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureBlobDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class AzureBlobDataset : Dataset
///
public AzureBlobDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs
index 396b02e0eb21..cb4a1fa73eb1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeAnalyticsLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs
index a1b65f578e1a..72e982bebe09 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class AzureDataLakeStoreDataset : Dataset
///
public AzureDataLakeStoreDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs
index 9e2af7de5764..9bc326801444 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs
index d3d1d67d6770..43cb19cdfcec 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class AzureDataLakeStoreSink : CopySink
///
public AzureDataLakeStoreSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs
index 42e80c1168dd..8ac9eba081f2 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureDataLakeStoreSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class AzureDataLakeStoreSource : CopySource
///
public AzureDataLakeStoreSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs
index 6da4c6dac8c1..378ffb4d7138 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +27,7 @@ public partial class AzureKeyVaultLinkedService : LinkedService
///
public AzureKeyVaultLinkedService()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultReference.cs
index 0fe26437163b..844385895bee 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultSecretReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultSecretReference.cs
index 4a12d0c52c5f..1bb495965112 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultSecretReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureKeyVaultSecretReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -27,7 +26,8 @@ public partial class AzureKeyVaultSecretReference : AzureKeyVaultReference
///
public AzureKeyVaultSecretReference()
{
- CustomInit();
+ Store = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs
index ba8d566be615..068cb805b1c6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLBatchExecutionActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +30,7 @@ public partial class AzureMLBatchExecutionActivity : ExecutionActivity
///
public AzureMLBatchExecutionActivity()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs
index be3b51e50093..055d77a02547 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs
index be54f701cabe..630288320eed 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLUpdateResourceActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLWebServiceFile.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLWebServiceFile.cs
index 2559927d8f5c..1e9395712dca 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLWebServiceFile.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureMLWebServiceFile.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs
index bf9977f934eb..a3135382f469 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureQueueSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class AzureQueueSink : CopySink
///
public AzureQueueSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs
index 91c0c9906f87..abd513fffcf6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class AzureSearchIndexDataset : Dataset
///
public AzureSearchIndexDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs
index 5ea8ed4ad508..32fd079b9b20 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class AzureSearchIndexSink : CopySink
///
public AzureSearchIndexSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexWriteBehaviorType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexWriteBehaviorType.cs
index 99a16bbb4afa..677ef93c37c1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexWriteBehaviorType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchIndexWriteBehaviorType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for AzureSearchIndexWriteBehaviorType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs
index 98b10c687608..cd3b00db153b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSearchLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs
index 32400c1d2ae4..cc0a2455b272 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs
index ca76d4998433..b22834e21283 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDWTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class AzureSqlDWTableDataset : Dataset
///
public AzureSqlDWTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs
index f2904b84e409..ed3149fed476 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlDatabaseLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs
index 6a28803b29ff..35ae4fb9472b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureSqlTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class AzureSqlTableDataset : Dataset
///
public AzureSqlTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs
index 31333aef9720..4fa4cdcd87a4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureStorageLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs
index e0cfe4dc34f3..029dfd2f5505 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class AzureTableDataset : Dataset
///
public AzureTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs
index 98e9d438089f..29cbe93ae93a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class AzureTableSink : CopySink
///
public AzureTableSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs
index 72ab5096fb22..2b3bbf78f905 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/AzureTableSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class AzureTableSource : CopySource
///
public AzureTableSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs
index e43f083f1e43..0176d43e9891 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class BlobSink : CopySink
///
public BlobSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs
index 59706b17fd47..0def60f71afe 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class BlobSource : CopySource
///
public BlobSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs
index ecc8d18f7df1..47f0b6956818 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/BlobTrigger.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs
index a9d16ac19662..ce7f131b6165 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs
index c13eae9c47b6..c0320b1c8974 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class CassandraSource : CopySource
///
public CassandraSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSourceReadConsistencyLevels.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSourceReadConsistencyLevels.cs
index 5c249a20dcc6..9b05158f8c3c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSourceReadConsistencyLevels.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraSourceReadConsistencyLevels.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for CassandraSourceReadConsistencyLevels.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs
index 903a7cb4c6a6..77f42afca45e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CassandraTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class CassandraTableDataset : Dataset
///
public CassandraTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs
index 39e50434be44..50ed8fb3edb8 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ControlActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -28,7 +27,7 @@ public partial class ControlActivity : Activity
///
public ControlActivity()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs
index e30a5c517520..483836199d49 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyBehaviorType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyBehaviorType.cs
index 486e002d6497..01cc5d50b1bb 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyBehaviorType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyBehaviorType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for CopyBehaviorType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs
index 81199216ad48..bc5d4830f5d1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class CopySink
///
public CopySink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs
index 61d1f30cbf89..22e69d8deccb 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopySource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class CopySource
///
public CopySource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs
index a0e538c93c14..f2657d1a15ee 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CopyTranslator.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class CopyTranslator
///
public CopyTranslator()
{
- CustomInit();
+ CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs
index 047dabcaacd0..dfd66128ecd1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CosmosDbLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CreateRunResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CreateRunResponse.cs
index dd37522632f8..01baa9991e49 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CreateRunResponse.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CreateRunResponse.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class CreateRunResponse
///
public CreateRunResponse()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs
index 34b16913dfa8..3216d6a53518 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivityReferenceObject.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivityReferenceObject.cs
index a6089200e408..389723149f64 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivityReferenceObject.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomActivityReferenceObject.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class CustomActivityReferenceObject
///
public CustomActivityReferenceObject()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs
index ae2a7802909d..d2332557c0d0 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataSourceLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -27,7 +26,7 @@ public partial class CustomDataSourceLinkedService : LinkedService
///
public CustomDataSourceLinkedService()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs
index ed935bad9e76..cf85181186fe 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/CustomDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -27,7 +26,8 @@ public partial class CustomDataset : Dataset
///
public CustomDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs
index cbac101e69dd..4f78982f08d1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DataLakeAnalyticsUSQLActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs
index 520c721b2962..adcfa959a5c1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Dataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs
index c1eb140b4c92..04f5332cfdc4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetBZip2Compression.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class DatasetBZip2Compression : DatasetCompression
///
public DatasetBZip2Compression()
{
- CustomInit();
+ CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs
index 5242832a613a..59070794e022 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompression.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class DatasetCompression
///
public DatasetCompression()
{
- CustomInit();
+ CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompressionLevel.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompressionLevel.cs
index ff14a0389030..0735c55af417 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompressionLevel.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetCompressionLevel.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for DatasetCompressionLevel.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDateTimePartitionValue.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDateTimePartitionValue.cs
index d8913d50979c..cf5be90477de 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDateTimePartitionValue.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDateTimePartitionValue.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class DatasetDateTimePartitionValue : DatasetPartitionValue
///
public DatasetDateTimePartitionValue()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs
index 5cfb7ab18314..4d12ebd0a815 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetDeflateCompression.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class DatasetDeflateCompression : DatasetCompression
///
public DatasetDeflateCompression()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs
index 0ddef9ac9c95..1870890f656a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetGZipCompression.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class DatasetGZipCompression : DatasetCompression
///
public DatasetGZipCompression()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartition.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartition.cs
index a43414246ebc..23cfdfcf0b8e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartition.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartition.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class DatasetPartition
///
public DatasetPartition()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartitionValue.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartitionValue.cs
index c9193e06cdba..775e7b4ef659 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartitionValue.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetPartitionValue.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class DatasetPartitionValue
///
public DatasetPartitionValue()
{
- CustomInit();
+ CustomInit();
}
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetReference.cs
index e43ac9fcafdb..859df9b55f85 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -27,7 +26,7 @@ public partial class DatasetReference
///
public DatasetReference()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetResource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetResource.cs
index b919c7cd4f3c..91d86f783455 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetResource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs
index 355843900fa2..eadaf109aad5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DatasetStorageFormat.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class DatasetStorageFormat
///
public DatasetStorageFormat()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DayOfWeek.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DayOfWeek.cs
index d0d0425198d7..9df6c3af95a9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DayOfWeek.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DayOfWeek.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -39,8 +38,10 @@ public enum DayOfWeek
}
internal static class DayOfWeekEnumExtension
{
- internal static string ToSerializedValue(this DayOfWeek? value) =>
- value == null ? null : ((DayOfWeek)value).ToSerializedValue();
+ internal static string ToSerializedValue(this DayOfWeek? value)
+ {
+ return value == null ? null : ((DayOfWeek)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this DayOfWeek value)
{
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DaysOfWeek.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DaysOfWeek.cs
index fd49ea5e8544..6046209a2a5d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DaysOfWeek.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DaysOfWeek.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -39,8 +38,10 @@ public enum DaysOfWeek
}
internal static class DaysOfWeekEnumExtension
{
- internal static string ToSerializedValue(this DaysOfWeek? value) =>
- value == null ? null : ((DaysOfWeek)value).ToSerializedValue();
+ internal static string ToSerializedValue(this DaysOfWeek? value)
+ {
+ return value == null ? null : ((DaysOfWeek)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this DaysOfWeek value)
{
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2AuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2AuthenticationType.cs
index 6fb6bc163c06..fe9aa4be4f4f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2AuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2AuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for Db2AuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs
index 4a122dfca3e2..3ed8daa091cc 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Db2LinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DependencyCondition.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DependencyCondition.cs
index 6fd6cf24d5eb..62dad3c95c25 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DependencyCondition.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DependencyCondition.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for DependencyCondition.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DistcpSettings.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DistcpSettings.cs
index 7c1986a2cf57..afa77cce6ba4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DistcpSettings.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DistcpSettings.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class DistcpSettings
///
public DistcpSettings()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs
index 27fadfb4eaf7..cfaf327b670c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +30,8 @@ public partial class DocumentDbCollectionDataset : Dataset
///
public DocumentDbCollectionDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs
index b0c8f008f99a..36c314a636be 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class DocumentDbCollectionSink : CopySink
///
public DocumentDbCollectionSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs
index 1fb09a68edc3..73c46f2857c1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DocumentDbCollectionSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class DocumentDbCollectionSource : CopySource
///
public DocumentDbCollectionSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs
index 632287e10e20..8a2f4cabe1cb 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsEntityDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class DynamicsEntityDataset : Dataset
///
public DynamicsEntityDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs
index 9df5dec0b149..919ed6f7050e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +27,7 @@ public partial class DynamicsLinkedService : LinkedService
///
public DynamicsLinkedService()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs
index 2e8515faf8fd..3dcc14dce707 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DynamicsSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class DynamicsSource : CopySource
///
public DynamicsSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs
index e0fee917e8d1..afd69dda24be 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponse.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -28,7 +27,7 @@ public partial class ErrorResponse
///
public ErrorResponse()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs
index 8f9d9e652414..fb318094a432 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ErrorResponseException.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs
index e3142a68bd77..41b1f1ea4381 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutePipelineActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs
index cbbaffff0ecf..f1f8f3abf2f2 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ExecutionActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Expression.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Expression.cs
index 3555cf34fecd..2da948bd6f5a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Expression.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Expression.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class Expression
///
public Expression()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs
index 1ad9b9470f24..73c75fd002b5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Factory.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryIdentity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryIdentity.cs
index 5c751729ac42..7c8c93879118 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryIdentity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryIdentity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class FactoryIdentity
///
public FactoryIdentity()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryUpdateParameters.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryUpdateParameters.cs
index 96cd3a6e8910..c6c5204a7abd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryUpdateParameters.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FactoryUpdateParameters.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileServerLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileServerLinkedService.cs
index 8a21a8fea977..5dffc92d5969 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileServerLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileServerLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileShareDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileShareDataset.cs
index 56b28177d14e..3853e3f65010 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileShareDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileShareDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class FileShareDataset : Dataset
///
public FileShareDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSink.cs
index 7ed56a76e8ca..8215815b11f7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class FileSystemSink : CopySink
///
public FileSystemSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSource.cs
index 60c6210bc102..2adedd39874a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FileSystemSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class FileSystemSource : CopySource
///
public FileSystemSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs
index 0b9d507d2362..07e4c890aa31 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ForEachActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpAuthenticationType.cs
index 4ce107fc4d06..067e28034d9a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for FtpAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpServerLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpServerLinkedService.cs
index d70666b7ad91..c1bf7be15a39 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpServerLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/FtpServerLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs
index d5fd4371147f..84953ca9a56d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/GetMetadataActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightActivityDebugInfoOption.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightActivityDebugInfoOption.cs
index 04eda0d57677..6b75439fb177 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightActivityDebugInfoOption.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightActivityDebugInfoOption.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for HDInsightActivityDebugInfoOption.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs
index 69d261d380fe..02a89e142ab0 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightHiveActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightLinkedService.cs
index cc233dc92862..6d21fc91c74c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs
index fc8307d8c4a1..01f37e4f8519 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightMapReduceActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightOnDemandLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightOnDemandLinkedService.cs
index 998c5b486dc5..bb684104468b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightOnDemandLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightOnDemandLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs
index b50e464cf28a..16e4a2c939ba 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightPigActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs
index 805508dbbd66..8033bace30d3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightSparkActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs
index 1c19b172ad40..0cff4bcee507 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HDInsightStreamingActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsLinkedService.cs
index a6da8df61ac7..b8c5cd3f4fd9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsSource.cs
index b1e5e37b2d3f..f49c03ff33b7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HdfsSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class HdfsSource : CopySource
///
public HdfsSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpAuthenticationType.cs
index e31e42046c37..43953e86e64e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for HttpAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpDataset.cs
index baa9ba2bdfb6..63fcb8188d6b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class HttpDataset : Dataset
///
public HttpDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpLinkedService.cs
index be433ba73404..1342d6189609 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpSource.cs
index e710cfb05a4b..367bc839fae1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/HttpSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class HttpSource : CopySource
///
public HttpSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs
index 3539bd72ba30..f89cd87b9018 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IfConditionActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntime.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntime.cs
index 5fc5a704a21b..795ec61ef993 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntime.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntime.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class IntegrationRuntime
///
public IntegrationRuntime()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeyName.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeyName.cs
index 6cf342a9c379..64f800566d41 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeyName.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeyName.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for IntegrationRuntimeAuthKeyName.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeys.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeys.cs
index e7a236e5a535..195aef7cce62 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeys.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAuthKeys.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class IntegrationRuntimeAuthKeys
///
public IntegrationRuntimeAuthKeys()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAutoUpdate.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAutoUpdate.cs
index a56c7004d36c..bd39a3d52389 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAutoUpdate.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeAutoUpdate.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for IntegrationRuntimeAutoUpdate.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs
index 4fa1a1c6e7a7..9241aac0391c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeComputeProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class IntegrationRuntimeComputeProperties
///
public IntegrationRuntimeComputeProperties()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeConnectionInfo.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeConnectionInfo.cs
index ca9d135da6f4..4aff77518741 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeConnectionInfo.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeConnectionInfo.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class IntegrationRuntimeConnectionInfo
///
public IntegrationRuntimeConnectionInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeInternalChannelEncryptionMode.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeInternalChannelEncryptionMode.cs
index 88df270daf33..493973da893b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeInternalChannelEncryptionMode.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeInternalChannelEncryptionMode.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for IntegrationRuntimeInternalChannelEncryptionMode.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeMonitoringData.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeMonitoringData.cs
index 44ac7ac09649..7684035c423d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeMonitoringData.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeMonitoringData.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class IntegrationRuntimeMonitoringData
///
public IntegrationRuntimeMonitoringData()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs
index ff26539265ee..d759a656c8bb 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeNodeMonitoringData.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class IntegrationRuntimeNodeMonitoringData
///
public IntegrationRuntimeNodeMonitoringData()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeReference.cs
index 4451de109410..37ab74c4cec2 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -28,7 +27,7 @@ public partial class IntegrationRuntimeReference
///
public IntegrationRuntimeReference()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRegenerateKeyParameters.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRegenerateKeyParameters.cs
index 44eaeb262643..d34a239af1bc 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRegenerateKeyParameters.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRegenerateKeyParameters.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class IntegrationRuntimeRegenerateKeyParameters
///
public IntegrationRuntimeRegenerateKeyParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs
index e60acb56abe4..ae1588660a10 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeRemoveNodeRequest.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class IntegrationRuntimeRemoveNodeRequest
///
public IntegrationRuntimeRemoveNodeRequest()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeResource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeResource.cs
index c7c3b3bd7bf8..729139d2a175 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeResource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class IntegrationRuntimeResource : SubResource
///
public IntegrationRuntimeResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogInfo.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogInfo.cs
index 8e63ad34ce58..552d4ae06199 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogInfo.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogInfo.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogPricingTier.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogPricingTier.cs
index 6f9fcf8c9744..6cd3a5a32af8 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogPricingTier.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisCatalogPricingTier.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for IntegrationRuntimeSsisCatalogPricingTier.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisProperties.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisProperties.cs
index daee50e151e2..86ffc2a0fe2d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisProperties.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeSsisProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeState.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeState.cs
index 734b40bd1a36..4dba02e5ce2e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeState.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeState.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for IntegrationRuntimeState.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatus.cs
index abc8e3e9203a..1f402664d2ae 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatus.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatus.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class IntegrationRuntimeStatus
///
public IntegrationRuntimeStatus()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusListResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusListResponse.cs
index 6b0cba2094bb..68d606b00ede 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusListResponse.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusListResponse.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -28,7 +27,7 @@ public partial class IntegrationRuntimeStatusListResponse
///
public IntegrationRuntimeStatusListResponse()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusResponse.cs
index 5ca6323d4d24..d8783bdff399 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusResponse.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeStatusResponse.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class IntegrationRuntimeStatusResponse
///
public IntegrationRuntimeStatusResponse()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeUpdateResult.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeUpdateResult.cs
index c2550fd05179..98337e35529f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeUpdateResult.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeUpdateResult.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for IntegrationRuntimeUpdateResult.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeVNetProperties.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeVNetProperties.cs
index 5322a6dc423f..0718eedd8be9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeVNetProperties.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/IntegrationRuntimeVNetProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class IntegrationRuntimeVNetProperties
///
public IntegrationRuntimeVNetProperties()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormat.cs
index d6a090229c0f..4404162ebc81 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormat.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class JsonFormat : DatasetStorageFormat
///
public JsonFormat()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormatFilePattern.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormatFilePattern.cs
index 6dba3313e5fd..823c3f01573c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormatFilePattern.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/JsonFormatFilePattern.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for JsonFormatFilePattern.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedService.cs
index 68dee24b090b..cf230990b929 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceReference.cs
index 9738c8503d32..bc3f527b2594 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class LinkedServiceReference
///
public LinkedServiceReference()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceResource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceResource.cs
index e93962eee308..46b9ff18644a 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceResource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LinkedServiceResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs
index 3bda59efb3a9..12209d9c7d01 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/LookupActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntime.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntime.cs
index 968c55cd2d9f..a5665fcd3083 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntime.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntime.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeError.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeError.cs
index 3bd3768f8bf0..87400a91f65c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeError.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeError.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class ManagedIntegrationRuntimeError
///
public ManagedIntegrationRuntimeError()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNode.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNode.cs
index 38e49670fe45..6f0ed6ec1fc4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNode.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNode.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class ManagedIntegrationRuntimeNode
///
public ManagedIntegrationRuntimeNode()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNodeStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNodeStatus.cs
index 75def8940a4d..1266ab4951cd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNodeStatus.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeNodeStatus.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for ManagedIntegrationRuntimeNodeStatus.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeOperationResult.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeOperationResult.cs
index 21b1ebea3863..0927845a88e5 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeOperationResult.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeOperationResult.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class ManagedIntegrationRuntimeOperationResult
///
public ManagedIntegrationRuntimeOperationResult()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeStatus.cs
index d9f7e9e72ace..d6e68c54d6d7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeStatus.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ManagedIntegrationRuntimeStatus.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +30,7 @@ public partial class ManagedIntegrationRuntimeStatus : IntegrationRuntimeStatus
///
public ManagedIntegrationRuntimeStatus()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbAuthenticationType.cs
index e4ff6c6a3cd1..2223b135c4d3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for MongoDbAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbCollectionDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbCollectionDataset.cs
index 6ed783c14f50..6fb3dbde7238 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbCollectionDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbCollectionDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class MongoDbCollectionDataset : Dataset
///
public MongoDbCollectionDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbLinkedService.cs
index b26756140256..73cfcfd7bbe2 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbSource.cs
index 21c4559bbce6..f894d1ba9fe6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MongoDbSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class MongoDbSource : CopySource
///
public MongoDbSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MySqlLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MySqlLinkedService.cs
index 147d757a6149..f0912b68931e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MySqlLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/MySqlLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataAuthenticationType.cs
index 06e49450ee28..17a0304264cd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for ODataAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataLinkedService.cs
index b1daa2139695..23b25939c492 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataResourceDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataResourceDataset.cs
index ee6fd9dae7f5..4a62f9fef371 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataResourceDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ODataResourceDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class ODataResourceDataset : Dataset
///
public ODataResourceDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcLinkedService.cs
index d59d37610578..98188dd746ef 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcSink.cs
index 8b7b2fc55bf9..f1ab5fc2fed6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OdbcSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class OdbcSink : CopySink
///
public OdbcSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Operation.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Operation.cs
index 44910f6f19b6..18255b93840f 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Operation.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Operation.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -27,7 +26,7 @@ public partial class Operation
///
public Operation()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationDisplay.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationDisplay.cs
index ccf5d10f4203..85a5df2fa391 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationDisplay.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationDisplay.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class OperationDisplay
///
public OperationDisplay()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs
index c3ddedd24957..ab1c762bb198 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationListResponse.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -26,7 +25,7 @@ public partial class OperationListResponse
///
public OperationListResponse()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationLogSpecification.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationLogSpecification.cs
index 904d01b935a2..24aff41f0a8e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationLogSpecification.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationLogSpecification.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class OperationLogSpecification
///
public OperationLogSpecification()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricAvailability.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricAvailability.cs
index f7f3c1f08dfb..b3d24b145459 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricAvailability.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricAvailability.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class OperationMetricAvailability
///
public OperationMetricAvailability()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs
index 4d024222e50e..e289287d5483 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationMetricSpecification.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class OperationMetricSpecification
///
public OperationMetricSpecification()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationServiceSpecification.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationServiceSpecification.cs
index 90b92a3e0516..ec5839f534db 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationServiceSpecification.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OperationServiceSpecification.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class OperationServiceSpecification
///
public OperationServiceSpecification()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleLinkedService.cs
index 6026314f9833..cd186b027845 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSink.cs
index 17d61a5e4dc1..74e5cb03323c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class OracleSink : CopySink
///
public OracleSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSource.cs
index 5f62eb9a4f95..1437f34f3fa9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class OracleSource : CopySource
///
public OracleSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleTableDataset.cs
index 9247f9a1c433..a33af1e94b43 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OracleTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class OracleTableDataset : Dataset
///
public OracleTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OrcFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OrcFormat.cs
index 3e7b52e22b58..887f270c02f9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OrcFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/OrcFormat.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class OrcFormat : DatasetStorageFormat
///
public OrcFormat()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Page.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Page.cs
index 98b533411026..a20e5365ee63 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Page.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Page.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterSpecification.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterSpecification.cs
index c4cb3eefce29..2a802ef8aca1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterSpecification.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterSpecification.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class ParameterSpecification
///
public ParameterSpecification()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterType.cs
index d46243564dfc..9dbd20c76991 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParameterType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for ParameterType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParquetFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParquetFormat.cs
index 592678d187cf..9ae447e9b850 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParquetFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ParquetFormat.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class ParquetFormat : DatasetStorageFormat
///
public ParquetFormat()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineReference.cs
index a1aa8b116923..923048a04bbf 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class PipelineReference
///
public PipelineReference()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineResource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineResource.cs
index e7aa575169b7..89f721819ce0 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineResource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -29,7 +28,7 @@ public partial class PipelineResource : SubResource
///
public PipelineResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRun.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRun.cs
index d2a33ad8bf57..6d7172e1b450 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRun.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRun.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -26,7 +25,7 @@ public partial class PipelineRun
///
public PipelineRun()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs
index fc832b3247c7..cf333c55b9e3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunFilterParameters.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class PipelineRunFilterParameters
///
public PipelineRunFilterParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs
index 4d45e54b2064..92421a27e8c7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunInvokedBy.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class PipelineRunInvokedBy
///
public PipelineRunInvokedBy()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs
index d035d9ad4f61..af522014fed6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilter.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -27,7 +26,7 @@ public partial class PipelineRunQueryFilter
///
public PipelineRunQueryFilter()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs
index 0589f872fbdc..5bbe6c9eff77 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperand.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for PipelineRunQueryFilterOperand.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs
index f5360a0eca35..cf5e1752fd31 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryFilterOperator.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for PipelineRunQueryFilterOperator.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs
index 9684c0ca55c1..3b8f4711ef80 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrder.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for PipelineRunQueryOrder.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs
index b6add46a45f1..0576d228f013 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderBy.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class PipelineRunQueryOrderBy
///
public PipelineRunQueryOrderBy()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs
index 48121835c415..f568d4bef124 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryOrderByField.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for PipelineRunQueryOrderByField.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs
index ec9afdab1436..8108c377849b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PipelineRunQueryResponse.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -27,7 +26,7 @@ public partial class PipelineRunQueryResponse
///
public PipelineRunQueryResponse()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettings.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettings.cs
index dd2f18d25c72..a925cc4cf2e3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettings.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettings.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class PolybaseSettings
///
public PolybaseSettings()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettingsRejectType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettingsRejectType.cs
index 7e6778b7e4b9..9b9f7e22cd57 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettingsRejectType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PolybaseSettingsRejectType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for PolybaseSettingsRejectType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PostgreSqlLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PostgreSqlLinkedService.cs
index 5ff6567b5f9d..1aa8cbf552c1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PostgreSqlLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/PostgreSqlLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceFrequency.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceFrequency.cs
index b25ecd0189d5..103c321751a3 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceFrequency.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceFrequency.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for RecurrenceFrequency.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceSchedule.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceSchedule.cs
index f114589dc655..0076c716aa55 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceSchedule.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceSchedule.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -26,7 +25,7 @@ public partial class RecurrenceSchedule
///
public RecurrenceSchedule()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceScheduleOccurrence.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceScheduleOccurrence.cs
index 303d92c8f64f..b3895000526e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceScheduleOccurrence.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RecurrenceScheduleOccurrence.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class RecurrenceScheduleOccurrence
///
public RecurrenceScheduleOccurrence()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedirectIncompatibleRowSettings.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedirectIncompatibleRowSettings.cs
index 31b6b5d42d4e..f1382a467c58 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedirectIncompatibleRowSettings.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedirectIncompatibleRowSettings.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class RedirectIncompatibleRowSettings
///
public RedirectIncompatibleRowSettings()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedshiftUnloadSettings.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedshiftUnloadSettings.cs
index 7f397f350c41..a387b16dfe95 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedshiftUnloadSettings.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RedshiftUnloadSettings.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalSource.cs
index 3c657242ca64..0eea369493f7 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class RelationalSource : CopySource
///
public RelationalSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalTableDataset.cs
index 9e1d99cc95b4..91d83ff35b7e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/RelationalTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class RelationalTableDataset : Dataset
///
public RelationalTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs
index 327705290a66..e419a420c598 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Resource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Newtonsoft.Json;
@@ -28,7 +27,7 @@ public partial class Resource : IResource
///
public Resource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SalesforceLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SalesforceLinkedService.cs
index 3c162aa72586..ee902011c647 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SalesforceLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SalesforceLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapBWLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapBWLinkedService.cs
index 155e392d8276..62ba6bc7f5c1 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapBWLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapBWLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaAuthenticationType.cs
index 7960c12441a4..7bf1f9ee9189 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for SapHanaAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaLinkedService.cs
index 61b8847115c7..e91a16411623 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SapHanaLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTrigger.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTrigger.cs
index 272b057d3eb1..c466053ef103 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTrigger.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTrigger.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -29,7 +28,7 @@ public partial class ScheduleTrigger : Trigger
///
public ScheduleTrigger()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTriggerRecurrence.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTriggerRecurrence.cs
index e17f4e243bcb..b3c0b29995fc 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTriggerRecurrence.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/ScheduleTriggerRecurrence.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class ScheduleTriggerRecurrence
///
public ScheduleTriggerRecurrence()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SecureString.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SecureString.cs
index 90a6161345e7..6f7fe3832c53 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SecureString.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SecureString.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class SecureString
///
public SecureString()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs
index 27dd3e57b922..3c826cb0cc42 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntime.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class SelfHostedIntegrationRuntime : IntegrationRuntime
///
public SelfHostedIntegrationRuntime()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNode.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNode.cs
index 4a339c7246f9..40c2bb93692b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNode.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNode.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class SelfHostedIntegrationRuntimeNode
///
public SelfHostedIntegrationRuntimeNode()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNodeStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNodeStatus.cs
index c533f4483edd..4cdc75398dc9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNodeStatus.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeNodeStatus.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for SelfHostedIntegrationRuntimeNodeStatus.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs
index 46185f5c4b02..eb08bf136d20 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SelfHostedIntegrationRuntimeStatus.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +30,7 @@ public partial class SelfHostedIntegrationRuntimeStatus : IntegrationRuntimeStat
///
public SelfHostedIntegrationRuntimeStatus()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpAuthenticationType.cs
index f8ce32124df4..3723a2ea0662 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for SftpAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpServerLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpServerLinkedService.cs
index 4b576a49c048..1b6092c54702 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpServerLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SftpServerLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSink.cs
index 4ae568994fbd..64c18ace131c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class SqlDWSink : CopySink
///
public SqlDWSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSource.cs
index 5f6ac1137dac..fc0844086f2b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlDWSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class SqlDWSource : CopySource
///
public SqlDWSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerLinkedService.cs
index d23409c1c152..f065eb5f31b6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs
index 3bf568bba629..3e578060b786 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerStoredProcedureActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +30,7 @@ public partial class SqlServerStoredProcedureActivity : ExecutionActivity
///
public SqlServerStoredProcedureActivity()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerTableDataset.cs
index c55a62efcb7d..1552b76acd32 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlServerTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class SqlServerTableDataset : Dataset
///
public SqlServerTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSink.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSink.cs
index 453f3cedeee6..328286df278b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSink.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSink.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -26,7 +25,7 @@ public partial class SqlSink : CopySink
///
public SqlSink()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSource.cs
index 12fc725969e1..3df52d10df49 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SqlSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -26,7 +25,7 @@ public partial class SqlSource : CopySource
///
public SqlSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StagingSettings.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StagingSettings.cs
index a9dbe408212c..5c120fa0a58c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StagingSettings.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StagingSettings.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameter.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameter.cs
index 2a66797ab178..f2714e0663f8 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameter.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameter.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class StoredProcedureParameter
///
public StoredProcedureParameter()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameterType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameterType.cs
index 6814e2a79287..04eef5637b35 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameterType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/StoredProcedureParameterType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for StoredProcedureParameterType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SubResource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SubResource.cs
index dbce377aacbf..61e60f65cd38 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SubResource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SubResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Newtonsoft.Json;
@@ -26,7 +25,7 @@ public partial class SubResource : IResource
///
public SubResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseAuthenticationType.cs
index 65d2e4a44c0e..343f7afa8e45 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for SybaseAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseLinkedService.cs
index c18ffa6f2a9e..47ca6f73a8a4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/SybaseLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs
index 7b843b4903a1..f36fc0d616bd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TabularTranslator.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class TabularTranslator : CopyTranslator
///
public TabularTranslator()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataAuthenticationType.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataAuthenticationType.cs
index 38779211cfe1..5633a00ab7da 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataAuthenticationType.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataAuthenticationType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for TeradataAuthenticationType.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataLinkedService.cs
index 198a2ec465b8..9f561d4e0d7c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TeradataLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TextFormat.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TextFormat.cs
index 5939f3a9362c..7a3b1096bd0c 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TextFormat.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TextFormat.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -24,7 +23,7 @@ public partial class TextFormat : DatasetStorageFormat
///
public TextFormat()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Trigger.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Trigger.cs
index 84962bde5817..1fd81a501435 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Trigger.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/Trigger.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +26,7 @@ public partial class Trigger
///
public Trigger()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerPipelineReference.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerPipelineReference.cs
index c07c8ee4b4d8..e134054c9b32 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerPipelineReference.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerPipelineReference.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerResource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerResource.cs
index 3de44edb953c..5bb43e5580ce 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerResource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +24,7 @@ public partial class TriggerResource : SubResource
///
public TriggerResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRun.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRun.cs
index 5aba3a3e6ee6..f09444148945 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRun.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRun.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -26,7 +25,7 @@ public partial class TriggerRun
///
public TriggerRun()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunStatus.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunStatus.cs
index dd94717b1008..6822273d52dd 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunStatus.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRunStatus.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for TriggerRunStatus.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRuntimeState.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRuntimeState.cs
index c10855a8d78a..e9070db0e65e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRuntimeState.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/TriggerRuntimeState.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for TriggerRuntimeState.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs
index 4ec1e17308f7..52be24413f82 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/UntilActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs
index 979cd249ff5a..8774fd819999 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WaitActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,7 @@ public partial class WaitActivity : ControlActivity
///
public WaitActivity()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs
index a22d332b1f94..e47c0ca59e17 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivity.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityAuthentication.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityAuthentication.cs
index 78ddcb282c42..0b39152d18f4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityAuthentication.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityAuthentication.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityMethod.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityMethod.cs
index db5a11268b53..6d96633a82c9 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityMethod.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebActivityMethod.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
///
/// Defines values for WebActivityMethod.
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebAnonymousAuthentication.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebAnonymousAuthentication.cs
index a5f75c86558a..bf3877872de6 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebAnonymousAuthentication.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebAnonymousAuthentication.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class WebAnonymousAuthentication : WebLinkedServiceTypeProperties
///
public WebAnonymousAuthentication()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebBasicAuthentication.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebBasicAuthentication.cs
index aa41fe69bc94..950fc9aca440 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebBasicAuthentication.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebBasicAuthentication.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebClientCertificateAuthentication.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebClientCertificateAuthentication.cs
index 3432cf8b4003..10434e174477 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebClientCertificateAuthentication.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebClientCertificateAuthentication.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedService.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedService.cs
index 1c3099f1700c..143609e18c60 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedService.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedService.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +25,7 @@ public partial class WebLinkedService : LinkedService
///
public WebLinkedService()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedServiceTypeProperties.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedServiceTypeProperties.cs
index 89814db26e2a..7a4f8008b724 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedServiceTypeProperties.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebLinkedServiceTypeProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -28,7 +27,7 @@ public partial class WebLinkedServiceTypeProperties
///
public WebLinkedServiceTypeProperties()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebSource.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebSource.cs
index 42ac3b88328f..428e584b371d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebSource.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebSource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using System.Linq;
///
@@ -23,7 +22,7 @@ public partial class WebSource : CopySource
///
public WebSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebTableDataset.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebTableDataset.cs
index 373cc7421131..1329796f0a60 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebTableDataset.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/WebTableDataset.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataFactory;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +29,8 @@ public partial class WebTableDataset : Dataset
///
public WebTableDataset()
{
- CustomInit();
+ LinkedServiceName = new LinkedServiceReference();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs
index 1702b1a7ec02..18cbab805d36 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Operations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs
index 3fc46cac0eb4..b737a3bb7e14 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/OperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs
index 474f4636b409..f68cc9265609 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs
index 6d772eb535d4..59fbfbc2b08d 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelineRunsOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs
index 5fe19f7e5d40..e3d350b454c8 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs
index fce2c009b100..86fafb6aa09b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/PipelinesOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs
index 43b76885aacf..2a92bf696054 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs
index b325e18cc01f..94a578341f19 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/TriggersOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,11 +6,10 @@
// 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.Azure;
- using Microsoft.Azure.Management;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
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 345c8b50e94f..ed78d42bcc5e 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Microsoft.Azure.Management.DataFactory.csproj
+++ b/src/SDKs/DataFactory/Management.DataFactory/Microsoft.Azure.Management.DataFactory.csproj
@@ -3,7 +3,7 @@
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.2.0-preview
+ 0.2.1-preview
Microsoft.Azure.Management.DataFactory
Microsoft Azure resource management;Data Factory;ADF;REST HTTP client;azureofficial;windowsazureofficial;netcore451511
diff --git a/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs b/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs
index fe9b4b17f258..cd25f48f17c4 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs
+++ b/src/SDKs/DataFactory/Management.DataFactory/Properties/AssemblyInfo.cs
@@ -7,7 +7,7 @@
[assembly: AssemblyTitle("Microsoft Azure Data Factory Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Factory Resources.")]
[assembly: AssemblyVersion("0.2.0.0")]
-[assembly: AssemblyFileVersion("0.2.0.0")]
+[assembly: AssemblyFileVersion("0.2.1.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
diff --git a/src/SDKs/DataFactory/Management.DataFactory/changelog.md b/src/SDKs/DataFactory/Management.DataFactory/changelog.md
index f972d9282fcf..34f9638a9a8b 100644
--- a/src/SDKs/DataFactory/Management.DataFactory/changelog.md
+++ b/src/SDKs/DataFactory/Management.DataFactory/changelog.md
@@ -1,6 +1,12 @@
# Changelog for the Azure Data Factory V2 .NET SDK
+## Version 0.2.1-preview
+
+### Feature Additions
+ * Adding an API to cancel a pipeline run.
+
## Version 0.2.0-preview
### Feature Additions
* Initial public release of the Azure Data Factory V2 .NET SDK.
+
diff --git a/src/SDKs/_metadata/datafactory_resource-manager.txt b/src/SDKs/_metadata/datafactory_resource-manager.txt
new file mode 100644
index 000000000000..d7cc6cc05fb1
--- /dev/null
+++ b/src/SDKs/_metadata/datafactory_resource-manager.txt
@@ -0,0 +1,11 @@
+2017-10-06 00:59:10 UTC
+
+1) azure-rest-api-specs repository information
+GitHub user: Azure
+Branch: current
+Commit: c97a18ed775029207715b09c80761334724740b9
+
+2) AutoRest information
+Requested version: latest
+Bootstrapper version: C:\Users\mtomic\AppData\Roaming\npm `-- autorest@2.0.4147
+Latest installed version: 2.0.4147