Module Values_1.EndpointMetadataSource

The metadata of the endpoint.

Sourcetype nonrec t = {
  1. endpointName : Values_0.EndpointName.t option;
    (*

    The name of the endpoint.

    *)
  2. endpointConfigName : Values_0.EndpointConfigName.t option;
    (*

    The name of the endpoint configuration.

    *)
  3. endpointStatus : EndpointStatus.t option;
    (*

    The status of the endpoint. For possible values of the status of an endpoint, see EndpointSummary.

    *)
  4. failureReason : Values_0.FailureReason.t option;
    (*

    If the status of the endpoint is Failed, or the status is InService but update operation fails, this provides the reason why it failed.

    *)
}
Sourceval make : ?endpointName:??? -> ?endpointConfigName:??? -> ?endpointStatus:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.EndpointName.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