Interface EventHub.DefinitionStages.WithAuthorizationRule
-
- All Known Subinterfaces:
EventHub.Definition,EventHub.DefinitionStages.WithCaptureOptionalSettingsOrCreate,EventHub.DefinitionStages.WithCaptureProviderOrCreate,EventHub.DefinitionStages.WithCreate
- Enclosing interface:
- EventHub.DefinitionStages
@Beta(V1_7_0) public static interface EventHub.DefinitionStages.WithAuthorizationRuleThe stage of the event hub definition allowing to add authorization rule for accessing the event hub.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventHub.DefinitionStages.WithCreatewithNewListenRule(String ruleName)Specifies that a new authorization rule should be created that has listen access to the event hub.EventHub.DefinitionStages.WithCreatewithNewManageRule(String ruleName)Specifies that a new authorization rule should be created that has manage access to the event hub.EventHub.DefinitionStages.WithCreatewithNewSendRule(String ruleName)Specifies that a new authorization rule should be created that has send access to the event hub.
-
-
-
Method Detail
-
withNewSendRule
@Beta(V1_7_0) EventHub.DefinitionStages.WithCreate withNewSendRule(String ruleName)
Specifies that a new authorization rule should be created that has send access to the event hub.- Parameters:
ruleName- rule name- Returns:
- next stage of the event hub definition
-
withNewListenRule
@Beta(V1_7_0) EventHub.DefinitionStages.WithCreate withNewListenRule(String ruleName)
Specifies that a new authorization rule should be created that has listen access to the event hub.- Parameters:
ruleName- rule name- Returns:
- next stage of the event hub definition
-
withNewManageRule
@Beta(V1_7_0) EventHub.DefinitionStages.WithCreate withNewManageRule(String ruleName)
Specifies that a new authorization rule should be created that has manage access to the event hub.- Parameters:
ruleName- rule name- Returns:
- next stage of the event hub definition
-
-