We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6727874 commit 2d98dc9Copy full SHA for 2d98dc9
src/PolicyInsights/PolicyInsights/ChangeLog.md
@@ -19,6 +19,9 @@
19
-->
20
## Upcoming Release
21
22
+## Version 1.4.1
23
+* Undo bug with version 1.4.0
24
+
25
## Version 1.4.0
26
* Added support for returning paginated results for Get-AzPolicyState
27
src/PolicyInsights/PolicyInsights/Cmdlets/GetAzureRmPolicyState.cs
@@ -160,7 +160,7 @@ public override void Execute()
160
{
161
var queryOptions = new RestApiModels.QueryOptions
162
163
- Top = MyInvocation.BoundParameters.ContainsKey("Top") ? (int?)Top : int.MaxValue,
+ Top = MyInvocation.BoundParameters.ContainsKey("Top") ? (int?)Top : null,
164
OrderBy = OrderBy,
165
Select = Select,
166
FromProperty = MyInvocation.BoundParameters.ContainsKey("From") ? (DateTime?)From : null,
0 commit comments