diff --git a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DelimitedTextReadSetting.cs b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DelimitedTextReadSetting.cs index 397b65bb09a3e..89a8de29af9e1 100644 --- a/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DelimitedTextReadSetting.cs +++ b/src/SDKs/DataFactory/Management.DataFactory/Generated/Models/DelimitedTextReadSetting.cs @@ -37,14 +37,10 @@ public DelimitedTextReadSetting() /// Indicates the number of non-empty rows /// to skip when reading data from input files. Type: integer (or /// Expression with resultType integer). - /// Specify whether to treat null or - /// empty string as a null value when reading data from an input - /// file. - public DelimitedTextReadSetting(string type, IDictionary additionalProperties = default(IDictionary), object skipLineCount = default(object), bool? treatEmptyAsNull = default(bool?)) + public DelimitedTextReadSetting(string type, IDictionary additionalProperties = default(IDictionary), object skipLineCount = default(object)) : base(type, additionalProperties) { SkipLineCount = skipLineCount; - TreatEmptyAsNull = treatEmptyAsNull; CustomInit(); } @@ -61,13 +57,6 @@ public DelimitedTextReadSetting() [JsonProperty(PropertyName = "skipLineCount")] public object SkipLineCount { get; set; } - /// - /// Gets or sets specify whether to treat null or empty string as a - /// null value when reading data from an input file. - /// - [JsonProperty(PropertyName = "treatEmptyAsNull")] - public bool? TreatEmptyAsNull { get; set; } - /// /// Validate the object. ///