mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 12:14:20 +01:00
d40e3145fe
* Google Cloud can now be setup from the UI * mypy * Add BaseGoogleCloudProvider * Allow clearing options in the UI * Address feedback * Don't translate Google Cloud title * mypy * Revert strict typing changes * Address comments
21 lines
424 B
Python
21 lines
424 B
Python
"""Constants for the Google Cloud component."""
|
|
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "google_cloud"
|
|
TITLE = "Google Cloud"
|
|
|
|
CONF_SERVICE_ACCOUNT_INFO = "service_account_info"
|
|
CONF_KEY_FILE = "key_file"
|
|
|
|
DEFAULT_LANG = "en-US"
|
|
|
|
CONF_GENDER = "gender"
|
|
CONF_VOICE = "voice"
|
|
CONF_ENCODING = "encoding"
|
|
CONF_SPEED = "speed"
|
|
CONF_PITCH = "pitch"
|
|
CONF_GAIN = "gain"
|
|
CONF_PROFILES = "profiles"
|
|
CONF_TEXT_TYPE = "text_type"
|