Если вы хотите изменить Процент выборки данных, обратитесь к следующему сценарию
#update
$r =Get-AzResource -Name <resource name> -ResourceType Microsoft.Insights/Components -ResourceGroupName <group name>
write-host $r.Properties.SamplingPercentage -BackgroundColor red
$r.Properties.SamplingPercentage=12.5
$r| Set-AzResource -Force
#check
$r =Get-AzResource -Name 219bowman -ResourceType Microsoft.Insights/Components -ResourceGroupName 0730BowmanWindow
write-host $r.Properties.SamplingPercentage -BackgroundColor red