bag_has_key()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
檢查動態屬性包物件是否包含指定的索引鍵。
語法
bag_has_key(
包,
鍵)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
袋 | dynamic |
✔️ | 要搜尋的屬性包。 |
key | string |
✔️ | 要搜尋的索引鍵。 使用 JSONPath 表示法搜尋巢狀索引鍵。 不支援陣列索引編製。 |
傳回
True 或 false,視索引鍵是否存在於包中而定。
範例
datatable(input: dynamic)
[
dynamic({'key1' : 123, 'key2': 'abc'}),
dynamic({'key1' : 123, 'key3': 'abc'}),
]
| extend result = bag_has_key(input, 'key2')
輸出
input | result |
---|---|
{ “key1”: 123, “key2”: “abc” } |
true |
{ “key1”: 123, “key3”: “abc” } |
false |
使用 JSONPath 金鑰進行搜尋
datatable(input: dynamic)
[
dynamic({'key1': 123, 'key2': {'prop1' : 'abc', 'prop2': 'xyz'}, 'key3': [100, 200]}),
]
| extend result = bag_has_key(input, '$.key2.prop1')
輸出
input | result |
---|---|
{ “key1”: 123, “key2”: { “prop1”: “abc”, “prop2”: “xyz” }, “key3”: [ 100, 200 ] } |
true |