Module Values.SourcePropertiesSource

Source server properties.

Sourcetype nonrec t = {
  1. lastUpdatedDateTime : ISO8601DatetimeString.t option;
    (*

    Source server last update date and time.

    *)
  2. recommendedInstanceType : EC2InstanceType.t option;
    (*

    Source server recommended instance type.

    *)
  3. identificationHints : IdentificationHints.t option;
    (*

    Source server identification hints.

    *)
  4. networkInterfaces : NetworkInterfaces.t option;
    (*

    Source server network interfaces.

    *)
  5. disks : Disks.t option;
    (*

    Source Server disks.

    *)
  6. cpus : Cpus.t option;
    (*

    Source Server CPUs.

    *)
  7. ramBytes : PositiveInteger.t option;
    (*

    Source server RAM in bytes.

    *)
  8. os : OS.t option;
    (*

    Source server OS.

    *)
}
Sourceval make : ?lastUpdatedDateTime:??? -> ?recommendedInstanceType:??? -> ?identificationHints:??? -> ?networkInterfaces:??? -> ?disks:??? -> ?cpus:??? -> ?ramBytes:??? -> ?os:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of BoundedString.t ] list | `Long of PositiveInteger.t | `String of BoundedString.t ]) list ] list | `Long of PositiveInteger.t | `String of ISO8601DatetimeString.t | `Structure of (string * [> `String of BoundedString.t ]) list ]) 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