Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.llamalab_automate.notify Namespace Reference

Classes

class  AutomateNotificationService
 

Functions

AutomateNotificationService get_service (HomeAssistant hass, ConfigType config, DiscoveryInfoType|None discovery_info=None)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string _RESOURCE = "https://llamalab.com/automate/cloud/message"
 
string ATTR_PRIORITY = "priority"
 
string CONF_TO = "to"
 
 PLATFORM_SCHEMA
 

Detailed Description

LlamaLab Automate notification service.

Function Documentation

◆ get_service()

AutomateNotificationService homeassistant.components.llamalab_automate.notify.get_service ( HomeAssistant  hass,
ConfigType  config,
DiscoveryInfoType | None   discovery_info = None 
)
Get the LlamaLab Automate notification service.

Definition at line 37 of file notify.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.llamalab_automate.notify._LOGGER = logging.getLogger(__name__)
private

Definition at line 21 of file notify.py.

◆ _RESOURCE

string homeassistant.components.llamalab_automate.notify._RESOURCE = "https://llamalab.com/automate/cloud/message"
private

Definition at line 22 of file notify.py.

◆ ATTR_PRIORITY

string homeassistant.components.llamalab_automate.notify.ATTR_PRIORITY = "priority"

Definition at line 24 of file notify.py.

◆ CONF_TO

string homeassistant.components.llamalab_automate.notify.CONF_TO = "to"

Definition at line 26 of file notify.py.

◆ PLATFORM_SCHEMA

homeassistant.components.llamalab_automate.notify.PLATFORM_SCHEMA
Initial value:
1 = NOTIFY_PLATFORM_SCHEMA.extend(
2  {
3  vol.Required(CONF_API_KEY): cv.string,
4  vol.Required(CONF_TO): cv.string,
5  vol.Optional(CONF_DEVICE): cv.string,
6  }
7 )

Definition at line 28 of file notify.py.