Values_0.PatchSourceRepresents metadata about a patch.
type nonrec t = {id : PatchId.t option;The ID of the patch. Applies to Windows patches only. This ID isn't the same as the Microsoft Knowledge Base ID.
*)releaseDate : DateTime.t option;The date the patch was released.
*)title : PatchTitle.t option;The title of the patch.
*)description : PatchDescription.t option;The description of the patch.
*)contentUrl : PatchContentUrl.t option;The URL where more information can be obtained about the patch.
*)vendor : PatchVendor.t option;The name of the vendor providing the patch.
*)productFamily : PatchProductFamily.t option;The product family the patch is applicable for. For example, Windows or Amazon Linux 2.
*)product : PatchProduct.t option;The specific product the patch is applicable for. For example, WindowsServer2016 or AmazonLinux2018.03.
*)classification : PatchClassification.t option;The classification of the patch. For example, SecurityUpdates, Updates, or CriticalUpdates.
*)msrcSeverity : PatchMsrcSeverity.t option;The severity of the patch, such as Critical, Important, or Moderate. Applies to Windows patches only.
*)kbNumber : PatchKbNumber.t option;The Microsoft Knowledge Base ID of the patch. Applies to Windows patches only.
*)msrcNumber : PatchMsrcNumber.t option;The ID of the Microsoft Security Response Center (MSRC) bulletin the patch is related to. For example, MS14-045. Applies to Windows patches only.
*)language : PatchLanguage.t option;The language of the patch if it's language-specific.
*)advisoryIds : PatchAdvisoryIdList.t option;The Advisory ID of the patch. For example, RHSA-2020:3779. Applies to Linux-based managed nodes only.
*)bugzillaIds : PatchBugzillaIdList.t option;The Bugzilla ID of the patch. For example, 1600646. Applies to Linux-based managed nodes only.
*)cVEIds : PatchCVEIdList.t option;The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example, CVE-2011-3192. Applies to Linux-based managed nodes only.
*)name : PatchName.t option;The name of the patch. Applies to Linux-based managed nodes only.
*)epoch : PatchEpoch.t option;The epoch of the patch. For example in pkg-example-EE-20180914-2.2.amzn1.noarch, the epoch value is 20180914-2. Applies to Linux-based managed nodes only.
*)version : PatchVersion.t option;The version number of the patch. For example, in example-pkg-1.710.10-2.7.abcd.x86_64, the version number is indicated by -1. Applies to Linux-based managed nodes only.
*)release : PatchRelease.t option;The particular release of a patch. For example, in pkg-example-EE-20180914-2.2.amzn1.noarch, the release is 2.amaz1. Applies to Linux-based managed nodes only.
*)arch : PatchArch.t option;The architecture of the patch. For example, in example-pkg-0.710.10-2.7.abcd.x86_64, the architecture is indicated by x86_64. Applies to Linux-based managed nodes only.
*)severity : PatchSeverity.t option;The severity level of the patch. For example, CRITICAL or MODERATE.
*)repository : PatchRepository.t option;The source patch repository for the operating system and version, such as trusty-security for Ubuntu Server 14.04 LTE and focal-security for Ubuntu Server 20.04 LTE. Applies to Linux-based managed nodes only.
*)}val make :
?id:??? ->
?releaseDate:??? ->
?title:??? ->
?description:??? ->
?contentUrl:??? ->
?vendor:??? ->
?productFamily:??? ->
?product:??? ->
?classification:??? ->
?msrcSeverity:??? ->
?kbNumber:??? ->
?msrcNumber:??? ->
?language:??? ->
?advisoryIds:??? ->
?bugzillaIds:??? ->
?cVEIds:??? ->
?name:??? ->
?epoch:??? ->
?version:??? ->
?release:??? ->
?arch:??? ->
?severity:??? ->
?repository:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of PatchEpoch.t
| `List of [> `String of PatchAdvisoryId.t ] list
| `String of PatchId.t
| `Timestamp of DateTime.t ])
list ]