Interface EventHub.UpdateStages.WithAuthorizationRule
-
- All Known Subinterfaces:
EventHub.Update
- Enclosing interface:
- EventHub.UpdateStages
@Beta(V1_7_0) public static interface EventHub.UpdateStages.WithAuthorizationRuleThe stage of the event hub definition allowing to add an authorization rule for accessing the event hub.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventHub.UpdatewithNewListenRule(String name)Specifies that a new authorization rule should be created that has listen access to the event hub.EventHub.UpdatewithNewManageRule(String name)Specifies that a new authorization rule should be created that has manage access to the event hub.EventHub.UpdatewithNewSendRule(String name)Specifies that a new authorization rule should be created that has send access to the event hub.EventHub.UpdatewithoutAuthorizationRule(String ruleName)Specifies that an authorization rule associated with the event hub should be deleted.
-
-
-
Method Detail
-
withNewSendRule
@Beta(V1_7_0) EventHub.Update withNewSendRule(String name)
Specifies that a new authorization rule should be created that has send access to the event hub.- Parameters:
name- rule name- Returns:
- next stage of the event hub update
-
withNewListenRule
@Beta(V1_7_0) EventHub.Update withNewListenRule(String name)
Specifies that a new authorization rule should be created that has listen access to the event hub.- Parameters:
name- rule name- Returns:
- next stage of the event hub update
-
withNewManageRule
@Beta(V1_7_0) EventHub.Update withNewManageRule(String name)
Specifies that a new authorization rule should be created that has manage access to the event hub.- Parameters:
name- rule name- Returns:
- next stage of the event hub update
-
withoutAuthorizationRule
@Beta(V1_7_0) EventHub.Update withoutAuthorizationRule(String ruleName)
Specifies that an authorization rule associated with the event hub should be deleted.- Parameters:
ruleName- rule name- Returns:
- next stage of the event hub update
-
-