mirror of
https://github.com/home-assistant/core.git
synced 2025-06-05 13:47:06 +00:00

* Add S3 integration * Improve translations and error handling * Test S3 integration * Update QoS * Add missing data_description strings * Fix missing async_initialize_backup in tests * PR changes * Remove unique ID, rely on abort_entries_match * Raise only BackupAgentError (#139754), introduce decorator for error handling * Switch to metadata-file based solution * PR changes * Revert strict typing * Bump dependency * Silence mypy * Pass docs URLs as description_placeholders * PR changes * Rename _api to api * PR Changes * PR Changes 2 * Remove api abstraction * Handle S3 multipart upload size limitations * PR changes
16 lines
381 B
Python
16 lines
381 B
Python
"""Consts for S3 tests."""
|
|
|
|
from homeassistant.components.s3.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: "http://127.0.0.1:9000",
|
|
CONF_BUCKET: "test",
|
|
}
|