Module Values.NetworkEndpointSource

Contains information about network endpoints that were observed in the attack sequence.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The ID of the network endpoint.

    *)
  2. ip : String_.t option;
    (*

    The IP address associated with the network endpoint.

    *)
  3. domain : String_.t option;
    (*

    The domain information for the network endpoint.

    *)
  4. port : Integer.t option;
    (*

    The port number associated with the network endpoint.

    *)
  5. location : NetworkGeoLocation.t option;
    (*

    Information about the location of the network endpoint.

    *)
  6. autonomousSystem : AutonomousSystem.t option;
    (*

    The Autonomous System (AS) of the network endpoint.

    *)
  7. connection : NetworkConnection.t option;
    (*

    Information about the network connection.

    *)
}
Sourceval make : ?id:??? -> ?ip:??? -> ?domain:??? -> ?port:??? -> ?location:??? -> ?autonomousSystem:??? -> ?connection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of Integer.t | `String of String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t