Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,13 @@ public BlobServiceProperties()
/// soft delete.</param>
/// <param name="automaticSnapshotPolicyEnabled">Automatic Snapshot is
/// enabled if set to true.</param>
/// <param name="changeFeed">The blob service properties for change
/// feed events.</param>
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();
}

Expand Down Expand Up @@ -99,12 +96,6 @@ public BlobServiceProperties()
[JsonProperty(PropertyName = "properties.automaticSnapshotPolicyEnabled")]
public bool? AutomaticSnapshotPolicyEnabled { get; set; }

/// <summary>
/// Gets or sets the blob service properties for change feed events.
/// </summary>
[JsonProperty(PropertyName = "properties.changeFeed")]
public ChangeFeed ChangeFeed { get; set; }

/// <summary>
/// Validate the object.
/// </summary>
Expand Down

This file was deleted.