Skip to content

Commit

Permalink
Merge pull request #9037 from Azure/v-sabiraj-insiderriskmanagement
Browse files Browse the repository at this point in the history
   Required items, please complete

   Change(s):
   - Diana and Manny created a custom table for DeviceInfo

   Reason for Change(s):
   - To prevent merging problems from another PR which calls DeviceInfo in a detection query

   Version Updated:
   - No

   Testing Completed:
   - No

   Checked that the validations are passing and have addressed any issues that are present:
   - No
  • Loading branch information
mmelndezlujn committed Nov 8, 2023
1 parent aabbea1 commit 1cc12db
Showing 1 changed file with 141 additions and 0 deletions.
141 changes: 141 additions & 0 deletions .script/tests/KqlvalidationsTests/CustomTables/DeviceInfo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
{
"Name":"DeviceInfo",
"Properties":[
{
"Name": "Timestamp",
"Type": "datetime"
},
{
"Name": "DeviceId",
"Type": "string"
},
{
"Name": "DeviceName",
"Type": "string"
},
{
"Name": "ClientVersion",
"Type": "string"
},
{
"Name": "PublicIP",
"Type": "string"
},
{
"Name": "OSArchitecture",
"Type": "string"
},
{
"Name": "OSPlatform",
"Type": "string"
},
{
"Name": "OSBuild",
"Type": "string"
},
{
"Name": "IsAzureADJoined",
"Type": "bool"
},
{
"Name": "AadDeviceId",
"Type": "string"
},
{
"Name": "LoggedOnUsers",
"Type": "string"
},
{
"Name": "RegistryDeviceTag",
"Type": "string"
},
{
"Name": "OSVersion",
"Type": "string"
},
{
"Name": "MachineGroup",
"Type": "string"
},
{
"Name": "ReportId",
"Type": "string"
},
{
"Name": "OnboardingStatus",
"Type": "string"
},
{
"Name": "AdditionalFields",
"Type": "string"
},
{
"Name": "DeviceCategory",
"Type": "string"
},
{
"Name": "DeviceType",
"Type": "string"
},
{
"Name": "DeviceSubtype",
"Type": "string"
},
{
"Name": "Model",
"Type": "string"
},
{
"Name": "Vendor",
"Type": "string"
},
{
"Name": "OSDistribution",
"Type": "string"
},
{
"Name": "OSVersionInfo",
"Type": "string"
},
{
"Name": "MergedDeviceIds",
"Type": "string"
},
{
"Name": "MergedToDeviceId",
"Type": "string"
},
{
"Name": "SensorHealthState",
"Type": "string"
},
{
"Name": "IsExcluded",
"Type": "bool"
},
{
"Name": "ExclusionReason",
"Type": "string"
},
{
"Name": "AssetValue",
"Type": "string"
},
{
"Name": "ExposureLevel",
"Type": "string"
},
{
"Name": "IsInternetFacing",
"Type": "bool"
},
{
"Name": "DeviceManualTags",
"Type": "string"
},
{
"Name": "DeviceDynamicTags",
"Type": "string"
}
]
}

0 comments on commit 1cc12db

Please sign in to comment.