This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Bias Types:
⚠️ powershell_heavy
⚠️ windows_first
Summary:
The documentation page is largely neutral and cross-platform, focusing on ARM template functions with JSON examples. However, in the section describing how to determine which resource types have a list operation, the PowerShell (Windows-centric) approach is mentioned before the Azure CLI (cross-platform) equivalent. The PowerShell cmdlet is also described in more detail, which may suggest a slight Windows-first and PowerShell-heavy bias.
Recommendations:
  • Present Azure CLI (cross-platform) commands before PowerShell examples, or at least give them equal prominence.
  • Provide equivalent Bash or shell script examples where appropriate, especially in sections where command-line interaction is demonstrated.
  • Ensure that all tooling recommendations (such as 'Get-AzProviderOperation') are paired with their Azure CLI equivalents, with equal explanation and detail.
  • Explicitly state that both Azure CLI and PowerShell are supported on all major platforms, and link to installation guides for both.
  • Review other documentation pages linked from this one (such as deployment guides) to ensure Linux and macOS parity in examples and instructions.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-07-12 23:44 #41 in_progress ❌ Biased
2025-07-12 00:58 #8 cancelled ✅ Clean
2025-07-10 05:06 #7 processing ✅ Clean

Flagged Code Snippets

Get-AzProviderOperation -OperationSearchString "Microsoft.Storage/*" | where {$_.Operation -like "*list*"} | FT Operation