Module Values.NewGeolocationDetailSource

Details new geolocations used either at the resource or account level. For example, lists an observed geolocation that is an infrequent or unused location based on previous user activity.

Sourcetype nonrec t = {
  1. location : Location.t option;
    (*

    Location where the resource was accessed.

    *)
  2. ipAddress : IpAddress.t option;
    (*

    IP address using which the resource was accessed.

    *)
  3. isNewForEntireAccount : IsNewForEntireAccount.t option;
    (*

    Checks if the geolocation is new for the entire account.

    *)
}
Sourceval make : ?location:??? -> ?ipAddress:??? -> ?isNewForEntireAccount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsNewForEntireAccount.t | `String of Location.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