Get-AzureRmProviderFeature

Gets information about Azure provider features.

Warning

The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.

Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.

Syntax

Get-AzureRmProviderFeature
   [-ProviderNamespace <String>]
   [-ListAvailable]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzureRmProviderFeature
   -ProviderNamespace <String>
   -FeatureName <String>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

The Get-AzureRmProviderFeature cmdlet gets the feature name, provider name, and registration status for Azure provider features.

Examples

Example 1: Get all available features

PS C:\>Get-AzureRmProviderFeature -ListAvailable

This command gets all available features.

Example 2: Get information about a specific feature

PS C:\>Get-AzureRmProviderFeature -FeatureName "AllowPreReleaseRegions" -ProviderNamespace "Microsoft.Compute"

This command gets information for the feature named AllowPreReleaseRegions for the specified provider.

Parameters

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with azure

Type:IAzureContextContainer
Aliases:AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-FeatureName

Specifies the name of the feature to get.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-ListAvailable

Indicates that this cmdlet gets all features.

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ProviderNamespace

Specifies the namespace for which this cmdlet gets provider features.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False