Package version:

Interface MatchConditions

Specifies HTTP options for conditional requests based on ETag matching.

interface MatchConditions {
    ifMatch?: string;
    ifNoneMatch?: string;
}

Hierarchy (view full)

Properties

ifMatch?: string

Specify an ETag value to operate only on blobs with a matching value.

ifNoneMatch?: string

Specify an ETag value to operate only on blobs without a matching value.