Module Values_0.FpgaDeviceInfoSource

Describes the FPGA accelerator for the instance type.

Sourcetype nonrec t = {
  1. name : FpgaDeviceName.t option;
    (*

    The name of the FPGA accelerator.

    *)
  2. manufacturer : FpgaDeviceManufacturerName.t option;
    (*

    The manufacturer of the FPGA accelerator.

    *)
  3. count : FpgaDeviceCount.t option;
    (*

    The count of FPGA accelerators for the instance type.

    *)
  4. memoryInfo : FpgaDeviceMemoryInfo.t option;
    (*

    Describes the memory for the FPGA accelerator for the instance type.

    *)
}
Sourceval make : ?name:??? -> ?manufacturer:??? -> ?count:??? -> ?memoryInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of FpgaDeviceCount.t | `String of FpgaDeviceName.t | `Structure of (string * [> `Integer of FpgaDeviceMemorySize.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