File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 19
19
-->
20
20
21
21
## Upcoming Release
22
+ * Fixed ` Get-AzInsightsPrivateLinkScope ` to support ` ResourceId ` parameter [ #22568 ]
22
23
* Fixed ` New-AzMetricAlertRuleV2DimensionSelection ` to have "exclude" or "include" values only [ #22256 ]
23
24
* Fixed ` Add-AzMetriAlertRuleV2 ` and ` Get-AzMetricAlertRuleV2 ` to support web tests criteria [ #22350 ]
24
25
* Added parameter ` Dimension ` for ` Get-AzMetric ` to easily filter metrics by dimensions [ #22320 ]
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ protected override void ProcessRecordInternal()
81
81
WriteObject ( response . Body . Select ( scope => PSMonitorPrivateLinkScope . ToPSMonitorPrivateLinkScope ( scope ) ) . ToList ( ) , true ) ;
82
82
}
83
83
}
84
- else if ( ParameterSetName . Equals ( ByResourceNameParameterSet ) || ParameterSetName . Equals ( ResourceId ) )
84
+ else if ( ParameterSetName . Equals ( ByResourceNameParameterSet ) || ParameterSetName . Equals ( ByResourceIdParameterSet ) )
85
85
{
86
86
if ( this . IsParameterBound ( c => c . ResourceId ) )
87
87
{
You can’t perform that action at this time.
0 commit comments