oc-cdtapi 3.15.3__py3-none-any.whl → 3.16.0__py3-none-any.whl
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.
- oc_cdtapi/ForemanAPI.py +12 -4
- {oc_cdtapi-3.15.3.dist-info → oc_cdtapi-3.16.0.dist-info}/METADATA +3 -2
- {oc_cdtapi-3.15.3.dist-info → oc_cdtapi-3.16.0.dist-info}/RECORD +7 -7
- {oc_cdtapi-3.15.3.dist-info → oc_cdtapi-3.16.0.dist-info}/WHEEL +1 -1
- {oc_cdtapi-3.15.3.data → oc_cdtapi-3.16.0.data}/scripts/nexus.py +0 -0
- {oc_cdtapi-3.15.3.dist-info → oc_cdtapi-3.16.0.dist-info/licenses}/LICENSE +0 -0
- {oc_cdtapi-3.15.3.dist-info → oc_cdtapi-3.16.0.dist-info}/top_level.txt +0 -0
oc_cdtapi/ForemanAPI.py
CHANGED
@@ -243,7 +243,7 @@ class ForemanAPI(HttpAPI):
|
|
243
243
|
deploy_on, custom_json):
|
244
244
|
"""
|
245
245
|
Creates a host using the default parameters or the ones from an external json
|
246
|
-
note that create_vm in engine actually sends db_task instead of hostname and custom_json,
|
246
|
+
note that create_vm in engine actually sends db_task instead of hostname and custom_json,
|
247
247
|
other parms are ignored
|
248
248
|
"""
|
249
249
|
logging.debug('Reached create_host_v1')
|
@@ -773,6 +773,14 @@ class ForemanAPI(HttpAPI):
|
|
773
773
|
logging.debug(response)
|
774
774
|
return response
|
775
775
|
|
776
|
+
def is_host_powered_on(self, hostname):
|
777
|
+
"""
|
778
|
+
Returns true if host is powered on
|
779
|
+
"""
|
780
|
+
logging.debug('Reached is_host_powered_on')
|
781
|
+
response = self.get(posixpath.join("hosts", hostname, "power")).json()
|
782
|
+
return response['state'] == 'on'
|
783
|
+
|
776
784
|
def host_power(self, hostname, action):
|
777
785
|
"""
|
778
786
|
wrapper for api v1/v2
|
@@ -972,7 +980,7 @@ class ForemanAPI(HttpAPI):
|
|
972
980
|
def set_host_expiry_v1(self, hostname, expiry):
|
973
981
|
"""
|
974
982
|
Attempts to set host expiry date
|
975
|
-
:param hostname: full hostname
|
983
|
+
:param hostname: full hostname
|
976
984
|
:param expiry: expiry date in format yyyy-mm-dd
|
977
985
|
"""
|
978
986
|
logging.debug('Reached set_host_expiry_v1')
|
@@ -984,7 +992,7 @@ class ForemanAPI(HttpAPI):
|
|
984
992
|
def set_host_expiry_v2(self, hostname, expiry):
|
985
993
|
"""
|
986
994
|
Attempts to set host expiry date
|
987
|
-
:param hostname: full hostname
|
995
|
+
:param hostname: full hostname
|
988
996
|
:param expiry: expiry date in format yyyy-mm-dd
|
989
997
|
"""
|
990
998
|
logging.debug('Reached set_host_expiry_v2')
|
@@ -1051,7 +1059,7 @@ class ForemanAPI(HttpAPI):
|
|
1051
1059
|
"""
|
1052
1060
|
logging.debug('Reached get_flavor_id_v1')
|
1053
1061
|
flavors_list = self.get(posixpath.join("compute_resources", str(compute_resource_id),
|
1054
|
-
|
1062
|
+
"available_flavors")).json()["results"]
|
1055
1063
|
|
1056
1064
|
try:
|
1057
1065
|
flavor_id = next(flavor["id"] for flavor in flavors_list if flavor["name"] == flavor_name)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: oc-cdtapi
|
3
|
-
Version: 3.
|
3
|
+
Version: 3.16.0
|
4
4
|
Summary: Custom Development python API libraries
|
5
5
|
License: Apache2.0
|
6
6
|
Requires-Python: >=3.6
|
@@ -12,6 +12,7 @@ Requires-Dist: psycopg2
|
|
12
12
|
Dynamic: description
|
13
13
|
Dynamic: description-content-type
|
14
14
|
Dynamic: license
|
15
|
+
Dynamic: license-file
|
15
16
|
Dynamic: requires-dist
|
16
17
|
Dynamic: requires-python
|
17
18
|
Dynamic: summary
|
@@ -3,16 +3,16 @@ oc_cdtapi/Dbsm2API.py,sha256=WDBst1dCAmDVU9d9Ogzwp2nkjtKZ4thU2xG4sAPI_Nk,9963
|
|
3
3
|
oc_cdtapi/DevPIAPI.py,sha256=9WND9ld66eHmC5qoLJq3KDYSoO-pP69UqOQsGZNLZYg,1835
|
4
4
|
oc_cdtapi/DmsAPI.py,sha256=eNFdwQLhCbPvHB5SUtP4QcZZtSdjkgt_Cxn3oQ3iJ5s,15605
|
5
5
|
oc_cdtapi/DmsGetverAPI.py,sha256=ZPU4HlF59fngKu5mSFhtss3rlBuduffDOSm_y3XWrxk,15556
|
6
|
-
oc_cdtapi/ForemanAPI.py,sha256=
|
6
|
+
oc_cdtapi/ForemanAPI.py,sha256=9r1MSOsubiSxM1sdzF2MHD7IcSwX9Y4UDJknHqQK07g,44255
|
7
7
|
oc_cdtapi/JenkinsAPI.py,sha256=lZ8pe3a4eb_6h53JE7QLuzOSlu7Sqatc9PQwWhio9Vg,15748
|
8
8
|
oc_cdtapi/NexusAPI.py,sha256=uU12GtHvKlWorFaPAnFcQ5AGEc94MZ5SdmfM2Pw3F7A,26122
|
9
9
|
oc_cdtapi/PgQAPI.py,sha256=bAgwo4YVuD60uAEv7hrjTQmmAfcMP86IBlSNhlXJzWc,6882
|
10
10
|
oc_cdtapi/RundeckAPI.py,sha256=O3LmcFaHSz8UqeUyIHTTEMJncDD191Utd-iZaeJay2s,24243
|
11
11
|
oc_cdtapi/TestServer.py,sha256=HV97UWg2IK4gOYAp9yaMdwFUWsw9v66MxyZdI3qQctA,2715
|
12
12
|
oc_cdtapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
oc_cdtapi-3.
|
14
|
-
oc_cdtapi-3.
|
15
|
-
oc_cdtapi-3.
|
16
|
-
oc_cdtapi-3.
|
17
|
-
oc_cdtapi-3.
|
18
|
-
oc_cdtapi-3.
|
13
|
+
oc_cdtapi-3.16.0.data/scripts/nexus.py,sha256=4teqZ_KtCSrwHDJVgA7lkreteod4Xt5XJFZNbwb7E6E,6858
|
14
|
+
oc_cdtapi-3.16.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
15
|
+
oc_cdtapi-3.16.0.dist-info/METADATA,sha256=7tiZRQq6D78FciUYuGXs3Ss_zL1l5X8mDg6rDlMCZvw,477
|
16
|
+
oc_cdtapi-3.16.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
17
|
+
oc_cdtapi-3.16.0.dist-info/top_level.txt,sha256=d4-5-D-0CSeSXYuLCP7-nIFCpjkfmJr-Y_muzds8iVU,10
|
18
|
+
oc_cdtapi-3.16.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|