Module Values.IpAddressDetailsSource

Provides information about the IP address of the device that an entity used to perform an action on an affected resource.

Sourcetype nonrec t = {
  1. ipAddressV4 : string option;
    (*

    The Internet Protocol version 4 (IPv4) address of the device.

    *)
  2. ipCity : IpCity.t option;
    (*

    The city that the IP address originated from.

    *)
  3. ipCountry : IpCountry.t option;
    (*

    The country that the IP address originated from.

    *)
  4. ipGeoLocation : IpGeoLocation.t option;
    (*

    The geographic coordinates of the location that the IP address originated from.

    *)
  5. ipOwner : IpOwner.t option;
    (*

    The registered owner of the IP address.

    *)
}
Sourceval make : ?ipAddressV4:??? -> ?ipCity:??? -> ?ipCountry:??? -> ?ipGeoLocation:??? -> ?ipOwner:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Double of float | `String of string ]) 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