ServiceBusNamespace.UpdateStages.WithAuthorizationRule Interface

public static interface ServiceBusNamespace.UpdateStages.WithAuthorizationRule

The stage of the Service Bus namespace update allowing manage authorization rules for the namespace.

Method Summary

Modifier and Type Method and Description
abstract Update withNewListenRule(String name)

Creates a listen authorization rule for the Service Bus namespace.

abstract Update withNewManageRule(String name)

Creates a manage authorization rule for the Service Bus namespace.

abstract Update withNewSendRule(String name)

Creates a send authorization rule for the Service Bus namespace.

abstract Update withoutAuthorizationRule(String name)

Removes an authorization rule from the Service Bus namespace.

Method Details

withNewListenRule

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

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

withNewSendRule

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

withoutAuthorizationRule

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

Applies to