Module Values_1.PublicIpv4PoolRangeSource

Describes an address range of an IPv4 address pool.

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

    The first IP address in the range.

    *)
  2. lastAddress : Values_0.String_.t option;
    (*

    The last IP address in the range.

    *)
  3. addressCount : Values_0.Integer.t option;
    (*

    The number of addresses in the range.

    *)
  4. availableAddressCount : Values_0.Integer.t option;
    (*

    The number of available addresses in the range.

    *)
}
Sourceval make : ?firstAddress:??? -> ?lastAddress:??? -> ?addressCount:??? -> ?availableAddressCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.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