Co-authored-by: Josef Zweck <[email protected]> Co-authored-by: Copilot <[email protected]>
16 lines
409 B
Python
16 lines
409 B
Python
"""Consts for IDrive e2 tests."""
|
|
|
|
from homeassistant.components.idrive_e2.const import (
|
|
CONF_ACCESS_KEY_ID,
|
|
CONF_BUCKET,
|
|
CONF_ENDPOINT_URL,
|
|
CONF_SECRET_ACCESS_KEY,
|
|
)
|
|
|
|
USER_INPUT = {
|
|
CONF_ACCESS_KEY_ID: "TestTestTestTestTest",
|
|
CONF_SECRET_ACCESS_KEY: "TestTestTestTestTestTestTestTestTestTest",
|
|
CONF_ENDPOINT_URL: "https://c7h8.fra201.idrivee2-98.com",
|
|
CONF_BUCKET: "test",
|
|
}
|