Module Values.RemoveIpRoutesRequestSource

Removes IP address blocks from a directory.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t;
    (*

    Identifier (ID) of the directory from which you want to remove the IP addresses.

    *)
  2. cidrIps : CidrIps.t option;
    (*

    IP address blocks that you want to remove.

    *)
  3. cidrIpv6s : CidrIpv6s.t option;
    (*

    IPv6 address blocks that you want to remove.

    *)
}
Sourceval context_ : string
Sourceval make : ?cidrIps:??? -> ?cidrIpv6s:??? -> directoryId:DirectoryId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CidrIp.t ] list | `String of DirectoryId.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