Interface ServiceBusNamespace.UpdateStages.WithAuthorizationRule
-
- All Known Subinterfaces:
ServiceBusNamespace.Update
- Enclosing interface:
- ServiceBusNamespace.UpdateStages
public static interface ServiceBusNamespace.UpdateStages.WithAuthorizationRuleThe stage of the Service Bus namespace update allowing manage authorization rules for the namespace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceBusNamespace.UpdatewithNewListenRule(String name)Creates a listen authorization rule for the Service Bus namespace.ServiceBusNamespace.UpdatewithNewManageRule(String name)Creates a manage authorization rule for the Service Bus namespace.ServiceBusNamespace.UpdatewithNewSendRule(String name)Creates a send authorization rule for the Service Bus namespace.ServiceBusNamespace.UpdatewithoutAuthorizationRule(String name)Removes an authorization rule from the Service Bus namespace.
-
-
-
Method Detail
-
withNewSendRule
ServiceBusNamespace.Update withNewSendRule(String name)
Creates a send authorization rule for the Service Bus namespace.- Parameters:
name- rule name- Returns:
- next stage of the Service Bus namespace update
-
withNewListenRule
ServiceBusNamespace.Update withNewListenRule(String name)
Creates a listen authorization rule for the Service Bus namespace.- Parameters:
name- rule name- Returns:
- next stage of the Service Bus namespace update
-
withNewManageRule
ServiceBusNamespace.Update withNewManageRule(String name)
Creates a manage authorization rule for the Service Bus namespace.- Parameters:
name- rule name- Returns:
- next stage of the Service Bus namespace update
-
withoutAuthorizationRule
ServiceBusNamespace.Update withoutAuthorizationRule(String name)
Removes an authorization rule from the Service Bus namespace.- Parameters:
name- rule name- Returns:
- next stage of the Service Bus namespace update
-
-