Package version:

Interface PatchInstallationDetail

Information about a specific patch that was encountered during an installation action.

interface PatchInstallationDetail {
    classifications?: string[];
    installationState?: string;
    kbId?: string;
    name?: string;
    patchId?: string;
    version?: string;
}

Properties

classifications?: string[]

The classification(s) of the patch as provided by the patch publisher. NOTE: This property will not be serialized. It can only be populated by the server.

installationState?: string

The state of the patch after the installation operation completed. NOTE: This property will not be serialized. It can only be populated by the server.

kbId?: string

The KBID of the patch. Only applies to Windows patches. NOTE: This property will not be serialized. It can only be populated by the server.

name?: string

The friendly name of the patch. NOTE: This property will not be serialized. It can only be populated by the server.

patchId?: string

A unique identifier for the patch. NOTE: This property will not be serialized. It can only be populated by the server.

version?: string

The version string of the package. It may conform to Semantic Versioning. Only applies to Linux. NOTE: This property will not be serialized. It can only be populated by the server.