c2client 0.21__tar.gz → 0.22__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {c2client-0.21/c2client.egg-info → c2client-0.22}/PKG-INFO +1 -6
- c2client-0.22/c2client/__init__.py +1 -0
- {c2client-0.21 → c2client-0.22}/c2client/clients.py +12 -0
- {c2client-0.21 → c2client-0.22/c2client.egg-info}/PKG-INFO +1 -6
- {c2client-0.21 → c2client-0.22}/c2client.egg-info/entry_points.txt +2 -0
- {c2client-0.21 → c2client-0.22}/setup.py +2 -0
- c2client-0.21/c2client/__init__.py +0 -1
- {c2client-0.21 → c2client-0.22}/MANIFEST.in +0 -0
- {c2client-0.21 → c2client-0.22}/Makefile +0 -0
- {c2client-0.21 → c2client-0.22}/README.rst +0 -0
- {c2client-0.21 → c2client-0.22}/c2client/c2rc_convert.py +0 -0
- {c2client-0.21 → c2client-0.22}/c2client/errors.py +0 -0
- {c2client-0.21 → c2client-0.22}/c2client/utils.py +0 -0
- {c2client-0.21 → c2client-0.22}/c2client.egg-info/SOURCES.txt +0 -0
- {c2client-0.21 → c2client-0.22}/c2client.egg-info/dependency_links.txt +0 -0
- {c2client-0.21 → c2client-0.22}/c2client.egg-info/requires.txt +0 -0
- {c2client-0.21 → c2client-0.22}/c2client.egg-info/top_level.txt +0 -0
- {c2client-0.21 → c2client-0.22}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: c2client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.22
|
|
4
4
|
Summary: CROC Cloud Platform - API Client
|
|
5
5
|
Home-page: https://github.com/c2devel/c2-client
|
|
6
6
|
Author: CROC Cloud Team
|
|
@@ -14,11 +14,6 @@ Classifier: Intended Audience :: Developers
|
|
|
14
14
|
Classifier: Intended Audience :: System Administrators
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Requires-Dist: boto
|
|
18
|
-
Requires-Dist: boto3
|
|
19
|
-
Requires-Dist: botocore
|
|
20
|
-
Requires-Dist: inflection==0.3.1
|
|
21
|
-
Requires-Dist: lxml
|
|
22
17
|
|
|
23
18
|
CROC Cloud API Client
|
|
24
19
|
=====================
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.22"
|
|
@@ -270,8 +270,20 @@ class Route53Client(C2Client):
|
|
|
270
270
|
client_name = "route53"
|
|
271
271
|
|
|
272
272
|
|
|
273
|
+
class EFSClient(C2Client):
|
|
274
|
+
|
|
275
|
+
url_key = "EFS_URL"
|
|
276
|
+
client_name = "efs"
|
|
277
|
+
|
|
278
|
+
|
|
273
279
|
class IAMClient(C2Client):
|
|
274
280
|
|
|
275
281
|
url_key = "IAM_URL"
|
|
276
282
|
client_name = "iam"
|
|
277
283
|
use_base_access_key = True
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
class DirectConnectClient(C2Client):
|
|
287
|
+
|
|
288
|
+
url_key = "DIRECT_CONNECT_URL"
|
|
289
|
+
client_name = "directconnect"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: c2client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.22
|
|
4
4
|
Summary: CROC Cloud Platform - API Client
|
|
5
5
|
Home-page: https://github.com/c2devel/c2-client
|
|
6
6
|
Author: CROC Cloud Team
|
|
@@ -14,11 +14,6 @@ Classifier: Intended Audience :: Developers
|
|
|
14
14
|
Classifier: Intended Audience :: System Administrators
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Requires-Dist: boto
|
|
18
|
-
Requires-Dist: boto3
|
|
19
|
-
Requires-Dist: botocore
|
|
20
|
-
Requires-Dist: inflection==0.3.1
|
|
21
|
-
Requires-Dist: lxml
|
|
22
17
|
|
|
23
18
|
CROC Cloud API Client
|
|
24
19
|
=====================
|
|
@@ -3,7 +3,9 @@ c2-as = c2client.clients:ASClient.execute
|
|
|
3
3
|
c2-bs = c2client.clients:BSClient.execute
|
|
4
4
|
c2-ct = c2client.clients:CTClient.execute
|
|
5
5
|
c2-cw = c2client.clients:CWClient.execute
|
|
6
|
+
c2-dc = c2client.clients:DirectConnectClient.execute
|
|
6
7
|
c2-ec2 = c2client.clients:EC2Client.execute
|
|
8
|
+
c2-efs = c2client.clients:EFSClient.execute
|
|
7
9
|
c2-eks = c2client.clients:EKSClient.execute
|
|
8
10
|
c2-eks-legacy = c2client.clients:LegacyEKSClient.execute
|
|
9
11
|
c2-elb = c2client.clients:ELBClient.execute
|
|
@@ -27,12 +27,14 @@ entrypoints = [
|
|
|
27
27
|
("c2-ct", "CTClient"),
|
|
28
28
|
("c2-cw", "CWClient"),
|
|
29
29
|
("c2-ec2", "EC2Client"),
|
|
30
|
+
("c2-efs", "EFSClient"),
|
|
30
31
|
("c2-eks", "EKSClient"),
|
|
31
32
|
("c2-eks-legacy", "LegacyEKSClient"),
|
|
32
33
|
("c2-elb", "ELBClient"),
|
|
33
34
|
("c2-iam", "IAMClient"),
|
|
34
35
|
("c2-paas", "PaasClient"),
|
|
35
36
|
("c2-route53", "Route53Client"),
|
|
37
|
+
("c2-dc", "DirectConnectClient"),
|
|
36
38
|
]
|
|
37
39
|
|
|
38
40
|
setup(
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.21"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|