How to change options in config of z-wave devices when using Integrations?

Hass.IO v.97.0
RPI4

Many of the configuration options I see are when people have installed entities via the method of entering them into the configuration.YAML file and then modifying options there, however all of my z-wave devices are done via the integrations page.

From what I can tell most of the information about integrations the configuration gets put under /config/.storage/core.entity_registry

I have a light that gets polled too quickly, and so even though it’s off, in the GUI it continues to show it’s on even though it’s actually off. I’ve seen online that this normally has to do with the polling_intensity.

I saw from the following link the did something similar:

zwave:
  usb_path: /dev/ttyACM0
  polling_interval: 30000
  device_config:
    switch.hallway_light_switch_2_0:      
      polling_intensity: 1

Here is the relevant config that is in that file core.entity_registry file. Is there anyway to add polling_intensity to those to get some further configuration options?

{
                "config_entry_id": "47f3f8f7319f4ab5810af1807d6c2bb4",
                "device_id": "e0ec2b6d3b684f19808d0fda6d9f403c",
                "disabled_by": null,
                "entity_id": "zwave.linear_nortek_security_control_llc_lb60z_1_dimmable_led_light_bulb",
                "name": null,
                "platform": "zwave",
                "unique_id": "node-5"
            },
            {
                "config_entry_id": "47f3f8f7319f4ab5810af1807d6c2bb4",
                "device_id": "e0ec2b6d3b684f19808d0fda6d9f403c",
                "disabled_by": null,
                "entity_id": "light.linear_nortek_security_control_llc_lb60z_1_dimmable_led_light_bulb_level",
                "name": "Nightstand",
                "platform": "zwave",
                "unique_id": "5-72057594126630913"
            },

Someone sent me a message and said to simply go to:

Configuration > Zwave > Node Management

From there I was able to change the polling intensity level and now the light and the group properly turns off. Fantastic. Love this software.