你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BlobReferenceInputDataSource 构造函数

定义

重载

BlobReferenceInputDataSource()

初始化 BlobReferenceInputDataSource 类的新实例。

BlobReferenceInputDataSource(IList<StorageAccount>, String, String, String, String)

初始化 BlobReferenceInputDataSource 类的新实例。

BlobReferenceInputDataSource()

初始化 BlobReferenceInputDataSource 类的新实例。

public BlobReferenceInputDataSource ();
Public Sub New ()

适用于

BlobReferenceInputDataSource(IList<StorageAccount>, String, String, String, String)

初始化 BlobReferenceInputDataSource 类的新实例。

public BlobReferenceInputDataSource (System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.StorageAccount> storageAccounts = default, string container = default, string pathPattern = default, string dateFormat = default, string timeFormat = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.BlobReferenceInputDataSource : System.Collections.Generic.IList<Microsoft.Azure.Management.StreamAnalytics.Models.StorageAccount> * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.BlobReferenceInputDataSource
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)

参数

storageAccounts
IList<StorageAccount>

一个或多个 Azure 存储帐户的列表。 在 PUT (CreateOrReplace) 请求时是必需的。

container
String

关联存储帐户中容器的名称。 此容器包含要读取或写入的 blob () 。 在 PUT (CreateOrReplace) 请求时是必需的。

pathPattern
String

Blob 路径模式。 不是正则表达式。 它表示一种模式,根据该模式匹配 Blob 名称,以确定是否应将其作为输入或输出包含在作业中。 有关更详细的说明和示例,请参阅 https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-inputhttps://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output

dateFormat
String

日期格式。 只要 {date} 出现在 pathPattern 中,此属性的值就用作日期格式。

timeFormat
String

时间格式。 只要 {time} 出现在 pathPattern 中,此属性的值将改为用作时间格式。

适用于