Module Values.HttpInstanceSummarySource

In a response to a DiscoverInstances request, HttpInstanceSummary contains information about one instance that matches the values that you specified in the request.

Sourcetype nonrec t = {
  1. instanceId : ResourceId.t option;
    (*

    The ID of an instance that matches the values that you specified in the request.

    *)
  2. namespaceName : NamespaceNameHttp.t option;
    (*

    The HttpName name of the namespace. It's found in the HttpProperties member of the Properties member of the namespace.

    *)
  3. serviceName : ServiceName.t option;
    (*

    The name of the service that you specified when you registered the instance.

    *)
  4. healthStatus : HealthStatus.t option;
    (*

    If you configured health checking in the service, the current health status of the service instance.

    *)
  5. attributes : Attributes.t option;
    (*

    If you included any attributes when you registered the instance, the values of those attributes.

    *)
}
Sourceval make : ?instanceId:??? -> ?namespaceName:??? -> ?serviceName:??? -> ?healthStatus:??? -> ?attributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of AttrKey.t ] * [> `String of AttrValue.t ]) list | `String of ResourceId.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