BlobStreamInputDataSource Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
BlobStreamInputDataSource() |
Initialisiert eine neue instance der BlobStreamInputDataSource-Klasse. |
BlobStreamInputDataSource(IList<StorageAccount>, String, String, String, String, Nullable<Int32>) |
Initialisiert eine neue instance der BlobStreamInputDataSource-Klasse. |
BlobStreamInputDataSource()
Initialisiert eine neue instance der BlobStreamInputDataSource-Klasse.
public BlobStreamInputDataSource ();
Public Sub New ()
Gilt für:
BlobStreamInputDataSource(IList<StorageAccount>, String, String, String, String, Nullable<Int32>)
Initialisiert eine neue instance der BlobStreamInputDataSource-Klasse.
public BlobStreamInputDataSource (System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.StorageAccount> storageAccounts = default, string container = default, string pathPattern = default, string dateFormat = default, string timeFormat = default, int? sourcePartitionCount = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.BlobStreamInputDataSource : System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.StorageAccount> * string * string * string * string * Nullable<int> -> Microsoft.Azure.Management.StreamAnalytics.Models.BlobStreamInputDataSource
Public Sub New (Optional storageAccounts As IList(Of StorageAccount) = Nothing, Optional container As String = Nothing, Optional pathPattern As String = Nothing, Optional dateFormat As String = Nothing, Optional timeFormat As String = Nothing, Optional sourcePartitionCount As Nullable(Of Integer) = Nothing)
Parameter
- storageAccounts
- IList<StorageAccount>
Eine Liste mit mindestens einem Azure Storage-Konto. Erforderlich für PUT-Anforderungen (CreateOrReplace).
- container
- String
Der Name eines Containers im zugeordneten Speicherkonto. Dieser Container enthält entweder die Blobs, aus der gelesen oder geschrieben werden sollen. Erforderlich für PUT-Anforderungen (CreateOrReplace).
- pathPattern
- String
Das Blobpfadmuster. Kein regulärer Ausdruck. Es stellt ein Muster dar, mit dem Blobnamen abgeglichen werden, um zu bestimmen, ob sie als Eingabe oder Ausgabe für den Auftrag eingeschlossen werden sollen. Eine ausführlichere Erläuterung und ein Beispiel finden Sie https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input unter oder https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output .
- dateFormat
- String
Das Datumsformat, Überall dort, wo {date} in pathPattern angezeigt wird, wird stattdessen der Wert dieser Eigenschaft als Datumsformat verwendet.
- timeFormat
- String
Das Zeitformat. Überall dort, wo {time} in pathPattern angezeigt wird, wird stattdessen der Wert dieser Eigenschaft als Zeitformat verwendet.
Die Partitionsanzahl der Blobeingabedatenquelle. Bereich 1 bis 256.
Gilt für:
Azure SDK for .NET