Get-AzureRmProviderOperation
Gets the operations for an Azure resource provider that are securable using Azure RBAC.
Caution
Because Az PowerShell modules now have all the capabilities of AzureRM PowerShell modules and more, we'll retire AzureRM PowerShell modules on 29 February 2024.
To avoid service interruptions, update your scripts that use AzureRM PowerShell modules to use Az PowerShell modules by 29 February 2024. To automatically update your scripts, follow the quickstart guide.
Syntax
Get-AzureRmProviderOperation
[[-OperationSearchString] <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzureRmProviderOperation gets the operations exposed by Azure resource providers. Operations can be composed to create custom roles in Azure RBAC. The command takes as input an operation search string (with possible wildcard() character(s)) which determines the operations details to display. Use Get-AzureRmProviderOperation * to get all operations for all Azure resource providers. Use Get-AzureRmProviderOperation Microsoft.Compute/ to get all operations of Microsoft.Compute resource provider.
Examples
Get all actions for all providers
PS C:\> Get-AzureRmProviderOperation *
Get actions for a particular resource provider
PS C:\> Get-AzureRmProviderOperation Microsoft.Insights/*
Get all actions that can be performed on virtual machines
PS C:\> Get-AzureRmProviderOperation */virtualMachines/*
Parameters
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with azure
Type: | IAzureContextContainer |
Aliases: | AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-OperationSearchString
The operation search string (with possible wildcard (*) characters)
Type: | String |
Aliases: | Name |
Position: | 0 |
Default value: | "*" |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
Parameters: OperationSearchString (ByValue)
Outputs
Notes
Keywords: azure, azurerm, arm, resource, management, manager, resource, group, template, deployment