Class PassiveDnsRecord
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.Artifact
com.microsoft.graph.security.models.PassiveDnsRecord
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class PassiveDnsRecord
extends Artifact
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Passive Dns Record.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Artifact.The Collected Date Time.The First Seen Date Time.The Last Seen Date Time.The Parent Host.The Record Type. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
collectedDateTime
@SerializedName(value="collectedDateTime", alternate="CollectedDateTime") @Expose @Nullable public OffsetDateTime collectedDateTimeThe Collected Date Time. The date and time that this passiveDnsRecord entry was collected by Microsoft. 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. -
firstSeenDateTime
@SerializedName(value="firstSeenDateTime", alternate="FirstSeenDateTime") @Expose @Nullable public OffsetDateTime firstSeenDateTimeThe First Seen Date Time. The date and time when this passiveDnsRecord entry was first seen. 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. -
lastSeenDateTime
@SerializedName(value="lastSeenDateTime", alternate="LastSeenDateTime") @Expose @Nullable public OffsetDateTime lastSeenDateTimeThe Last Seen Date Time. The date and time when this passiveDnsRecord entry was most recently seen. 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. -
recordType
@SerializedName(value="recordType", alternate="RecordType") @Expose @Nullable public String recordTypeThe Record Type. The DNS record type for this passiveDnsRecord entry. -
artifact
The Artifact. The artifact related to this passiveDnsRecord entry. -
parentHost
@SerializedName(value="parentHost", alternate="ParentHost") @Expose @Nullable public Host parentHostThe Parent Host. The parent host related to this passiveDnsRecord entry. Generally, this is the value that you can search to discover this passiveDnsRecord value.
-
-
Constructor Details
-
PassiveDnsRecord
public PassiveDnsRecord()
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classArtifact- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-