diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs index 53de67e58d01..641e73627c08 100644 --- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs +++ b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/BlobServiceProperties.cs @@ -51,16 +51,13 @@ public BlobServiceProperties() /// soft delete. /// Automatic Snapshot is /// enabled if set to true. - /// The blob service properties for change - /// feed events. - public BlobServiceProperties(string id = default(string), string name = default(string), string type = default(string), CorsRules cors = default(CorsRules), string defaultServiceVersion = default(string), DeleteRetentionPolicy deleteRetentionPolicy = default(DeleteRetentionPolicy), bool? automaticSnapshotPolicyEnabled = default(bool?), ChangeFeed changeFeed = default(ChangeFeed)) + public BlobServiceProperties(string id = default(string), string name = default(string), string type = default(string), CorsRules cors = default(CorsRules), string defaultServiceVersion = default(string), DeleteRetentionPolicy deleteRetentionPolicy = default(DeleteRetentionPolicy), bool? automaticSnapshotPolicyEnabled = default(bool?)) : base(id, name, type) { Cors = cors; DefaultServiceVersion = defaultServiceVersion; DeleteRetentionPolicy = deleteRetentionPolicy; AutomaticSnapshotPolicyEnabled = automaticSnapshotPolicyEnabled; - ChangeFeed = changeFeed; CustomInit(); } @@ -99,12 +96,6 @@ public BlobServiceProperties() [JsonProperty(PropertyName = "properties.automaticSnapshotPolicyEnabled")] public bool? AutomaticSnapshotPolicyEnabled { get; set; } - /// - /// Gets or sets the blob service properties for change feed events. - /// - [JsonProperty(PropertyName = "properties.changeFeed")] - public ChangeFeed ChangeFeed { get; set; } - /// /// Validate the object. /// diff --git a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/ChangeFeed.cs b/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/ChangeFeed.cs deleted file mode 100644 index 39234a57af5f..000000000000 --- a/sdk/storage/Microsoft.Azure.Management.Storage/src/Generated/Models/ChangeFeed.cs +++ /dev/null @@ -1,53 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Storage.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// The blob service properties for change feed events. - /// - public partial class ChangeFeed - { - /// - /// Initializes a new instance of the ChangeFeed class. - /// - public ChangeFeed() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ChangeFeed class. - /// - /// Indicates whether change feed event logging - /// is enabled for the Blob service. - public ChangeFeed(bool? enabled = default(bool?)) - { - Enabled = enabled; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets indicates whether change feed event logging is enabled - /// for the Blob service. - /// - [JsonProperty(PropertyName = "enabled")] - public bool? Enabled { get; set; } - - } -}