Package version:

Interface BlobReferenceInputDataSource

Describes a blob input data source that contains reference data.

interface BlobReferenceInputDataSource {
    authenticationMode?: string;
    blobName?: string;
    container?: string;
    dateFormat?: string;
    deltaPathPattern?: string;
    deltaSnapshotRefreshRate?: string;
    fullSnapshotRefreshRate?: string;
    pathPattern?: string;
    sourcePartitionCount?: number;
    storageAccounts?: StorageAccount[];
    timeFormat?: string;
    type: "Microsoft.Storage/Blob";
}

Hierarchy (view full)

Properties

authenticationMode?: string

Authentication Mode.

blobName?: string

The name of the blob input.

container?: string

The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.

dateFormat?: string

The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.

deltaPathPattern?: string

The path pattern of the delta snapshot.

deltaSnapshotRefreshRate?: string

The interval that the user generates a delta snapshot of this reference blob input data source.

fullSnapshotRefreshRate?: string

The refresh interval of the blob input data source.

pathPattern?: string

The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.

sourcePartitionCount?: number

The partition count of the blob input data source. Range 1 - 256.

storageAccounts?: StorageAccount[]

A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.

timeFormat?: string

The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

type: "Microsoft.Storage/Blob"

Polymorphic discriminator, which specifies the different types this object can be

Generated using TypeDoc