diff --git a/docs/core/entity/update.md b/docs/core/entity/update.md index 7a2dd31b..8c21859b 100644 --- a/docs/core/entity/update.md +++ b/docs/core/entity/update.md @@ -41,6 +41,7 @@ Other properties that are common to all entities such as `device_class`, `entity | 'UpdateEntityFeature.PROGRESS' | This integration is able to provide progress information. If omitted, Home Assistant will try to provide a progress status; although it is better if the progress can be extracted from the device or service API. | 'UpdateEntityFeature.SPECIFIC_VERSION' | A specific version of an update can be installed using the `update.install` service. | 'UpdateEntityFeature.RELEASE_NOTES' | The entity provides methods to fetch a complete changelog. +| 'UpdateEntityFeature.AUTO_UPDATE' | The device or service that the entity represent have auto update logic, when this is set you can not skip updates. ## Methods @@ -49,10 +50,10 @@ Other properties that are common to all entities such as `device_class`, `entity This method can be implemented so users can install an offered update directly from within Home Assistant. -This method requires `SUPPORT_INSTALL` to be set. Additionally, if this +This method requires `UpdateEntityFeature.INSTALL` to be set. Additionally, if this integration supports installing specific version or is capable of backing up -before starting the update installation process, `SUPPORT_SPECIFIC_VERSION` and -`SUPPORT_BACKUP` can be set respectively. +before starting the update installation process, `UpdateEntityFeature.SPECIFIC_VERSION` and +`UpdateEntityFeature.BACKUP` can be set respectively. ```python class MyUpdate(UpdateEntity):