Module Values.DakCertificateMetadataSource

The device attestation key (DAK) information.

Sourcetype nonrec t = {
  1. certificateId : DakCertificateId.t option;
    (*

    The certificate ID for the DAK.

    *)
  2. maxAllowedSignature : MaxAllowedSignature.t option;
    (*

    The maximum number of signatures that the DAK can sign. A value of -1 indicates that there's no device limit.

    *)
  3. factorySupport : FactorySupport.t option;
    (*

    Whether factory support has been enabled.

    *)
  4. apId : ApId.t option;
    (*

    The advertised product ID (APID) that's used for pre-production and production applications.

    *)
  5. deviceTypeId : DeviceTypeId.t option;
    (*

    The device type ID that's used for prototyping applications.

    *)
}
Sourceval make : ?certificateId:??? -> ?maxAllowedSignature:??? -> ?factorySupport:??? -> ?apId:??? -> ?deviceTypeId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of FactorySupport.t | `Integer of MaxAllowedSignature.t | `String of DakCertificateId.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