Class HostPort
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.HostPort
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Host Port.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Banners.The First Seen Date Time.The Host.The Last Scan Date Time.The Last Seen Date Time.The Most Recent Ssl Certificate.The Port.The Protocol.The Services.The Status.The Times Observed. -
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
-
banners
@SerializedName(value="banners", alternate="Banners") @Expose @Nullable public List<HostPortBanner> bannersThe Banners. The hostPortBanners retrieved from scanning the port. -
firstSeenDateTime
@SerializedName(value="firstSeenDateTime", alternate="FirstSeenDateTime") @Expose @Nullable public OffsetDateTime firstSeenDateTimeThe First Seen Date Time. The first date and time when Microsoft Defender Threat Intelligence observed the hostPort. 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. -
lastScanDateTime
@SerializedName(value="lastScanDateTime", alternate="LastScanDateTime") @Expose @Nullable public OffsetDateTime lastScanDateTimeThe Last Scan Date Time. The last date and time when Microsoft Defender Threat Intelligence scanned the hostPort. 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. -
lastSeenDateTime
@SerializedName(value="lastSeenDateTime", alternate="LastSeenDateTime") @Expose @Nullable public OffsetDateTime lastSeenDateTimeThe Last Seen Date Time. The last date and time when Microsoft Defender Threat Intelligence observed the hostPort. 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. -
port
The Port. The numerical identifier of the port which is standardized across the internet. -
protocol
@SerializedName(value="protocol", alternate="Protocol") @Expose @Nullable public HostPortProtocol protocolThe Protocol. The general protocol used to scan the port. The possible values are: tcp, udp, unknownFutureValue. -
services
@SerializedName(value="services", alternate="Services") @Expose @Nullable public List<HostPortComponent> servicesThe Services. The hostPortComponents retrieved from scanning the port. -
status
The Status. The status of the port. The possible values are: open, filtered, closed, unknownFutureValue. -
timesObserved
@SerializedName(value="timesObserved", alternate="TimesObserved") @Expose @Nullable public Integer timesObservedThe Times Observed. The total amount of times that Microsoft Defender Threat Intelligence has observed the hostPort in all its scans. -
host
The Host. The host related to this hostPort. This is a reverse navigation property. When you navigate to hostPorts from a host, assume that this is a return reference. -
mostRecentSslCertificate
@SerializedName(value="mostRecentSslCertificate", alternate="MostRecentSslCertificate") @Expose @Nullable public SslCertificate mostRecentSslCertificateThe Most Recent Ssl Certificate. The most recent sslCertificate used to communicate on the port.
-
-
Constructor Details
-
HostPort
public HostPort()
-
-
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 classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-