hass-core/homeassistant/components/input_select/services.yaml
Paulus Schoutsen b8cc547fa3
Move components to folders (#20774)
* Move all components into folders

* Move component tests into folders

* Fix init moving

* Move tests

* Lint

* Update coverage

* Fix service descriptions

* Update CODEOWNERS
2019-02-05 19:31:15 -08:00

22 lines
1 KiB
YAML

select_next:
description: Select the next options of an input select entity.
fields:
entity_id: {description: Entity id of the input select to select the next value
for., example: input_select.my_select}
select_option:
description: Select an option of an input select entity.
fields:
entity_id: {description: Entity id of the input select to select the value., example: input_select.my_select}
option: {description: Option to be selected., example: '"Item A"'}
select_previous:
description: Select the previous options of an input select entity.
fields:
entity_id: {description: Entity id of the input select to select the previous
value for., example: input_select.my_select}
set_options:
description: Set the options of an input select entity.
fields:
entity_id: {description: Entity id of the input select to set the new options
for., example: input_select.my_select}
options: {description: Options for the input select entity., example: '["Item
A", "Item B", "Item C"]'}