ServiceBusTopicOutputDataSource 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
ServiceBusTopicOutputDataSource() |
Initializes a new instance of the ServiceBusTopicOutputDataSource class. |
ServiceBusTopicOutputDataSource(String, String, String, String, String, IList<String>, IDictionary<String,String>) |
Initializes a new instance of the ServiceBusTopicOutputDataSource class. |
ServiceBusTopicOutputDataSource()
Initializes a new instance of the ServiceBusTopicOutputDataSource class.
public ServiceBusTopicOutputDataSource ();
Public Sub New ()
Applies to
ServiceBusTopicOutputDataSource(String, String, String, String, String, IList<String>, IDictionary<String,String>)
Initializes a new instance of the ServiceBusTopicOutputDataSource class.
public ServiceBusTopicOutputDataSource (string serviceBusNamespace = default, string sharedAccessPolicyName = default, string sharedAccessPolicyKey = default, string authenticationMode = default, string topicName = default, System.Collections.Generic.IList<string> propertyColumns = default, System.Collections.Generic.IDictionary<string,string> systemPropertyColumns = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.ServiceBusTopicOutputDataSource : string * string * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.StreamAnalytics.Models.ServiceBusTopicOutputDataSource
Public Sub New (Optional serviceBusNamespace As String = Nothing, Optional sharedAccessPolicyName As String = Nothing, Optional sharedAccessPolicyKey As String = Nothing, Optional authenticationMode As String = Nothing, Optional topicName As String = Nothing, Optional propertyColumns As IList(Of String) = Nothing, Optional systemPropertyColumns As IDictionary(Of String, String) = Nothing)
Parameters
- serviceBusNamespace
- String
The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- sharedAccessPolicyName
- String
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- sharedAccessPolicyKey
- String
The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- authenticationMode
- String
Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'
- topicName
- String
The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- systemPropertyColumns
- IDictionary<String,String>
The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
Applies to
Azure SDK for .NET