Azure cmdlets Get-AzureRmAlertRule and Get-AzureRmRoleAssignment report "api-version=) is required for all requests"
When you use the Azure PowerShell cmdlets such as Get-AzureRmAlertRule and Get-AzureRmRoleAssignment you might see the following
MissingApiVersionParameter: The api-version query parameter (?api-version=) is required for all requests.
This can occur if there are hash symbols in the resource name or resource type parameters.
For example "CDD1EE35DC872C48F799BAC150FBB128E702BB9C##North Europe#'"
You must encode these parameters, replacing the hash # symbols with %23 - for example
"CDD1EE35DC872C48F799BAC150FBB128E702BB9C%23%23North Europe%23'" and then run the command again
MissingApiVersionParameter: The api-version query parameter (?api-version=) is required for all requests.
This can occur if there are hash symbols in the resource name or resource type parameters.
For example "CDD1EE35DC872C48F799BAC150FBB128E702BB9C##North Europe#'"
You must encode these parameters, replacing the hash # symbols with %23 - for example
"CDD1EE35DC872C48F799BAC150FBB128E702BB9C%23%23North Europe%23'" and then run the command again
Comments
Post a Comment