Get-AzureRmApplicationSecurityGroup
Gets an application security group.
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-AzureRmApplicationSecurityGroup
[-ResourceGroupName <String>]
[-Name <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzureRmApplicationSecurityGroup cmdlet gets an application security group.
Examples
Example 1: Retrieve all application security groups.
PS C:\> Get-AzureRmApplicationSecurityGroup
The command above returns the all application security groups in the subscription.
Example 2: Retrieve application security groups in a resource group.
PS C:\> Get-AzureRmApplicationSecurityGroup -ResourceGroupName MyResourceGroup
The command above returns all application security groups that belong to the resource group MyResourceGroup.
Example 3: Retrieve a specific application security group.
PS C:\> Get-AzureRmApplicationSecurityGroup -ResourceGroupName MyResourceGroup -Name MyApplicationSecurityGroup
The command above returns the application security group MyApplicationSecurityGroup under the resource group MyResourceGroup.
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 |
-Name
The resource name.
Type: | String |
Aliases: | ResourceName |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ResourceGroupName
The resource group name.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |