IUpdate Interface

Definition

The template for a subscription update operation, containing all the settings that can be modified.

public interface IUpdate : Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions.IAppliable<Microsoft.Azure.Management.ServiceBus.Fluent.ISubscription>, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithDefaultMessageTTL, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithDeleteOnIdle, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithExpiredMessageMovedToDeadLetterSubscription, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithMessageBatching, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithMessageLockDuration, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException, Microsoft.Azure.Management.ServiceBus.Fluent.Subscription.Update.IWithSession
type IUpdate = interface
    interface IAppliable<ISubscription>
    interface IIndexable
    interface IWithDeleteOnIdle
    interface IWithMessageLockDuration
    interface IWithDefaultMessageTTL
    interface IWithSession
    interface IWithMessageBatching
    interface IWithExpiredMessageMovedToDeadLetterSubscription
    interface IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount
    interface IWithMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException
Public Interface IUpdate
Implements IAppliable(Of ISubscription), IWithDefaultMessageTTL, IWithDeleteOnIdle, IWithExpiredMessageMovedToDeadLetterSubscription, IWithMessageBatching, IWithMessageLockDuration, IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount, IWithMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException, IWithSession
Implements

Properties

Key (Inherited from IIndexable)

Methods

Apply()

Execute the update request.

(Inherited from IAppliable<T>)
ApplyAsync(CancellationToken, Boolean)

Execute the update request asynchronously.

(Inherited from IAppliable<T>)
WithDefaultMessageTTL(TimeSpan)

Specifies the duration after which the message expires.

(Inherited from IWithDefaultMessageTTL)
WithDeleteOnIdleDurationInMinutes(Int32)

The idle interval after which the subscription is automatically deleted.

(Inherited from IWithDeleteOnIdle)
WithExpiredMessageMovedToDeadLetterSubscription()

Specifies that expired message must be moved to dead-letter subscription.

(Inherited from IWithExpiredMessageMovedToDeadLetterSubscription)
WithMessageBatching()

Specifies that service bus can batch multiple message when it write messages to or delete messages from it's internal store. This increases the throughput.

(Inherited from IWithMessageBatching)
WithMessageLockDurationInSeconds(Int32)

Specifies the amount of time that the message is locked for other receivers.

(Inherited from IWithMessageLockDuration)
WithMessageMovedToDeadLetterQueueOnMaxDeliveryCount(Int32)

Specifies maximum number of times a message can be delivered. Once this count has exceeded, message will be moved to dead-letter subscription.

(Inherited from IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount)
WithMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException()

Specifies that filter evaluation failed message must be moved to dead-letter subscription.

(Inherited from IWithMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException)
WithoutExpiredMessageMovedToDeadLetterSubscription()

Specifies that expired message should not be moved to dead-letter subscription.

(Inherited from IWithExpiredMessageMovedToDeadLetterSubscription)
WithoutMessageBatching()

Specifies that batching of messages should be disabled when service bus write messages to or delete messages from it's internal store.

(Inherited from IWithMessageBatching)
WithoutMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException()

Specifies that filter evaluation failed message should not be moved to dead-letter subscription.

(Inherited from IWithMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException)
WithoutSession()

Specifies that session support should be disabled for the subscription.

(Inherited from IWithSession)
WithSession()

Specifies that session support should be enabled for the subscription.

(Inherited from IWithSession)

Applies to