Module Values_0.BaselineOverrideSource

Defines the basic information about a patch baseline override.

Sourcetype nonrec t = {
  1. operatingSystem : OperatingSystem.t option;
    (*

    The operating system rule used by the patch baseline override.

    *)
  2. globalFilters : PatchFilterGroup.t option;
  3. approvalRules : PatchRuleGroup.t option;
  4. approvedPatches : PatchIdList.t option;
    (*

    A list of explicitly approved patches for the baseline. For information about accepted formats for lists of approved patches and rejected patches, see Package name formats for approved and rejected patch lists in the Amazon Web Services Systems Manager User Guide.

    *)
  5. approvedPatchesComplianceLevel : PatchComplianceLevel.t option;
    (*

    Defines the compliance level for approved patches. When an approved patch is reported as missing, this value describes the severity of the compliance violation.

    *)
  6. rejectedPatches : PatchIdList.t option;
    (*

    A list of explicitly rejected patches for the baseline. For information about accepted formats for lists of approved patches and rejected patches, see Package name formats for approved and rejected patch lists in the Amazon Web Services Systems Manager User Guide.

    *)
  7. rejectedPatchesAction : PatchAction.t option;
    (*

    The action for Patch Manager to take on patches included in the RejectedPackages list. A patch can be allowed only if it is a dependency of another package, or blocked entirely along with packages that include it as a dependency.

    *)
  8. approvedPatchesEnableNonSecurity : Boolean.t option;
    (*

    Indicates whether the list of approved patches includes non-security updates that should be applied to the managed nodes. The default value is false. Applies to Linux managed nodes only.

    *)
  9. sources : PatchSourceList.t option;
    (*

    Information about the patches to use to update the managed nodes, including target operating systems and source repositories. Applies to Linux managed nodes only.

    *)
  10. availableSecurityUpdatesComplianceStatus : PatchComplianceStatus.t option;
    (*

    Indicates whether managed nodes for which there are available security-related patches that have not been approved by the baseline are being defined as COMPLIANT or NON_COMPLIANT. This option is specified when the CreatePatchBaseline or UpdatePatchBaseline commands are run. Applies to Windows Server managed nodes only.

    *)
}
Sourceval make : ?operatingSystem:??? -> ?globalFilters:??? -> ?approvalRules:??? -> ?approvedPatches:??? -> ?approvedPatchesComplianceLevel:??? -> ?rejectedPatches:??? -> ?rejectedPatchesAction:??? -> ?approvedPatchesEnableNonSecurity:??? -> ?sources:??? -> ?availableSecurityUpdatesComplianceStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of PatchId.t | `Structure of (string * [> `List of [> `String of PatchSourceProduct.t ] list | `String of PatchSourceName.t ]) list ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of ApproveAfterDays.t | `List of [> `String of PatchFilterValue.t ] list | `String of PatchStringDateTime.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of PatchFilterValue.t ] list ]) list ] list ]) list ]) 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