hass-core/homeassistant/components/input_boolean/services.yaml
Alexei Chetroi dc911ecc5b Add input_boolean reload service (#29379)
* Add input_boolean reload service.

* Add reload test.

* Address comments.

Register reload service as an admin service
Setup platform even if there're no entities
2019-12-05 20:31:18 -08:00

15 lines
579 B
YAML

toggle:
description: Toggles an input boolean.
fields:
entity_id: {description: Entity id of the input boolean to toggle., example: input_boolean.notify_alerts}
turn_off:
description: Turns off an input boolean
fields:
entity_id: {description: Entity id of the input boolean to turn off., example: input_boolean.notify_alerts}
turn_on:
description: Turns on an input boolean.
fields:
entity_id: {description: Entity id of the input boolean to turn on., example: input_boolean.notify_alerts}
reload:
description: Reload the input_boolean configuration.