internal CopyActivity(string name, string type, string description, IList <ActivityDependency> dependsOn, IList <UserProperty> userProperties, IDictionary <string, object> additionalProperties, LinkedServiceReference linkedServiceName, ActivityPolicy policy, IList <DatasetReference> inputs, IList <DatasetReference> outputs, CopySource source, CopySink sink, object translator, object enableStaging, StagingSettings stagingSettings, object parallelCopies, object dataIntegrationUnits, object enableSkipIncompatibleRow, RedirectIncompatibleRowSettings redirectIncompatibleRowSettings, IList <object> preserveRules, IList <object> preserve) : base(name, type, description, dependsOn, userProperties, additionalProperties, linkedServiceName, policy) { Inputs = inputs; Outputs = outputs; Source = source; Sink = sink; Translator = translator; EnableStaging = enableStaging; StagingSettings = stagingSettings; ParallelCopies = parallelCopies; DataIntegrationUnits = dataIntegrationUnits; EnableSkipIncompatibleRow = enableSkipIncompatibleRow; RedirectIncompatibleRowSettings = redirectIncompatibleRowSettings; PreserveRules = preserveRules; Preserve = preserve; Type = type ?? "Copy"; }
public CopyActivity(string name, CopySource source, CopySink sink) : base(name) { if (name == null) { throw new ArgumentNullException(nameof(name)); } if (source == null) { throw new ArgumentNullException(nameof(source)); } if (sink == null) { throw new ArgumentNullException(nameof(sink)); } Source = source; Sink = sink; Type = "Copy"; }
public CopyActivity(string name, CopySource source, CopySink sink) : base(name) { if (name == null) { throw new ArgumentNullException(nameof(name)); } if (source == null) { throw new ArgumentNullException(nameof(source)); } if (sink == null) { throw new ArgumentNullException(nameof(sink)); } Inputs = new ChangeTrackingList <DatasetReference>(); Outputs = new ChangeTrackingList <DatasetReference>(); Source = source; Sink = sink; PreserveRules = new ChangeTrackingList <object>(); Preserve = new ChangeTrackingList <object>(); Type = "Copy"; }
internal static CopyActivity DeserializeCopyActivity(JsonElement element) { Optional <IList <DatasetReference> > inputs = default; Optional <IList <DatasetReference> > outputs = default; Optional <LinkedServiceReference> linkedServiceName = default; Optional <ActivityPolicy> policy = default; string name = default; string type = default; Optional <string> description = default; Optional <IList <ActivityDependency> > dependsOn = default; Optional <IList <UserProperty> > userProperties = default; CopySource source = default; CopySink sink = default; Optional <object> translator = default; Optional <object> enableStaging = default; Optional <StagingSettings> stagingSettings = default; Optional <object> parallelCopies = default; Optional <object> dataIntegrationUnits = default; Optional <object> enableSkipIncompatibleRow = default; Optional <RedirectIncompatibleRowSettings> redirectIncompatibleRowSettings = default; Optional <IList <object> > preserveRules = default; Optional <IList <object> > preserve = default; IDictionary <string, object> additionalProperties = default; Dictionary <string, object> additionalPropertiesDictionary = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("inputs")) { List <DatasetReference> array = new List <DatasetReference>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(DatasetReference.DeserializeDatasetReference(item)); } inputs = array; continue; } if (property.NameEquals("outputs")) { List <DatasetReference> array = new List <DatasetReference>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(DatasetReference.DeserializeDatasetReference(item)); } outputs = array; continue; } if (property.NameEquals("linkedServiceName")) { linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); continue; } if (property.NameEquals("policy")) { policy = ActivityPolicy.DeserializeActivityPolicy(property.Value); continue; } if (property.NameEquals("name")) { name = property.Value.GetString(); continue; } if (property.NameEquals("type")) { type = property.Value.GetString(); continue; } if (property.NameEquals("description")) { description = property.Value.GetString(); continue; } if (property.NameEquals("dependsOn")) { List <ActivityDependency> array = new List <ActivityDependency>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(ActivityDependency.DeserializeActivityDependency(item)); } dependsOn = array; continue; } if (property.NameEquals("userProperties")) { List <UserProperty> array = new List <UserProperty>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(UserProperty.DeserializeUserProperty(item)); } userProperties = array; continue; } if (property.NameEquals("typeProperties")) { foreach (var property0 in property.Value.EnumerateObject()) { if (property0.NameEquals("source")) { source = CopySource.DeserializeCopySource(property0.Value); continue; } if (property0.NameEquals("sink")) { sink = CopySink.DeserializeCopySink(property0.Value); continue; } if (property0.NameEquals("translator")) { translator = property0.Value.GetObject(); continue; } if (property0.NameEquals("enableStaging")) { enableStaging = property0.Value.GetObject(); continue; } if (property0.NameEquals("stagingSettings")) { stagingSettings = StagingSettings.DeserializeStagingSettings(property0.Value); continue; } if (property0.NameEquals("parallelCopies")) { parallelCopies = property0.Value.GetObject(); continue; } if (property0.NameEquals("dataIntegrationUnits")) { dataIntegrationUnits = property0.Value.GetObject(); continue; } if (property0.NameEquals("enableSkipIncompatibleRow")) { enableSkipIncompatibleRow = property0.Value.GetObject(); continue; } if (property0.NameEquals("redirectIncompatibleRowSettings")) { redirectIncompatibleRowSettings = RedirectIncompatibleRowSettings.DeserializeRedirectIncompatibleRowSettings(property0.Value); continue; } if (property0.NameEquals("preserveRules")) { List <object> array = new List <object>(); foreach (var item in property0.Value.EnumerateArray()) { array.Add(item.GetObject()); } preserveRules = array; continue; } if (property0.NameEquals("preserve")) { List <object> array = new List <object>(); foreach (var item in property0.Value.EnumerateArray()) { array.Add(item.GetObject()); } preserve = array; continue; } } continue; } additionalPropertiesDictionary ??= new Dictionary <string, object>(); additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; return(new CopyActivity(name, type, description.Value, Optional.ToList(dependsOn), Optional.ToList(userProperties), additionalProperties, linkedServiceName.Value, policy.Value, Optional.ToList(inputs), Optional.ToList(outputs), source, sink, translator.Value, enableStaging.Value, stagingSettings.Value, parallelCopies.Value, dataIntegrationUnits.Value, enableSkipIncompatibleRow.Value, redirectIncompatibleRowSettings.Value, Optional.ToList(preserveRules), Optional.ToList(preserve))); }
internal static CopyActivity DeserializeCopyActivity(JsonElement element) { IList <DatasetReference> inputs = default; IList <DatasetReference> outputs = default; LinkedServiceReference linkedServiceName = default; ActivityPolicy policy = default; string name = default; string type = default; string description = default; IList <ActivityDependency> dependsOn = default; IList <UserProperty> userProperties = default; CopySource source = default; CopySink sink = default; object translator = default; object enableStaging = default; StagingSettings stagingSettings = default; object parallelCopies = default; object dataIntegrationUnits = default; object enableSkipIncompatibleRow = default; RedirectIncompatibleRowSettings redirectIncompatibleRowSettings = default; IList <object> preserveRules = default; IList <object> preserve = default; IDictionary <string, object> additionalProperties = default; Dictionary <string, object> additionalPropertiesDictionary = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("inputs")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } List <DatasetReference> array = new List <DatasetReference>(); foreach (var item in property.Value.EnumerateArray()) { if (item.ValueKind == JsonValueKind.Null) { array.Add(null); } else { array.Add(DatasetReference.DeserializeDatasetReference(item)); } } inputs = array; continue; } if (property.NameEquals("outputs")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } List <DatasetReference> array = new List <DatasetReference>(); foreach (var item in property.Value.EnumerateArray()) { if (item.ValueKind == JsonValueKind.Null) { array.Add(null); } else { array.Add(DatasetReference.DeserializeDatasetReference(item)); } } outputs = array; continue; } if (property.NameEquals("linkedServiceName")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); continue; } if (property.NameEquals("policy")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } policy = ActivityPolicy.DeserializeActivityPolicy(property.Value); continue; } if (property.NameEquals("name")) { name = property.Value.GetString(); continue; } if (property.NameEquals("type")) { type = property.Value.GetString(); continue; } if (property.NameEquals("description")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } description = property.Value.GetString(); continue; } if (property.NameEquals("dependsOn")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } List <ActivityDependency> array = new List <ActivityDependency>(); foreach (var item in property.Value.EnumerateArray()) { if (item.ValueKind == JsonValueKind.Null) { array.Add(null); } else { array.Add(ActivityDependency.DeserializeActivityDependency(item)); } } dependsOn = array; continue; } if (property.NameEquals("userProperties")) { if (property.Value.ValueKind == JsonValueKind.Null) { continue; } List <UserProperty> array = new List <UserProperty>(); foreach (var item in property.Value.EnumerateArray()) { if (item.ValueKind == JsonValueKind.Null) { array.Add(null); } else { array.Add(UserProperty.DeserializeUserProperty(item)); } } userProperties = array; continue; } if (property.NameEquals("typeProperties")) { foreach (var property0 in property.Value.EnumerateObject()) { if (property0.NameEquals("source")) { source = CopySource.DeserializeCopySource(property0.Value); continue; } if (property0.NameEquals("sink")) { sink = CopySink.DeserializeCopySink(property0.Value); continue; } if (property0.NameEquals("translator")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } translator = property0.Value.GetObject(); continue; } if (property0.NameEquals("enableStaging")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } enableStaging = property0.Value.GetObject(); continue; } if (property0.NameEquals("stagingSettings")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } stagingSettings = StagingSettings.DeserializeStagingSettings(property0.Value); continue; } if (property0.NameEquals("parallelCopies")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } parallelCopies = property0.Value.GetObject(); continue; } if (property0.NameEquals("dataIntegrationUnits")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } dataIntegrationUnits = property0.Value.GetObject(); continue; } if (property0.NameEquals("enableSkipIncompatibleRow")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } enableSkipIncompatibleRow = property0.Value.GetObject(); continue; } if (property0.NameEquals("redirectIncompatibleRowSettings")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } redirectIncompatibleRowSettings = RedirectIncompatibleRowSettings.DeserializeRedirectIncompatibleRowSettings(property0.Value); continue; } if (property0.NameEquals("preserveRules")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } List <object> array = new List <object>(); foreach (var item in property0.Value.EnumerateArray()) { if (item.ValueKind == JsonValueKind.Null) { array.Add(null); } else { array.Add(item.GetObject()); } } preserveRules = array; continue; } if (property0.NameEquals("preserve")) { if (property0.Value.ValueKind == JsonValueKind.Null) { continue; } List <object> array = new List <object>(); foreach (var item in property0.Value.EnumerateArray()) { if (item.ValueKind == JsonValueKind.Null) { array.Add(null); } else { array.Add(item.GetObject()); } } preserve = array; continue; } } continue; } additionalPropertiesDictionary ??= new Dictionary <string, object>(); if (property.Value.ValueKind == JsonValueKind.Null) { additionalPropertiesDictionary.Add(property.Name, null); } else { additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } } additionalProperties = additionalPropertiesDictionary; return(new CopyActivity(name, type, description, dependsOn, userProperties, additionalProperties, linkedServiceName, policy, inputs, outputs, source, sink, translator, enableStaging, stagingSettings, parallelCopies, dataIntegrationUnits, enableSkipIncompatibleRow, redirectIncompatibleRowSettings, preserveRules, preserve)); }