Module Values.SourcePropertiesSource

Properties of the Source Server machine.

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

    The date and time the Source Properties were last updated on.

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

    The recommended EC2 instance type that will be used when recovering the Source Server.

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

    Hints used to uniquely identify a machine.

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

    An array of network interfaces.

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

    An array of disks.

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

    An array of CPUs.

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

    The amount of RAM in bytes.

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

    Operating system.

    *)
  9. supportsNitroInstances : Boolean.t option;
    (*

    Are EC2 nitro instance types supported when recovering the Source Server.

    *)
}
Sourceval make : ?lastUpdatedDateTime:??? -> ?recommendedInstanceType:??? -> ?identificationHints:??? -> ?networkInterfaces:??? -> ?disks:??? -> ?cpus:??? -> ?ramBytes:??? -> ?os:??? -> ?supportsNitroInstances:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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