Module Values.AutonomousSystemSource

Contains information about the Autonomous System (AS) associated with the network endpoints involved in an attack sequence.

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

    Name associated with the Autonomous System (AS).

    *)
  2. number : Integer.t option;
    (*

    The unique number that identifies the Autonomous System (AS).

    *)
}
Sourceval make : ?name:??? -> ?number:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) 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