forked from ucloud/ucloud-sdk-python2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
101 lines (72 loc) · 2.74 KB
/
client.py
File metadata and controls
101 lines (72 loc) · 2.74 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# -*- coding: utf-8 -*-
""" Code is generated by ucloud-model, DO NOT EDIT IT. """
from ucloud.core import client
class Client(client.Client):
def __init__(self, config, transport=None, middleware=None):
self._config = config
super(Client, self).__init__(config, transport, middleware)
def pathx(self):
from ucloud.services.pathx.client import PathXClient
return PathXClient(
self._config, self.transport, self.middleware, self.logger
)
def stepflow(self):
from ucloud.services.stepflow.client import StepFlowClient
return StepFlowClient(
self._config, self.transport, self.middleware, self.logger
)
def uaccount(self):
from ucloud.services.uaccount.client import UAccountClient
return UAccountClient(
self._config, self.transport, self.middleware, self.logger
)
def udb(self):
from ucloud.services.udb.client import UDBClient
return UDBClient(
self._config, self.transport, self.middleware, self.logger
)
def udpn(self):
from ucloud.services.udpn.client import UDPNClient
return UDPNClient(
self._config, self.transport, self.middleware, self.logger
)
def udisk(self):
from ucloud.services.udisk.client import UDiskClient
return UDiskClient(
self._config, self.transport, self.middleware, self.logger
)
def uhost(self):
from ucloud.services.uhost.client import UHostClient
return UHostClient(
self._config, self.transport, self.middleware, self.logger
)
def ulb(self):
from ucloud.services.ulb.client import ULBClient
return ULBClient(
self._config, self.transport, self.middleware, self.logger
)
def umem(self):
from ucloud.services.umem.client import UMemClient
return UMemClient(
self._config, self.transport, self.middleware, self.logger
)
def unet(self):
from ucloud.services.unet.client import UNetClient
return UNetClient(
self._config, self.transport, self.middleware, self.logger
)
def uphost(self):
from ucloud.services.uphost.client import UPHostClient
return UPHostClient(
self._config, self.transport, self.middleware, self.logger
)
def usms(self):
from ucloud.services.usms.client import USMSClient
return USMSClient(
self._config, self.transport, self.middleware, self.logger
)
def vpc(self):
from ucloud.services.vpc.client import VPCClient
return VPCClient(
self._config, self.transport, self.middleware, self.logger
)