-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path__init__.py
More file actions
37 lines (35 loc) · 1.3 KB
/
__init__.py
File metadata and controls
37 lines (35 loc) · 1.3 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
"""
Python Interface to UpCloud's API.
"""
__version__ = '2.6.0'
__author__ = 'Developers from UpCloud & elsewhere'
__author_email__ = 'hello@upcloud.com'
__maintainer__ = 'UpCloud'
__maintainer_email__ = 'hello@upcloud.com'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2015 UpCloud Oy'
from upcloud_api.cloud_manager import CloudManager
from upcloud_api.errors import UpCloudAPIError, UpCloudClientError
from upcloud_api.firewall import FirewallRule
from upcloud_api.host import Host
from upcloud_api.interface import Interface
from upcloud_api.ip_address import IPAddress
from upcloud_api.ip_network import IpNetwork
from upcloud_api.label import Label
from upcloud_api.load_balancer import (
LoadBalancer,
LoadBalancerBackend,
LoadBalancerBackendMember,
LoadBalancerFrontend,
LoadBalancerFrontEndRule,
LoadBalancerNetwork,
)
from upcloud_api.network import Network
from upcloud_api.object_storage import ObjectStorage
from upcloud_api.router import Router
from upcloud_api.server import Server, ServerNetworkInterface, login_user_block
from upcloud_api.server_group import ServerGroup, ServerGroupAffinityPolicy
from upcloud_api.storage import Storage
from upcloud_api.storage_import import StorageImport
from upcloud_api.tag import Tag
from upcloud_api.upcloud_resource import UpCloudResource