Skip to content

Commit

Permalink
Update to use case-insensitive comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangtin committed Nov 15, 2024
1 parent fdbcec4 commit 6a0ae1e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
"version": "KqlParameterItem/1.0",
"name": "HostpoolType",
"type": 1,
"query": "resources\r\n| where type == \"microsoft.desktopvirtualization/hostpools\" and resourceGroup == tolower(\"{ResourceGroup}\") and id == \"{HostPool}\"\r\n| project hostPoolType= properties.hostPoolType",
"query": "resources\r\n| where type == \"microsoft.desktopvirtualization/hostpools\" and resourceGroup =~ tolower(\"{ResourceGroup}\") and id =~ \"{HostPool}\"\r\n| project hostPoolType= properties.hostPoolType",
"crossComponentResources": [
"{HostPool}"
],
Expand Down Expand Up @@ -697,6 +697,10 @@
"columnId": "LastUpdateStatus",
"label": "Status changed"
},
{
"columnId": "AssignedUser",
"label": "Assigned user"
},
{
"columnId": "AllowNewSessions",
"label": "New sessions"
Expand Down

0 comments on commit 6a0ae1e

Please sign in to comment.