EventHub.DefinitionStages.WithAuthorizationRule Interface

public static interface EventHub.DefinitionStages.WithAuthorizationRule

The stage of the event hub definition allowing to add authorization rule for accessing the event hub.

Method Summary

Modifier and Type Method and Description
abstract WithCreate withNewListenRule(String ruleName)

Specifies that a new authorization rule should be created that has listen access to the event hub.

abstract WithCreate withNewManageRule(String ruleName)

Specifies that a new authorization rule should be created that has manage access to the event hub.

abstract WithCreate withNewSendRule(String ruleName)

Specifies that a new authorization rule should be created that has send access to the event hub.

Method Details

withNewListenRule

public abstract 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

public abstract 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

withNewSendRule

public abstract 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

Applies to