Files
ha-core/homeassistant/components/input_select/services.yaml
Franck Nijhof 39336d3ea3 Add prettier (in pre-commit and CI) (#33693)
* Add prettier (in pre-commit and CI)

* Make all file prettier

* Change order

* Add to Azure Pipelines

* Fix a YAML file prettier caught as invalid

* Remove flow mapping using curly braces from all YAML service files
2020-04-05 17:27:16 +02:00

33 lines
1.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"]'
reload:
description: Reload the input_select configuration.