diff --git a/source/_docs/blueprint/selectors.markdown b/source/_docs/blueprint/selectors.markdown index 7698fb824a7..3617d84d3be 100644 --- a/source/_docs/blueprint/selectors.markdown +++ b/source/_docs/blueprint/selectors.markdown @@ -18,27 +18,33 @@ The following selectors are currently available: - [Action selector](#action-selector) - [Add-on selector](#add-on-selector) - [Area selector](#area-selector) + - [Example area selectors](#example-area-selectors) - [Attribute selector](#attribute-selector) - [Assist pipeline selector](#assist-pipeline-selector) +- [Backup location selector](#backup-location-selector) - [Boolean selector](#boolean-selector) - [Color temperature selector](#color-temperature-selector) - [Config entry selector](#config-entry-selector) - [Constant selector](#constant-selector) - [Date selector](#date-selector) -- [Date & time selector](#date--time-selector) +- [Date \& time selector](#date--time-selector) - [Device selector](#device-selector) + - [Example device selector](#example-device-selector) - [Duration selector](#duration-selector) - [Entity selector](#entity-selector) + - [Example entity selector](#example-entity-selector) - [Icon selector](#icon-selector) - [Language selector](#language-selector) - [Location selector](#location-selector) - [Media selector](#media-selector) - [Number selector](#number-selector) + - [Example number selectors](#example-number-selectors) - [Object selector](#object-selector) - [RGB color selector](#rgb-color-selector) - [Select selector](#select-selector) - [State selector](#state-selector) - [Target selector](#target-selector) + - [Example target selectors](#example-target-selectors) - [Template selector](#template-selector) - [Text selector](#text-selector) - [Theme selector](#theme-selector) @@ -259,6 +265,21 @@ This selector does not have any other options; therefore, it only has its key. assist_pipeline: ``` +## Backup location selector + +This can only be used on an installation with a Supervisor (Operating System or +Supervised). For installations of type Home Assistant Core or Container, an error +will be displayed. + +The backup location selector shows a list of places a backup could go, depending +on what you have configured in [storage](https://my.home-assistant.io/redirect/storage/). + +![Screenshot of an assist pipeline selector](/images/blueprints/selector-backup-location.png) + +The output of this selector is the name of the selected network storage. It may +also be the value `/backup`, if the user chooses to use the local data disk option +instead of one of the configured network storage locations. + ## Boolean selector The boolean selector shows a toggle that allows the user to turn on or off diff --git a/source/_integrations/hassio.markdown b/source/_integrations/hassio.markdown index f863115f5e9..d19232fbdf1 100644 --- a/source/_integrations/hassio.markdown +++ b/source/_integrations/hassio.markdown @@ -144,6 +144,7 @@ Create a full backup. | `name` | yes | Name of the backup file. Default is current date and time | `password` | yes | Optional password for backup | `compressed` | yes | `false` to create uncompressed backups +| `location` | yes | Alternate backup location instead of using the default location for backups ### Service hassio.backup_partial @@ -156,6 +157,7 @@ Create a partial backup. | `name` | yes | Name of the backup file. Default is current date and time | `password` | yes | Optional password for backup | `compressed` | yes | `false` to create uncompressed backups +| `location` | yes | Alternate backup location instead of using the default location for backups ### Service hassio.restore_full diff --git a/source/images/blueprints/selector-backup-location.png b/source/images/blueprints/selector-backup-location.png new file mode 100644 index 00000000000..b9c015f0c25 Binary files /dev/null and b/source/images/blueprints/selector-backup-location.png differ