forked from Azzhag/azure-sdk-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Windows Azure Service Bus Cmdlets
guangyang edited this page Mar 8, 2013
·
1 revision
New-AzureSBNamespace [-Name*] [-Location*]
Creates a new namespace
Name: Namespace to create
Location: Region to create the namespace
- We should validate that the name is valid according to server rules.
- We should verify the region is valid. For now we can hardcode the region list.
Get-AzureSBNamespace [-Name]
Retrieve the list of namespaces
- If there is an error when specifying a name, we should make the HTTP call to get the list and check if it exists in the list.
Name: Specific namespace to retrieve details for
Remove-AzureSBNamespace [-Name*]
Remove a namespace
Name: Namespace to remove
- If there is an error when specifying a name, we should make the HTTP call to get the list and check if it exists in the list.
Get-AzureSBLocation
Retrieve the list of available locations
Test-AzureName [-Namespace] (P2)
Verify whether the namespace is available
Namespace: Namespace to verify
[ ]: Parameter can be passed positionally
*: Required parameter