File: __init__.py

package info (click to toggle)
python-synologydsm-api 2.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,380 kB
  • sloc: python: 27,239; sh: 25; makefile: 2
file content (86 lines) | stat: -rw-r--r-- 3,267 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
"""DSM 6 datas."""

from .const_6_api_auth import (
    DSM_6_AUTH_LOGIN,
    DSM_6_AUTH_LOGIN_2SA,
    DSM_6_AUTH_LOGIN_2SA_OTP,
)
from .const_6_api_info import DSM_6_API_INFO
from .core.const_6_core_security import (
    DSM_6_CORE_SECURITY,
    DSM_6_CORE_SECURITY_UPDATE_OUTOFDATE,
)
from .core.const_6_core_share import DSM_6_CORE_SHARE
from .core.const_6_core_system import (
    DSM_6_CORE_SYSTEM_DS218_PLAY,
    DSM_6_CORE_SYSTEM_DS918_PLUS,
)
from .core.const_6_core_upgrade import DSM_6_CORE_UPGRADE_FALSE, DSM_6_CORE_UPGRADE_TRUE
from .core.const_6_core_utilization import (
    DSM_6_CORE_UTILIZATION,
    DSM_6_CORE_UTILIZATION_ERROR_1055,
)
from .download_station.const_6_download_station_info import (
    DSM_6_DOWNLOAD_STATION_INFO_CONFIG,
    DSM_6_DOWNLOAD_STATION_INFO_INFO,
)
from .download_station.const_6_download_station_stat import (
    DSM_6_DOWNLOAD_STATION_STAT_INFO,
)
from .download_station.const_6_download_station_task import (
    DSM_6_DOWNLOAD_STATION_TASK_LIST,
)
from .dsm.const_6_dsm_info import DSM_6_DSM_INFORMATION
from .dsm.const_6_dsm_network import DSM_6_DSM_NETWORK_2LAN_1PPPOE
from .storage.const_6_storage_storage import (
    DSM_6_STORAGE_STORAGE_DS213_PLUS_SHR1_2DISKS_2VOLS,
    DSM_6_STORAGE_STORAGE_DS918_PLUS_RAID5_3DISKS_1VOL,
    DSM_6_STORAGE_STORAGE_DS1515_PLUS_SHR2_10DISKS_1VOL_WITH_EXPANSION,
    DSM_6_STORAGE_STORAGE_DS1819_PLUS_SHR2_8DISKS_1VOL,
)
from .surveillance_station.const_6_api_info import (
    DSM_6_API_INFO as DSM_6_API_INFO_SURVEILLANCE_STATION,
)
from .surveillance_station.const_6_surveillance_station_camera import (
    DSM_6_SURVEILLANCE_STATION_CAMERA_EVENT_MD_PARAM_SAVE,
    DSM_6_SURVEILLANCE_STATION_CAMERA_EVENT_MOTION_ENUM,
    DSM_6_SURVEILLANCE_STATION_CAMERA_GET_LIVE_VIEW_PATH,
    DSM_6_SURVEILLANCE_STATION_CAMERA_LIST,
)
from .surveillance_station.const_6_surveillance_station_home_mode import (
    DSM_6_SURVEILLANCE_STATION_HOME_MODE_GET_INFO,
    DSM_6_SURVEILLANCE_STATION_HOME_MODE_SWITCH,
)

__all__ = [
    "DSM_6_AUTH_LOGIN",
    "DSM_6_AUTH_LOGIN_2SA",
    "DSM_6_AUTH_LOGIN_2SA_OTP",
    "DSM_6_API_INFO",
    "DSM_6_CORE_SECURITY",
    "DSM_6_CORE_SECURITY_UPDATE_OUTOFDATE",
    "DSM_6_CORE_SHARE",
    "DSM_6_CORE_SYSTEM_DS218_PLAY",
    "DSM_6_CORE_SYSTEM_DS918_PLUS",
    "DSM_6_CORE_UPGRADE_FALSE",
    "DSM_6_CORE_UPGRADE_TRUE",
    "DSM_6_CORE_UTILIZATION",
    "DSM_6_CORE_UTILIZATION_ERROR_1055",
    "DSM_6_DOWNLOAD_STATION_INFO_CONFIG",
    "DSM_6_DOWNLOAD_STATION_INFO_INFO",
    "DSM_6_DOWNLOAD_STATION_STAT_INFO",
    "DSM_6_DOWNLOAD_STATION_TASK_LIST",
    "DSM_6_DSM_INFORMATION",
    "DSM_6_DSM_NETWORK_2LAN_1PPPOE",
    "DSM_6_STORAGE_STORAGE_DS1515_PLUS_SHR2_10DISKS_1VOL_WITH_EXPANSION",
    "DSM_6_STORAGE_STORAGE_DS1819_PLUS_SHR2_8DISKS_1VOL",
    "DSM_6_STORAGE_STORAGE_DS213_PLUS_SHR1_2DISKS_2VOLS",
    "DSM_6_STORAGE_STORAGE_DS918_PLUS_RAID5_3DISKS_1VOL",
    "DSM_6_API_INFO_SURVEILLANCE_STATION",
    "DSM_6_SURVEILLANCE_STATION_CAMERA_EVENT_MD_PARAM_SAVE",
    "DSM_6_SURVEILLANCE_STATION_CAMERA_EVENT_MOTION_ENUM",
    "DSM_6_SURVEILLANCE_STATION_CAMERA_GET_LIVE_VIEW_PATH",
    "DSM_6_SURVEILLANCE_STATION_CAMERA_LIST",
    "DSM_6_SURVEILLANCE_STATION_HOME_MODE_GET_INFO",
    "DSM_6_SURVEILLANCE_STATION_HOME_MODE_SWITCH",
]