AzureBlobDataFeedSource(String, String, String) Constructor

Definition

Initializes a new instance of the AzureBlobDataFeedSource class.

public AzureBlobDataFeedSource (string connectionString, string container, string blobTemplate);
new Azure.AI.MetricsAdvisor.Administration.AzureBlobDataFeedSource : string * string * string -> Azure.AI.MetricsAdvisor.Administration.AzureBlobDataFeedSource
Public Sub New (connectionString As String, container As String, blobTemplate As String)

Parameters

connectionString
String

The connection string for authenticating to the Azure Storage Account.

container
String

The name of the blob container.

blobTemplate
String

This is the template of the Blob file names. For example: /%Y/%m/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

connectionString, container, or blobTemplate is null.

connectionString, container, or blobTemplate is empty.

Applies to