File: plcnetapi.pyi

package info (click to toggle)
devolo-plc-api 1.5.1%2Bgit20260208.5d3989e-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 504 kB
  • sloc: python: 1,616; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 1,037 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
@generated by stubgen.  Do not edit manually!
isort:skip_file
"""
from .getnetworkoverview_pb2 import GetNetworkOverview
from devolo_plc_api.clients import Protobuf
from devolo_plc_api.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
from httpx import AsyncClient as AsyncClient

class PlcNetApi(Protobuf):
    password: str
    def __init__(self, ip: str, session: AsyncClient, info: ZeroconfServiceInfo) -> None: ...
    async def async_get_network_overview(self) -> GetNetworkOverview.LogicalNetwork: ...
    async def async_identify_device_start(self) -> bool: ...
    async def async_identify_device_stop(self) -> bool: ...
    async def async_pair_device(self) -> bool: ...
    async def async_set_user_device_name(self, name: str) -> bool: ...
    def get_network_overview(self) -> GetNetworkOverview.LogicalNetwork: ...
    def identify_device_start(self) -> bool: ...
    def identify_device_stop(self) -> bool: ...
    def pair_device(self) -> bool: ...
    def set_user_device_name(self, name: str) -> bool: ...