TopicInner Constructors
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.
Overloads
TopicInner() |
Initializes a new instance of the TopicInner class. |
TopicInner(String, String, String, String, IDictionary<String, String>, Nullable<DateTime>, String, Nullable<DateTime>, MessageCountDetails, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, Nullable<Boolean>, Nullable<Int64>, Nullable<EntityStatus>, Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>) |
Initializes a new instance of the TopicInner class. |
TopicInner()
Initializes a new instance of the TopicInner class.
public TopicInner ();
Public Sub New ()
Applies to
TopicInner(String, String, String, String, IDictionary<String, String>, Nullable<DateTime>, String, Nullable<DateTime>, MessageCountDetails, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, Nullable<Boolean>, Nullable<Int64>, Nullable<EntityStatus>, Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>)
Initializes a new instance of the TopicInner class.
public TopicInner (string location = default, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, DateTime? accessedAt = default, string autoDeleteOnIdle = default, DateTime? createdAt = default, Microsoft.Azure.Management.ServiceBus.Fluent.Models.MessageCountDetails countDetails = default, string defaultMessageTimeToLive = default, string duplicateDetectionHistoryTimeWindow = default, bool? enableBatchedOperations = default, bool? enableExpress = default, bool? enablePartitioning = default, long? maxSizeInMegabytes = default, bool? requiresDuplicateDetection = default, long? sizeInBytes = default, Microsoft.Azure.Management.ServiceBus.Fluent.Models.EntityStatus? status = default, int? subscriptionCount = default, bool? supportOrdering = default, DateTime? updatedAt = default);
new Microsoft.Azure.Management.ServiceBus.Fluent.Models.TopicInner : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<DateTime> * string * Nullable<DateTime> * Microsoft.Azure.Management.ServiceBus.Fluent.Models.MessageCountDetails * string * string * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<int64> * Nullable<bool> * Nullable<int64> * Nullable<Microsoft.Azure.Management.ServiceBus.Fluent.Models.EntityStatus> * Nullable<int> * Nullable<bool> * Nullable<DateTime> -> Microsoft.Azure.Management.ServiceBus.Fluent.Models.TopicInner
Public Sub New (Optional location As String = Nothing, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional accessedAt As Nullable(Of DateTime) = Nothing, Optional autoDeleteOnIdle As String = Nothing, Optional createdAt As Nullable(Of DateTime) = Nothing, Optional countDetails As MessageCountDetails = Nothing, Optional defaultMessageTimeToLive As String = Nothing, Optional duplicateDetectionHistoryTimeWindow As String = Nothing, Optional enableBatchedOperations As Nullable(Of Boolean) = Nothing, Optional enableExpress As Nullable(Of Boolean) = Nothing, Optional enablePartitioning As Nullable(Of Boolean) = Nothing, Optional maxSizeInMegabytes As Nullable(Of Long) = Nothing, Optional requiresDuplicateDetection As Nullable(Of Boolean) = Nothing, Optional sizeInBytes As Nullable(Of Long) = Nothing, Optional status As Nullable(Of EntityStatus) = Nothing, Optional subscriptionCount As Nullable(Of Integer) = Nothing, Optional supportOrdering As Nullable(Of Boolean) = Nothing, Optional updatedAt As Nullable(Of DateTime) = Nothing)
Parameters
- location
- String
- id
- String
- name
- String
- type
- String
- tags
- IDictionary<String,String>
Last time the message was sent, or a request was received, for this topic.
- autoDeleteOnIdle
- String
TimeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. The service accepts a C# Standard TimeSpan Format for loc duration https://msdn.microsoft.com/en-us/library/ee372286(v=vs.110).aspx . Format is 'DD.HH:MM:SS' and default value of this property is 10675199 days
- countDetails
- MessageCountDetails
- defaultMessageTimeToLive
- String
Default message time to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. The service accepts a C# Standard TimeSpan Format for loc duration https://msdn.microsoft.com/en-us/library/ee372286(v=vs.110).aspx . Format is 'DD.HH:MM:SS' and default value of this property is 10675199 days
- duplicateDetectionHistoryTimeWindow
- String
TimeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. The service accepts a C# Standard TimeSpan Format for loc duration https://msdn.microsoft.com/en-us/library/ee372286(v=vs.110).aspx . Format is 'DD.HH:MM:SS' and default value of this property is 10675199 days
Value that indicates whether server-side batched operations are enabled.
Value that indicates whether Express Entities are enabled. An express topic holds a message in memory temporarily before writing it to persistent storage.
Value that indicates whether the topic to be partitioned across multiple message brokers is enabled.
Maximum size of the topic in megabytes, which is the size of the memory allocated for the topic.
Value indicating if this topic requires duplicate detection.
- status
- Nullable<EntityStatus>
Enumerates the possible values for the status of a messaging entity. Possible values include: 'Active', 'Creating', 'Deleting', 'Disabled', 'ReceiveDisabled', 'Renaming', 'Restoring', 'SendDisabled', 'Unknown'
Applies to
Azure SDK for .NET