Module Values.EndpointSource

An endpoint available for interaction with the scheduler.

Sourcetype nonrec t = {
  1. type_ : EndpointType.t option;
    (*

    Indicates the type of endpoint running at the specific IP address.

    *)
  2. privateIpAddress : String_.t option;
    (*

    For clusters that use IPv4, this is the endpoint's private IP address. Example: 10.1.2.3 For clusters configured to use IPv6, this is an empty string.

    *)
  3. publicIpAddress : String_.t option;
    (*

    The endpoint's public IP address. Example: 192.0.2.1

    *)
  4. ipv6Address : String_.t option;
    (*

    The endpoint's IPv6 address. Example: 2001:db8::1

    *)
  5. port : String_.t option;
    (*

    The endpoint's connection port number. Example: 1234

    *)
}
Sourceval make : ?type_:??? -> ?privateIpAddress:??? -> ?publicIpAddress:??? -> ?ipv6Address:??? -> ?port:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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