IUpdate Interface

Definition

The template for Service Bus queue 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.IQueue>, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithAuthorizationRule, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithDefaultMessageTTL, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithDeleteOnIdle, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithDuplicateMessageDetection, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithExpiredMessageMovedToDeadLetterQueue, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithExpressMessage, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithMessageBatching, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithMessageLockDuration, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithSession, Microsoft.Azure.Management.ServiceBus.Fluent.Queue.Update.IWithSize
type IUpdate = interface
    interface IAppliable<IQueue>
    interface IIndexable
    interface IWithSize
    interface IWithDeleteOnIdle
    interface IWithMessageLockDuration
    interface IWithDefaultMessageTTL
    interface IWithSession
    interface IWithExpressMessage
    interface IWithMessageBatching
    interface IWithDuplicateMessageDetection
    interface IWithExpiredMessageMovedToDeadLetterQueue
    interface IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount
    interface IWithAuthorizationRule
Public Interface IUpdate
Implements IAppliable(Of IQueue), IWithAuthorizationRule, IWithDefaultMessageTTL, IWithDeleteOnIdle, IWithDuplicateMessageDetection, IWithExpiredMessageMovedToDeadLetterQueue, IWithExpressMessage, IWithMessageBatching, IWithMessageLockDuration, IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount, IWithSession, IWithSize
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 queue is automatically deleted.

(Inherited from IWithDeleteOnIdle)
WithDuplicateMessageDetectionHistoryDuration(TimeSpan)

Specifies the duration of the duplicate message detection history.

(Inherited from IWithDuplicateMessageDetection)
WithExpiredMessageMovedToDeadLetterQueue()

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

(Inherited from IWithExpiredMessageMovedToDeadLetterQueue)
WithExpressMessage()

Specifies that messages in this queue are express hence they can be cached in memory for some time before storing it in messaging store.

(Inherited from IWithExpressMessage)
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 queue.

(Inherited from IWithMessageMovedToDeadLetterQueueOnMaxDeliveryCount)
WithNewListenRule(String)

Creates a listen authorization rule for the queue.

(Inherited from IWithAuthorizationRule)
WithNewManageRule(String)

Creates a manage authorization rule for the queue.

(Inherited from IWithAuthorizationRule)
WithNewSendRule(String)

Creates a send authorization rule for the queue.

(Inherited from IWithAuthorizationRule)
WithoutAuthorizationRule(String)

Removes an authorization rule for the queue.

(Inherited from IWithAuthorizationRule)
WithoutDuplicateMessageDetection()

Specifies that duplicate message detection needs to be disabled.

(Inherited from IWithDuplicateMessageDetection)
WithoutExpiredMessageMovedToDeadLetterQueue()

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

(Inherited from IWithExpiredMessageMovedToDeadLetterQueue)
WithoutExpressMessage()

Specifies that messages in this queue are not express hence they should be cached in memory.

(Inherited from IWithExpressMessage)
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)
WithoutSession()

Specifies that session support should be disabled for the queue.

(Inherited from IWithSession)
WithSession()

Specifies that session support should be enabled for the queue.

(Inherited from IWithSession)
WithSizeInMB(Int64)

Specifies the maximum size of memory allocated for the queue.

(Inherited from IWithSize)

Applies to