Skip to content
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
1 change: 1 addition & 0 deletions src/ResourceManager/EventGrid/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Current Release
* Remove ValidateNotNullOrEmpty validation conditions for SubjectBeginsWith/SubjectEndsWith in Update-AzureRmEventGridSubscription cmdlet to allow changing these parameters to empty string if needed.

## Version 0.3.3
* Set minimum dependency of module to PowerShell 5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ public class UpdateAzureEventGridSubscription : AzureEventGridCmdletBase
Mandatory = false,
HelpMessage = EventGridConstants.SubjectBeginsWithHelp,
ParameterSetName = EventSubscriptionInputObjectParameterSet)]
[ValidateNotNullOrEmpty]
public string SubjectBeginsWith { get; set; }

[Parameter(
Expand All @@ -165,7 +164,6 @@ public class UpdateAzureEventGridSubscription : AzureEventGridCmdletBase
Mandatory = false,
HelpMessage = EventGridConstants.SubjectEndsWithHelp,
ParameterSetName = EventSubscriptionInputObjectParameterSet)]
[ValidateNotNullOrEmpty]
public string SubjectEndsWith { get; set; }

[Parameter(
Expand Down