Package version:

Top level properties that describes current states of the patch resource

interface PatchProperties {
    createdAt?: Date;
    lastModifiedAt?: Date;
    patchApplyStatus?: string;
    patchDetails?: PatchDetails[];
    targetContainerAppId?: string;
    targetEnvironmentId?: string;
    targetRevisionId?: string;
}

Properties

createdAt?: Date

The UTC timestamp that describes when the patch object was created. NOTE: This property will not be serialized. It can only be populated by the server.

lastModifiedAt?: Date

The UTC timestamp that describes when the patch object was last updated. NOTE: This property will not be serialized. It can only be populated by the server.

patchApplyStatus?: string

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

patchDetails?: PatchDetails[]

Detailed info describes the patch operation for the target container app. NOTE: This property will not be serialized. It can only be populated by the server.

targetContainerAppId?: string

The Azure resource id of the target container app for the patch.

targetEnvironmentId?: string

The Azure resource id of the target environment for the patch.

targetRevisionId?: string

The Azure resource id of the target revision for the patch.