Module Values.AdapterVersionOverviewSource

Summary info for an adapter version. Contains information on the AdapterId, AdapterVersion, CreationTime, FeatureTypes, and Status.

Sourcetype nonrec t = {
  1. adapterId : AdapterId.t option;
    (*

    A unique identifier for the adapter associated with a given adapter version.

    *)
  2. adapterVersion : AdapterVersion.t option;
    (*

    An identified for a given adapter version.

    *)
  3. creationTime : DateTime.t option;
    (*

    The date and time that a given adapter version was created.

    *)
  4. featureTypes : FeatureTypes.t option;
    (*

    The feature types that the adapter version is operating on.

    *)
  5. status : AdapterVersionStatus.t option;
    (*

    Contains information on the status of a given adapter version.

    *)
  6. statusMessage : AdapterVersionStatusMessage.t option;
    (*

    A message explaining the status of a given adapter vesion.

    *)
}
Sourceval make : ?adapterId:??? -> ?adapterVersion:??? -> ?creationTime:??? -> ?featureTypes:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of AdapterId.t | `Timestamp of DateTime.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