mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
🚜 Merges/Redirect UpCloud component pages (#8742)
This commit is contained in:
parent
b090c57b0c
commit
f567e77a0d
@ -1,36 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: UpCloud Binary Sensor
|
|
||||||
description: Instructions on how to set up UpCloud binary sensors within Home Assistant.
|
|
||||||
date: 2018-01-28 20:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: upcloud.png
|
|
||||||
ha_release: 0.65
|
|
||||||
ha_iot_class: Cloud Polling
|
|
||||||
---
|
|
||||||
|
|
||||||
The `upcloud` binary sensor platform allows you to monitor your UpCloud servers.
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
To use your UpCloud servers, you first have to set up your [UpCloud hub](/components/upcloud/) and then add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
binary_sensor:
|
|
||||||
- platform: upcloud
|
|
||||||
servers:
|
|
||||||
- 002167b7-4cb1-44b7-869f-e0900ddeeae1
|
|
||||||
- 00886296-6137-4074-afe3-068e16d89d00
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
servers:
|
|
||||||
description: List of servers you want to monitor.
|
|
||||||
required: true
|
|
||||||
type: list
|
|
||||||
{% endconfiguration %}
|
|
@ -1,36 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: UpCloud Switch
|
|
||||||
description: Instructions on how to set up UpCloud switches within Home Assistant.
|
|
||||||
date: 2018-01-28 20:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: upcloud.png
|
|
||||||
ha_category: System Monitor
|
|
||||||
ha_release: 0.65
|
|
||||||
ha_iot_class: Cloud Polling
|
|
||||||
---
|
|
||||||
|
|
||||||
The `upcloud` switch platform allows you to control (start/stop) your UpCloud servers.
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
To use your UpCloud servers, you first have to set up your [UpCloud hub](/components/upcloud/) and then add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
switch:
|
|
||||||
- platform: upcloud
|
|
||||||
servers:
|
|
||||||
- 002167b7-4cb1-44b7-869f-e0900ddeeae1
|
|
||||||
- 00886296-6137-4074-afe3-068e16d89d00
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
servers:
|
|
||||||
description: List of servers you want to control.
|
|
||||||
required: true
|
|
||||||
type: list
|
|
||||||
{% endconfiguration %}
|
|
@ -7,14 +7,25 @@ sidebar: true
|
|||||||
comments: false
|
comments: false
|
||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
ha_category: System Monitor
|
ha_category:
|
||||||
|
- System Monitor
|
||||||
|
- Binary Sensor
|
||||||
|
- Switch
|
||||||
ha_release: 0.65
|
ha_release: 0.65
|
||||||
logo: upcloud.png
|
logo: upcloud.png
|
||||||
ha_iot_class: Cloud Polling
|
ha_iot_class: Cloud Polling
|
||||||
|
redirect_from:
|
||||||
|
- /components/binary_sensor.upcloud/
|
||||||
|
- /components/switch.upcloud/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `upcloud` component allows you to access the information about your [UpCloud](https://www.upcloud.com/) servers from Home Assistant.
|
The `upcloud` component allows you to access the information about your [UpCloud](https://www.upcloud.com/) servers from Home Assistant.
|
||||||
|
|
||||||
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
- [Binary Sensor](#binary-sensor)
|
||||||
|
- [Switch](#switch)
|
||||||
|
|
||||||
## {% linkable_title Setup %}
|
## {% linkable_title Setup %}
|
||||||
|
|
||||||
Set up your API user credentials in your [UpCloud control panel](https://my.upcloud.com/).
|
Set up your API user credentials in your [UpCloud control panel](https://my.upcloud.com/).
|
||||||
@ -45,3 +56,47 @@ scan_interval:
|
|||||||
type: integer
|
type: integer
|
||||||
default: 60
|
default: 60
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Binary Sensor %}
|
||||||
|
|
||||||
|
The `upcloud` binary sensor platform allows you to monitor your UpCloud servers.
|
||||||
|
|
||||||
|
To use your UpCloud servers, you first have to set up your [UpCloud hub](#configuration) and then add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
binary_sensor:
|
||||||
|
- platform: upcloud
|
||||||
|
servers:
|
||||||
|
- 002167b7-4cb1-44b7-869f-e0900ddeeae1
|
||||||
|
- 00886296-6137-4074-afe3-068e16d89d00
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
servers:
|
||||||
|
description: List of servers you want to monitor.
|
||||||
|
required: true
|
||||||
|
type: list
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Switch %}
|
||||||
|
|
||||||
|
The `upcloud` switch platform allows you to control (start/stop) your UpCloud servers.
|
||||||
|
|
||||||
|
To use your UpCloud servers, you first have to set up your [UpCloud hub](#configuration) and then add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
switch:
|
||||||
|
- platform: upcloud
|
||||||
|
servers:
|
||||||
|
- 002167b7-4cb1-44b7-869f-e0900ddeeae1
|
||||||
|
- 00886296-6137-4074-afe3-068e16d89d00
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
servers:
|
||||||
|
description: List of servers you want to control.
|
||||||
|
required: true
|
||||||
|
type: list
|
||||||
|
{% endconfiguration %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user