Skip to content

Commit ec3b4dc

Browse files
committed
Made queries case insensitive
1 parent 2b9cbe7 commit ec3b4dc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

azure-resources/Oracledatabase/cloudexadatainfrastructures/kql/c99d730b-8754-447f-bd5d-3e8850a12235.kql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
// This resource graph query will return rows if Oracle Database@Azure Infrastructure Lifestyle state is not Available
33
resources
44
| where type == "oracle.database/cloudexadatainfrastructures"
5-
| where properties.lifecycleState != "Available"
5+
| where properties.lifecycleState !~ "Available"
66
| project recommendationId = "c99d730b-8754-447f-bd5d-3e8850a12235",id=tostring(id),name,tags, param1 = "ODAAInfraAvail: False"

azure-resources/Oracledatabase/cloudexadatavmclusters/kql/4b33324a-70cd-4bac-bdae-da4c382c436b.kql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
// This resource graph query will return rows if Oracle Database@Azure Cluster Lifestyle state is not Available
33
resources
44
| where type == "oracle.database/cloudvmclusters"
5-
| where properties.lifecycleState != "Available"
5+
| where properties.lifecycleState !~ "Available"
66
| project recommendationId = "4b33324a-70cd-4bac-bdae-da4c382c436b",id=tostring(id),name,tags, param1 = "ODAAInfraNotAvail: False"

azure-specialized-workloads/oracle/kql/02bfe908-d958-451a-a603-bef8277ae56a.kql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
// This resource graph query will return rows if Oracle Database@Azure Infrastructure Maintenance is not Rolling
33
resources
44
| where type == "oracle.database/cloudexadatainfrastructures"
5-
| where properties.maintenanceWindow.patchingMode != "Rolling"
5+
| where properties.maintenanceWindow.patchingMode !~ "Rolling"
66
| project recommendationId = "02bfe908-d958-451a-a603-bef8277ae56a",id=tostring(id),name,tags, param1 = "ODAAInfraMaintRolling: False"

0 commit comments

Comments
 (0)