MBrace.Azure


ServiceBusManager

Namespace: MBrace.Azure.Management

Service Bus Account manager API

Instance members

Instance memberDescription
CreateAccount(accountName, region)
Signature: (accountName:string * region:Region option) -> ServiceBusAccount

Creates a service bus account with provided parameters.

CreateAccountAsync(accountName, region)
Signature: (accountName:string * region:Region option) -> Async<ServiceBusAccount>

Asynchronously creates a service bus account with provided parameters.

DeleteAccount(accountName)
Signature: accountName:string -> unit

Deletes service bus account by name.

DeleteAccountAsync(accountName)
Signature: accountName:string -> Async<unit>

Asynchronously deletes service bus account by name.

GetAccount(accountName)
Signature: accountName:string -> ServiceBusAccount

Fetches azure existing service bus account by name.

GetAccountAsync(accountName)
Signature: accountName:string -> Async<ServiceBusAccount>

Asynchronously fetches existing azure service bus account by name.

GetAccounts(region)
Signature: (region:Region option) -> ServiceBusAccount []

Fetches all service bus account info for given region.

GetAccountsAsync(region)
Signature: (region:Region option) -> Async<ServiceBusAccount []>

Asynchronously fetches all service bus account info for given region.

ShowAccounts(region)
Signature: (region:Region option) -> unit

Prints service bus account info to stdout for given region.

Fork me on GitHub