AzureDataLakeStorageDataFeedSource 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
AzureDataLakeStorageDataFeedSource(String, String, String, String) |
Initializes a new instance of the AzureDataLakeStorageDataFeedSource class. This constructor does not set an Azure.AI.MetricsAdvisor.Administration.AzureDataLakeStorageDataFeedSource.AccountKey, so you must assign an AzureDataLakeStorageDataFeedSource.AuthenticationType to the Authentication property. If you intend to use the default authentication type, Basic, see AzureDataLakeStorageDataFeedSource(String, String, String, String, String). |
AzureDataLakeStorageDataFeedSource(String, String, String, String, String) |
Initializes a new instance of the AzureDataLakeStorageDataFeedSource class. This constructor
requires an |
AzureDataLakeStorageDataFeedSource(String, String, String, String)
Initializes a new instance of the AzureDataLakeStorageDataFeedSource class. This constructor does not set an Azure.AI.MetricsAdvisor.Administration.AzureDataLakeStorageDataFeedSource.AccountKey, so you must assign an AzureDataLakeStorageDataFeedSource.AuthenticationType to the Authentication property. If you intend to use the default authentication type, Basic, see AzureDataLakeStorageDataFeedSource(String, String, String, String, String).
public AzureDataLakeStorageDataFeedSource (string accountName, string fileSystemName, string directoryTemplate, string fileTemplate);
new Azure.AI.MetricsAdvisor.Administration.AzureDataLakeStorageDataFeedSource : string * string * string * string -> Azure.AI.MetricsAdvisor.Administration.AzureDataLakeStorageDataFeedSource
Public Sub New (accountName As String, fileSystemName As String, directoryTemplate As String, fileTemplate As String)
Parameters
- accountName
- String
The name of the Storage Account.
- fileSystemName
- String
The name of the file system.
- directoryTemplate
- String
The directory template.
- fileTemplate
- String
This is the file template of the Blob file. For example: X_%Y-%m-%d-%h-%M.json. The following parameters are supported:
- %Y: The year formatted as yyyy
- %m: The month formatted as MM
- %d: The day formatted as dd
- %h: The hour formatted as HH
- %M: The minute formatted as mm
Exceptions
accountName
, fileSystemName
, directoryTemplate
, or fileTemplate
is null.
accountName
, fileSystemName
, directoryTemplate
, or fileTemplate
is empty.
Applies to
AzureDataLakeStorageDataFeedSource(String, String, String, String, String)
Initializes a new instance of the AzureDataLakeStorageDataFeedSource class. This constructor
requires an accountKey
and is intended to be used with the default authentication type,
Basic. If you intend to use another type of authentication, see
AzureDataLakeStorageDataFeedSource(String, String, String, String).
public AzureDataLakeStorageDataFeedSource (string accountName, string accountKey, string fileSystemName, string directoryTemplate, string fileTemplate);
new Azure.AI.MetricsAdvisor.Administration.AzureDataLakeStorageDataFeedSource : string * string * string * string * string -> Azure.AI.MetricsAdvisor.Administration.AzureDataLakeStorageDataFeedSource
Public Sub New (accountName As String, accountKey As String, fileSystemName As String, directoryTemplate As String, fileTemplate As String)
Parameters
- accountName
- String
The name of the Storage Account.
- accountKey
- String
The Storage Account key.
- fileSystemName
- String
The name of the file system.
- directoryTemplate
- String
The directory template.
- fileTemplate
- String
This is the file template of the Blob file. For example: X_%Y-%m-%d-%h-%M.json. The following parameters are supported:
- %Y: The year formatted as yyyy
- %m: The month formatted as MM
- %d: The day formatted as dd
- %h: The hour formatted as HH
- %M: The minute formatted as mm
Exceptions
accountName
, fileSystemName
, directoryTemplate
, fileTemplate
, or accountKey
is null.
accountName
, fileSystemName
, directoryTemplate
, fileTemplate
, or accountKey
is empty.
Applies to
Azure SDK for .NET