IUpdate Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The template for a Service Bus topic 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.ITopic>, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithAuthorizationRule, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithDefaultMessageTTL, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithDeleteOnIdle, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithDuplicateMessageDetection, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithExpressMessage, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithMessageBatching, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithSize, Microsoft.Azure.Management.ServiceBus.Fluent.Topic.Update.IWithSubscription
type IUpdate = interface
interface IAppliable<ITopic>
interface IIndexable
interface IWithSize
interface IWithDeleteOnIdle
interface IWithDefaultMessageTTL
interface IWithExpressMessage
interface IWithMessageBatching
interface IWithDuplicateMessageDetection
interface IWithSubscription
interface IWithAuthorizationRule
Public Interface IUpdate
Implements IAppliable(Of ITopic), IWithAuthorizationRule, IWithDefaultMessageTTL, IWithDeleteOnIdle, IWithDuplicateMessageDetection, IWithExpressMessage, IWithMessageBatching, IWithSize, IWithSubscription
- 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 topic is automatically deleted. (Inherited from IWithDeleteOnIdle) |
WithDuplicateMessageDetectionHistoryDuration(TimeSpan) |
Specifies the duration of the duplicate message detection history. (Inherited from IWithDuplicateMessageDetection) |
WithExpressMessage() |
Specifies that messages in this topic 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) |
WithNewListenRule(String) |
Creates a listen authorization rule for the topic. (Inherited from IWithAuthorizationRule) |
WithNewManageRule(String) |
Creates a manage authorization rule for the topic. (Inherited from IWithAuthorizationRule) |
WithNewSendRule(String) |
Creates a send authorization rule for the topic. (Inherited from IWithAuthorizationRule) |
WithNewSubscription(String) |
Creates a subscription entity for the Service Bus topic. (Inherited from IWithSubscription) |
WithoutAuthorizationRule(String) |
Removes an authorization rule for the topic. (Inherited from IWithAuthorizationRule) |
WithoutDuplicateMessageDetection() |
Specifies that duplicate message detection needs to be disabled. (Inherited from IWithDuplicateMessageDetection) |
WithoutExpressMessage() |
Specifies that messages in this topic 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) |
WithoutSubscription(String) |
Removes a subscription entity associated with the Service Bus topic. (Inherited from IWithSubscription) |
WithSizeInMB(Int64) |
Specifies the maximum size of memory allocated for the topic. (Inherited from IWithSize) |
Applies to
Azure SDK for .NET