For those who follow. - Solution below.
I found the configuration file for the intergrations in config/.storage/core.config_entries.
The file had several Deconz entries that had the key “source”: “ignore”, it seems like the IP had been updated on of those but not in the actual Deconz entry that is used by HA.
I updated the IP on all entries and the Intergration came back to live after a HA restart.
I then deleted all the Deconz entries except one ( the one without ignore ).
After a Host reboot the Deconz integration updates the IP accordingly.
Happy camper again.
From: /config/.storage/core.config_entries
{
"data": {
"entries": [
...
{
"connection_class": "local_push",
"data": {},
"domain": "deconz",
"entry_id": "5526147b228741d9a79f750c169dd628",
"options": {},
"source": "ignore",
"system_options": {
"disable_new_entities": false
},
"title": "Ignored",
"unique_id": "000000000000",
"version": 1
},
{
"connection_class": "local_push",
"data": {
"api_key": "XXXXXXXXX",
"host": "172.30.33.6",
"port": 40850
},
"domain": "deconz",
"entry_id": "22020d2f536c457b909da9c473c142b6",
"options": {},
"source": "ignore",
"system_options": {
"disable_new_entities": false
},
"title": "Ignored",
"unique_id": "00212E05A3AC",
"version": 1
},
{
"connection_class": "local_push",
"data": {
"api_key": "XXXXXXXXX",
"host": "172.30.33.6",
"port": 40850
},
"domain": "deconz",
"entry_id": "c61966a2c7154a99b8978dda70b0aecd",
"options": {
"allow_clip_sensor": false,
"allow_deconz_groups": true,
"master": true
},
"source": "user",
"system_options": {
"disable_new_entities": false
},
"title": "00212E05A3AC",
"unique_id": "00212E05A3AC",
"version": 1
}
...
]
},
"key": "core.config_entries",
"version": 1
}
To: /config/.storage/core.config_entries
{
"data": {
"entries": [
...
{
"connection_class": "local_push",
"data": {
"api_key": "XXXXXXXXX",
"host": "172.30.33.6",
"port": 40850
},
"domain": "deconz",
"entry_id": "c61966a2c7154a99b8978dda70b0aecd",
"options": {
"allow_clip_sensor": false,
"allow_deconz_groups": true,
"master": true
},
"source": "user",
"system_options": {
"disable_new_entities": false
},
"title": "00212E05A3AC",
"unique_id": "00212E05A3AC",
"version": 1
}
...
]
},
"key": "core.config_entries",
"version": 1
}