Module Values.NameserverSource

Name server includes the following elements.

Sourcetype nonrec t = {
  1. name : HostName.t;
    (*

    The fully qualified host name of the name server. Constraint: Maximum 255 characters

    *)
  2. glueIps : GlueIpList.t option;
    (*

    Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com. Constraints: The list can contain only one IPv4 and one IPv6 address.

    *)
}
Sourceval context_ : string
Sourceval make : ?glueIps:??? -> name:HostName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GlueIp.t ] list | `String of HostName.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