hostComponent resource type

Namespace: microsoft.graph.security

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Note

The Microsoft Graph API for Microsoft Defender Threat Intelligence requires an active Defender Threat Intelligence Portal license and API add-on license for the tenant.

Represents a web component that provides details about a web page or server infrastructure gleaned from a web crawl or scan. This information can be used to detect bad actors or sites that are compromised. It can also help users understand whether a site is vulnerable to a specific attack or compromise.

A host component is associated with a host resource.

Inherits from artifact.

Methods

Method Return type Description
Get hostComponent microsoft.graph.security.hostComponent Read the properties and relationships of a microsoft.graph.security.hostComponent object.

Properties

Property Type Description
category String The type of component that was detected (for example, Operating System, Framework, Remote Access, or Server).
firstSeenDateTime DateTimeOffset The first date and time when this web component was observed by Microsoft Defender Threat Intelligence. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
id String A system-generated ID for this hostComponent. Inherited from microsoft.graph.security.artifact.
lastSeenDateTime DateTimeOffset The most recent date and time when this web component was observed by Microsoft Defender Threat Intelligence. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
name String A name running on the artifact, for example, Microsoft IIS.
version String The component version running on the artifact, for example, v8.5. This shouldn't be assumed to be strictly numerical.

Relationships

Relationship Type Description
host microsoft.graph.security.host The host related to this component. This is a reverse navigation property. When you navigate to components from a host, this should be assumed to be a return reference.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.hostComponent",
  "category": "String",
  "firstSeenDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "lastSeenDateTime": "String (timestamp)",
  "name": "String",
  "version": "String"
}