Bing Search

Overview

The Bing Search builder is used to create Azure Bing Search instances.

  • Bing Search (Microsoft.Bing/accounts, kind: Bing.Search.v7)

Builder Keywords

KeywordPurpose
nameSets the name of the Bing Search instance.
skuSets the SKU of the instance. Defaults to F1 (free).
statisticsSets the statisticsEnabled property of the instance. Defaults to false

Configuration Members

MemberPurpose
KeyGets the ARM expression path to the Key of this Bing Search instance.

Example

open Farmer
open Farmer.Builders

let tags = [ "a", "1"; "b", "2" ]
let translator = bingSearch {
    name "test"
    sku S0
    add_tags tags
    statistics Enabled
}

let key : ArmExpression = translator.Key