Get-AzLocation
Gets all locations and the supported resource providers for each location.
Syntax
Get-AzLocation
[-ApiVersion <String>]
[-Pre]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzLocation cmdlet gets all locations and the supported resource providers for each location.
Examples
Example 1: Get all locations and the supported resource providers
PS C:\>Get-AzLocation
This command gets all locations and the supported resource providers for each location.
Example 2: Get all locations supporting resource provider Microsoft.AppConfiguration
PS C:\>Get-AzLocation | Where-Object {$_.Providers -contains "Microsoft.AppConfiguration"}
Location : eastasia
DisplayName : East Asia
Providers : {Microsoft.Devices, Microsoft.Cache, Microsoft.AppConfiguration, microsoft.insights…}
Location : southeastasia
DisplayName : Southeast Asia
Providers : {Microsoft.Devices, Microsoft.Cache, Microsoft.AppConfiguration, microsoft.insights…}
Location : centralus
DisplayName : Central US
Providers : {Microsoft.Devices, Microsoft.Cache, Microsoft.AppConfiguration, microsoft.insights…}
...
This example gets all locations which supports resource provider "Microsoft.AppConfiguration".
Parameters
Specifies the API version that is supported by the resource Provider. You can specify a different version than the default version.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with azure
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Indicates that this cmdlet considers pre-release API versions when it automatically determines which version to use.
| Type: | SwitchParameter |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Inputs
None