ServiceBusQueueOutputDataSource 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
ServiceBusQueueOutputDataSource() |
Initializes a new instance of the ServiceBusQueueOutputDataSource class. |
ServiceBusQueueOutputDataSource(String, String, String, String, String, IList<String>, Object) |
Initializes a new instance of the ServiceBusQueueOutputDataSource class. |
ServiceBusQueueOutputDataSource()
Initializes a new instance of the ServiceBusQueueOutputDataSource class.
public ServiceBusQueueOutputDataSource ();
Public Sub New ()
Applies to
ServiceBusQueueOutputDataSource(String, String, String, String, String, IList<String>, Object)
Initializes a new instance of the ServiceBusQueueOutputDataSource class.
public ServiceBusQueueOutputDataSource (string serviceBusNamespace = default, string sharedAccessPolicyName = default, string sharedAccessPolicyKey = default, string authenticationMode = default, string queueName = default, System.Collections.Generic.IList<string> propertyColumns = default, object systemPropertyColumns = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.ServiceBusQueueOutputDataSource : string * string * string * string * string * System.Collections.Generic.IList<string> * obj -> Microsoft.Azure.Management.StreamAnalytics.Models.ServiceBusQueueOutputDataSource
Public Sub New (Optional serviceBusNamespace As String = Nothing, Optional sharedAccessPolicyName As String = Nothing, Optional sharedAccessPolicyKey As String = Nothing, Optional authenticationMode As String = Nothing, Optional queueName As String = Nothing, Optional propertyColumns As IList(Of String) = Nothing, Optional systemPropertyColumns As Object = 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'
- queueName
- String
The name of the Service Bus Queue. 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
- Object
The system properties associated with the Service Bus Queue. 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