forked from softlayer/softlayer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (41 loc) · 1.53 KB
/
__init__.py
File metadata and controls
43 lines (41 loc) · 1.53 KB
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
"""
SoftLayer.managers
~~~~~~~~~~~~~~~~~~
Managers mask out a lot of the complexities of using the API into classes
that provide a simpler interface to various services. These are
higher-level interfaces to the SoftLayer API.
:license: MIT, see LICENSE for more details.
"""
# pylint: disable=w0401
from SoftLayer.managers.cdn import CDNManager # NOQA
from SoftLayer.managers.dns import DNSManager # NOQA
from SoftLayer.managers.firewall import FirewallManager # NOQA
from SoftLayer.managers.hardware import HardwareManager # NOQA
from SoftLayer.managers.image import ImageManager # NOQA
from SoftLayer.managers.iscsi import ISCSIManager # NOQA
from SoftLayer.managers.load_balancer import LoadBalancerManager # NOQA
from SoftLayer.managers.messaging import MessagingManager # NOQA
from SoftLayer.managers.metadata import MetadataManager # NOQA
from SoftLayer.managers.network import NetworkManager # NOQA
from SoftLayer.managers.ordering import OrderingManager # NOQA
from SoftLayer.managers.sshkey import SshKeyManager # NOQA
from SoftLayer.managers.ssl import SSLManager # NOQA
from SoftLayer.managers.ticket import TicketManager # NOQA
from SoftLayer.managers.vs import VSManager # NOQA
__all__ = [
'CDNManager',
'DNSManager',
'FirewallManager',
'HardwareManager',
'ImageManager',
'ISCSIManager',
'LoadBalancerManager',
'MessagingManager',
'MetadataManager',
'NetworkManager',
'OrderingManager',
'SshKeyManager',
'SSLManager',
'TicketManager',
'VSManager',
]