mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 16:27:19 +00:00
🚜 Merges/Redirect Linode component pages (#8635)
This commit is contained in:
parent
3cf5eeb3db
commit
cbb2352d58
@ -1,35 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Linode Binary Sensor"
|
|
||||||
description: "Instructions on how to set up Linode binary sensors within Home Assistant."
|
|
||||||
date: 2017-10-20 08:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: linode.png
|
|
||||||
ha_release: 0.57
|
|
||||||
ha_iot_class: "Cloud Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `linode` binary sensor platform allows you to monitor your Linode nodes.
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
Add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
binary_sensor:
|
|
||||||
- platform: linode
|
|
||||||
nodes:
|
|
||||||
- 'myvpsname'
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
nodes:
|
|
||||||
description: List of VPSs you want to control.
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
{% endconfiguration %}
|
|
@ -7,23 +7,34 @@ 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
|
||||||
logo: linode.png
|
logo: linode.png
|
||||||
ha_release: 0.57
|
ha_release: 0.57
|
||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Polling"
|
||||||
|
redirect_from:
|
||||||
|
- /components/binary_sensor.linode/
|
||||||
|
- /components/switch.linode/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `linode` component allows you to access the information about your [Linode](https://linode.com) systems from Home Assistant.
|
The `linode` component allows you to access the information about your [Linode](https://linode.com) systems 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 %}
|
||||||
|
|
||||||
Obtain your oAuth2 Access Token from Linode account.
|
Obtain your oAuth2 Access Token from Linode account.
|
||||||
|
|
||||||
* <http://cloud.linode.com>
|
- <http://cloud.linode.com>
|
||||||
* Log in
|
- Log in
|
||||||
* Select API Tokens
|
- Select API Tokens
|
||||||
* Create a Personal Access Token,
|
- Create a Personal Access Token,
|
||||||
* Assigned scope (Please choose the least possible access required.)
|
- Assigned scope (Please choose the least possible access required.)
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
@ -41,3 +52,45 @@ linode:
|
|||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Binary Sensor %}
|
||||||
|
|
||||||
|
The `linode` binary sensor platform allows you to monitor your Linode nodes.
|
||||||
|
|
||||||
|
Add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
binary_sensor:
|
||||||
|
- platform: linode
|
||||||
|
nodes:
|
||||||
|
- 'myvpsname'
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
nodes:
|
||||||
|
description: List of VPSs you want to control.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Switch %}
|
||||||
|
|
||||||
|
The `linode` switch platform allows you to turn your Linode nodes on and off.
|
||||||
|
|
||||||
|
Add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
switch:
|
||||||
|
- platform: linode
|
||||||
|
nodes:
|
||||||
|
- 'myvpsname'
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration linode %}
|
||||||
|
nodes:
|
||||||
|
description: List of VPSs you want to control.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Linode Switch"
|
|
||||||
description: "Instructions on how to set up Linode switch within Home Assistant."
|
|
||||||
date: 2017-10-20 08:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: linode.png
|
|
||||||
ha_release: 0.57
|
|
||||||
ha_iot_class: "Cloud Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `linode` switch platform allows you to turn your Linode nodes on and off.
|
|
||||||
|
|
||||||
Add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
switch:
|
|
||||||
- platform: linode
|
|
||||||
nodes:
|
|
||||||
- 'myvpsname'
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration linode %}
|
|
||||||
nodes:
|
|
||||||
description: List of VPSs you want to control.
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
{% endconfiguration %}
|
|
Loading…
x
Reference in New Issue
Block a user