Package version:

The detailed info of patch operation performing when applying a patch.

interface PatchDetails {
    detectionStatus: string;
    lastDetectionTime: Date;
    newImageName?: string;
    newLayer?: PatchDetailsNewLayer;
    oldLayer?: PatchDetailsOldLayer;
    patchType?: string;
    targetContainerName: string;
    targetImage: string;
}

Properties

detectionStatus: string

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

lastDetectionTime: Date

The UTC timestamp that describes the latest detection was done. NOTE: This property will not be serialized. It can only be populated by the server.

newImageName?: string

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

New layer update details in the target image. NOTE: This property will not be serialized. It can only be populated by the server.

The old layer details in the target image. NOTE: This property will not be serialized. It can only be populated by the server.

patchType?: string

The type for the patch. NOTE: This property will not be serialized. It can only be populated by the server.

targetContainerName: string

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

targetImage: string

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