Class HostTracker
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.Artifact
com.microsoft.graph.security.models.HostTracker
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class HostTracker
extends Artifact
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Host Tracker.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe First Seen Date Time.The Host.The Kind.The Last Seen Date Time.The Value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
firstSeenDateTime
@SerializedName(value="firstSeenDateTime", alternate="FirstSeenDateTime") @Expose @Nullable public OffsetDateTime firstSeenDateTimeThe First Seen Date Time. The first date and time when this hostTracker was observed by Microsoft Defender Threat Intelligence. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. -
kind
The Kind. The kind of hostTracker that was detected. For example, GoogleAnalyticsID or JarmHash. -
lastSeenDateTime
@SerializedName(value="lastSeenDateTime", alternate="LastSeenDateTime") @Expose @Nullable public OffsetDateTime lastSeenDateTimeThe Last Seen Date Time. The most recent date and time when this hostTracker was observed by Microsoft Defender Threat Intelligence. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. -
value
The Value. The identification value for the hostTracker. -
host
The Host. The host related to this hostTracker. When navigating to a hostTracker from a host, this should be assumed to be a return reference.
-
-
Constructor Details
-
HostTracker
public HostTracker()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classArtifact
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-