Module Values.IpAddressMemberSource

Provides information of the IP address.

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

    The IP address.

    *)
  2. primary : Boolean.t option;
    (*

    The primary IP address.

    *)
  3. allocationType : AllocationType.t option;
    (*

    The type of allocation for the IP address.

    *)
}
Sourceval make : ?ipAddress:??? -> ?primary:??? -> ?allocationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `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