Module Values.DnsServiceDiscoverySource

An object that represents the DNS service discovery information for your virtual node.

Sourcetype nonrec t = {
  1. hostname : Hostname.t;
    (*

    Specifies the DNS service discovery hostname for the virtual node.

    *)
  2. ipPreference : IpPreference.t option;
    (*

    The preferred IP version that this virtual node uses. Setting the IP preference on the virtual node only overrides the IP preference set for the mesh on this specific node.

    *)
  3. responseType : DnsResponseType.t option;
    (*

    Specifies the DNS response type for the virtual node.

    *)
}
Sourceval context_ : string
Sourceval make : ?ipPreference:??? -> ?responseType:??? -> hostname:Hostname.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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