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_tools
⚠️
missing_linux_example
⚠️
windows_first
Summary:
The documentation demonstrates a Windows bias by providing only PowerShell commands for generating a Shared Access Signature (SAS) token, with no equivalent CLI, Bash, or cross-platform examples. The exclusive mention of PowerShell and the absence of Linux/macOS command-line alternatives may hinder users on non-Windows platforms. Additionally, the documentation refers to Windows tooling first and does not acknowledge or provide parity for Linux users.
Recommendations:
- Add Azure CLI examples for generating SAS tokens, as Azure CLI is cross-platform and widely used on Linux and macOS.
- Include Bash script examples or reference REST API calls for SAS generation to ensure Linux parity.
- When mentioning PowerShell, always provide an equivalent Azure CLI or REST API example immediately after or before, and clarify that PowerShell is Windows-centric.
- Audit the documentation for any other places where Windows tools or patterns are mentioned exclusively, and ensure Linux/macOS alternatives are present.
- Explicitly state that all features and steps are supported on both Windows and Linux, or note any exceptions.
Create pull request
Flagged Code Snippets
{
"name": "AzureTableStorageLinkedService",
"properties": {
"type": "AzureTableStorage",
"typeProperties": {
"serviceEndpoint": "https://<accountName>.table.core.windows.net/",
"credential": {
"referenceName": "credential1",
"type": "CredentialReference"
}
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
}