Remove-AzureSBAuthorizationRule
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Remove-AzureSBAuthorizationRule
Removes an existing Service Bus authorization rule.
Parameter Set: EntitySAS
Remove-AzureSBAuthorizationRule [-Name] <String> [-Namespace] <String> [-EntityName] <String> [-EntityType] <ServiceBusEntityType> [-PassThru] [ <CommonParameters>]
Parameter Set: NamespaceSAS
Remove-AzureSBAuthorizationRule [-Name] <String> [-Namespace] <String> [-PassThru] [ <CommonParameters>]
This topic describes the cmdlet in the .6.19 version of the Windows Azure PowerShell module. To find out the version of the module you're using, from the Windows Azure PowerShell console, type (get-module azure).version.
-EntityName<String>
The entity name to apply the rule at.
Aliases |
none |
Required? |
true |
Position? |
3 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-EntityType<ServiceBusEntityType>
The entity type (Queue, Topic, Relay, NotificationHub).
Aliases |
none |
Required? |
true |
Position? |
4 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-Name<String>
The unique authorization rule name.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-Namespace<String>
The namespace name to apply the authorization rule. If no EntityName is provided, the rule will be on the namespace level.
Aliases |
none |
Required? |
true |
Position? |
2 |
Default Value |
none |
Accept Pipeline Input? |
True (ByPropertyName) |
Accept Wildcard Characters? |
false |
-PassThru
Aliases |
none |
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, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
Remove an authorization rule at namespace level
Removes the authorization rule MyRule from MyNamespace.
PS C:\> Remove-AzureSBAuthorizationRule -Name MyRule -Namespace MyNamespace
Remove an authorization rule for a Queue
Removes an authorization rule named MyRule for a MyEntity Queue on MyNamespace.
PS C:\> Remove-AzureSBAuthorizationRule -Name MyRule -Namespace MyNamespace -EntityName MyEntity -EntityType Queue