< Back

Get-AzureRmProviderFeature

Tue Jan 29, 2019 10:05 pm

NAME Get-AzureRmProviderFeature



SYNOPSIS

Gets information about Azure provider features.





SYNTAX

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



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





DESCRIPTION

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





PARAMETERS

-DefaultProfile <IAzureContextContainer>

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



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-FeatureName <String>

Specifies the name of the feature to get.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ListAvailable [<SwitchParameter>]

Indicates that this cmdlet gets all features.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-ProviderNamespace <String>

Specifies the namespace for which this cmdlet gets provider features.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature]







NOTES









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.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... derfeature

Register-AzureRmProviderFeature