Data Lake

Overview

The Data Lake builder is used to create Azure Data Lake instances.

  • Data Lake (Microsoft.DataLakeStore/accounts)

Builder Keywords

KeywordPurpose
nameSets the name of the Cognitive Services instance.
skuSets the SKU of the instance. Defaults to Consumption.
enable_encryptionTurns on data lake encryption.

Example

open Farmer
open Farmer.Builders

let myLake = dataLake {
    name "myDataLake"
    sku DataLake.Commitment_100TB
    enable_encryption
}