oc-cdtapi 3.24.2__py3-none-any.whl → 3.25.3__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 CHANGED
@@ -1354,3 +1354,49 @@ class ForemanAPI(HttpAPI):
1354
1354
  sleep(poll_interval)
1355
1355
 
1356
1356
  return bool(response.json().get("succeeded", False))
1357
+
1358
+ def get_parameter_value(self, hostname, parameter_name):
1359
+ """
1360
+ Get a parameter value by given parameter_name.
1361
+ :param hostname: str
1362
+ :param parameter_name: str
1363
+ :return value: str
1364
+ """
1365
+ logging.debug('Reached get_parameter_value')
1366
+ host_info = self.get_host_info(hostname=hostname)
1367
+ host_parameters = host_info.get("parameters")
1368
+ if not host_parameters:
1369
+ return None
1370
+
1371
+ for host_parameter in host_parameters:
1372
+ if host_parameter["name"] == parameter_name:
1373
+ return host_parameter["value"]
1374
+
1375
+ return None
1376
+
1377
+ def set_parameter_value(self, hostname, parameter_name, parameter_value, auto_create=False):
1378
+ """
1379
+ Set a parameter value by given parameter_name and parameter_value.
1380
+ Also, auto_create option will automatically create the parameter if not appear.
1381
+ :param hostname: str
1382
+ :param parameter_name: str
1383
+ :param parameter_value: str
1384
+ :param auto_create: bool
1385
+ """
1386
+ logging.debug('Reached set_parameter_value')
1387
+ payload = {
1388
+ "parameter": {
1389
+ "name": parameter_name,
1390
+ "value": parameter_value
1391
+ }
1392
+ }
1393
+
1394
+ if self.get_parameter_value(hostname=hostname, parameter_name=parameter_name) is None:
1395
+ logging.debug(f"parameter {parameter_name} is not created yet")
1396
+ if auto_create:
1397
+ logging.debug(f"creating parameter {parameter_name}")
1398
+ self.post(posixpath.join("hosts", hostname, "parameters"), headers=self.headers, json=payload)
1399
+ return
1400
+
1401
+ logging.debug(f"updating {parameter_name}")
1402
+ self.put(posixpath.join("hosts", hostname, "parameters", parameter_name), headers=self.headers, json=payload)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oc-cdtapi
3
- Version: 3.24.2
3
+ Version: 3.25.3
4
4
  Summary: Custom Development python API libraries
5
5
  License: Apache2.0
6
6
  Requires-Python: >=3.6
@@ -3,7 +3,7 @@ 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=I8AIOkJk8_HQ_YJclhePUUn_FNRbTkKG00CXmZtuQdk,48727
6
+ oc_cdtapi/ForemanAPI.py,sha256=8mMia9tIqKNCJ9yHzOnMgQaBmcH2IIacuS-IW2Wwy68,50546
7
7
  oc_cdtapi/JenkinsAPI.py,sha256=lZ8pe3a4eb_6h53JE7QLuzOSlu7Sqatc9PQwWhio9Vg,15748
8
8
  oc_cdtapi/NexusAPI.py,sha256=uU12GtHvKlWorFaPAnFcQ5AGEc94MZ5SdmfM2Pw3F7A,26122
9
9
  oc_cdtapi/PgAPI.py,sha256=URSz7qu-Ir7AOj0jI3ucTXn2PM-nC96nmPZI746OLjA,14356
@@ -12,9 +12,9 @@ oc_cdtapi/RundeckAPI.py,sha256=O3LmcFaHSz8UqeUyIHTTEMJncDD191Utd-iZaeJay2s,24243
12
12
  oc_cdtapi/TestServer.py,sha256=HV97UWg2IK4gOYAp9yaMdwFUWsw9v66MxyZdI3qQctA,2715
13
13
  oc_cdtapi/VaultAPI.py,sha256=P-x_PsWe_S0mGUKTCmR1KhUjdfs7GmyaltjGQcnWj_s,2967
14
14
  oc_cdtapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- oc_cdtapi-3.24.2.data/scripts/nexus.py,sha256=4teqZ_KtCSrwHDJVgA7lkreteod4Xt5XJFZNbwb7E6E,6858
16
- oc_cdtapi-3.24.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
17
- oc_cdtapi-3.24.2.dist-info/METADATA,sha256=i8t_cC5famMxrEnhwIX_qR40f7w9NomCxNxCzHvmz_E,504
18
- oc_cdtapi-3.24.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- oc_cdtapi-3.24.2.dist-info/top_level.txt,sha256=d4-5-D-0CSeSXYuLCP7-nIFCpjkfmJr-Y_muzds8iVU,10
20
- oc_cdtapi-3.24.2.dist-info/RECORD,,
15
+ oc_cdtapi-3.25.3.data/scripts/nexus.py,sha256=4teqZ_KtCSrwHDJVgA7lkreteod4Xt5XJFZNbwb7E6E,6858
16
+ oc_cdtapi-3.25.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
17
+ oc_cdtapi-3.25.3.dist-info/METADATA,sha256=twFTNRNuw7V4yMHbtY5ylWFh6CnKMRwaP2L7IwKNK7Y,504
18
+ oc_cdtapi-3.25.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ oc_cdtapi-3.25.3.dist-info/top_level.txt,sha256=d4-5-D-0CSeSXYuLCP7-nIFCpjkfmJr-Y_muzds8iVU,10
20
+ oc_cdtapi-3.25.3.dist-info/RECORD,,