Module Values.SigningPlatformSource

Contains information about the signing configurations and parameters that are used to perform a code-signing job.

Sourcetype nonrec t = {
  1. platformId : String_.t option;
    (*

    The ID of a signing platform.

    *)
  2. displayName : String_.t option;
    (*

    The display name of a signing platform.

    *)
  3. partner : String_.t option;
    (*

    Any partner entities linked to a signing platform.

    *)
  4. target : String_.t option;
    (*

    The types of targets that can be signed by a signing platform.

    *)
  5. category : Category.t option;
    (*

    The category of a signing platform.

    *)
  6. signingConfiguration : SigningConfiguration.t option;
    (*

    The configuration of a signing platform. This includes the designated hash algorithm and encryption algorithm of a signing platform.

    *)
  7. signingImageFormat : SigningImageFormat.t option;
  8. maxSizeInMB : MaxSizeInMB.t option;
    (*

    The maximum size (in MB) of code that can be signed by a signing platform.

    *)
  9. revocationSupported : Bool_.t option;
    (*

    Indicates whether revocation is supported for the platform.

    *)
}
Sourceval make : ?platformId:??? -> ?displayName:??? -> ?partner:??? -> ?target:??? -> ?category:??? -> ?signingConfiguration:??? -> ?signingImageFormat:??? -> ?maxSizeInMB:??? -> ?revocationSupported:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Bool_.t | `Enum of string | `Integer of MaxSizeInMB.t | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list ]) list ]) 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