Module Values.GetSigningPlatformResponseSource

Returns information on a specific signing platform.

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

    The ID of the target signing platform.

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

    The display name of the target signing platform.

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

    A list of partner entities that use the target signing platform.

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

    The validation template that is used by the target signing platform.

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

    The category type of the target signing platform.

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

    A list of configurations applied to the target platform at signing.

    *)
  7. signingImageFormat : SigningImageFormat.t option;
    (*

    The format of the target platform's signing image.

    *)
  8. maxSizeInMB : MaxSizeInMB.t option;
    (*

    The maximum size (in MB) of the payload that can be signed by the target platform.

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

    A flag indicating whether signatures generated for the signing platform can be revoked.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServiceErrorException of InternalServiceErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?platformId:??? -> ?displayName:??? -> ?partner:??? -> ?target:??? -> ?category:??? -> ?signingConfiguration:??? -> ?signingImageFormat:??? -> ?maxSizeInMB:??? -> ?revocationSupported:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of InternalServiceErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of InternalServiceErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Bool_.t | `Enum of string | `Integer of MaxSizeInMB.t | `String of PlatformId.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