File: __init__.py

package info (click to toggle)
python-twilio 9.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,756 kB
  • sloc: python: 8,281; makefile: 65
file content (43 lines) | stat: -rw-r--r-- 1,321 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from warnings import warn

from twilio.rest.microvisor.MicrovisorBase import MicrovisorBase
from twilio.rest.microvisor.v1.account_config import AccountConfigList
from twilio.rest.microvisor.v1.account_secret import AccountSecretList
from twilio.rest.microvisor.v1.app import AppList
from twilio.rest.microvisor.v1.device import DeviceList


class Microvisor(MicrovisorBase):
    @property
    def account_configs(self) -> AccountConfigList:
        warn(
            "account_configs is deprecated. Use v1.account_configs instead.",
            DeprecationWarning,
            stacklevel=2,
        )
        return self.v1.account_configs

    @property
    def account_secrets(self) -> AccountSecretList:
        warn(
            "account_secrets is deprecated. Use v1.account_secrets instead.",
            DeprecationWarning,
            stacklevel=2,
        )
        return self.v1.account_secrets

    @property
    def apps(self) -> AppList:
        warn(
            "apps is deprecated. Use v1.apps instead.", DeprecationWarning, stacklevel=2
        )
        return self.v1.apps

    @property
    def devices(self) -> DeviceList:
        warn(
            "devices is deprecated. Use v1.devices instead.",
            DeprecationWarning,
            stacklevel=2,
        )
        return self.v1.devices