/// <summary>
 /// Gets list of service bus regions on the given subscription.
 /// </summary>
 public override void ExecuteCmdlet()
 {
     Client = Client ?? new ServiceBusClientExtensions(Profile, Profile.Context.Subscription);
     WriteObject(Client.GetServiceBusRegions(), true);
 }
 /// <summary>
 /// Gets list of service bus regions on the given subscription.
 /// </summary>
 public override void ExecuteCmdlet()
 {
     Client = Client ?? new ServiceBusClientExtensions(CurrentSubscription);
     WriteObject(Client.GetServiceBusRegions(), true);
 }