summaryrefslogtreecommitdiff
path: root/heatclient/v1/software_configs.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove sixTakashi Kajinami2022-05-091-1/+1
| | | | | | | This library no longer supports Python 2, thus usage of six can be removed. Change-Id: I8d0c1cfd6dff375b3b7756a5b36c95a2df3f04c6
* Replace six.iteritems() with .items()M V P Nitesh2017-03-311-2/+1
| | | | | | | | | | | | 1.As mentioned in [1], we should avoid using six.iteritems to achieve iterators. We can use dict.items instead, as it will return iterators in PY3 as well. And dict.items/keys will more readable. 2.In py2, the performance about list should be negligible, see the link [2]. [1] https://wiki.openstack.org/wiki/Python3 [2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html Change-Id: I3913e8876b34e112140788d7a405da6eedfb5f29
* Move required modules from oslo-incubatorrabi2016-11-121-1/+1
| | | | | | | | | | | | Move the required module to heatclient/common. - heatclient/openstack/common/apiclient/base.py It also moves some required functions and exceptions from heatclient/openstack/common/cliutils.py and heatclient/openstack/common/exceptions.py. Change-Id: I68704c7fab9417492d8390ad05a9797f78d46907
* Enable pep8 H405 testsricolin2015-11-161-0/+1
| | | | | | | Enabled H405 multi line docstring summary not separated with an empty line in tox testing. Change-Id: I89d063133154ae343315872b677fa06cc901cf3b
* Support to list software configslvdongbing2015-10-301-0/+23
| | | | | | | | As API has supported to list software configs, client should support too. Closes-Bug: #1464248 Change-Id: I977b960f0e2f0e754a603c01122eb41f0ea9dbf5
* Move usage methods *_request to get/post/etcPeter Razumovsky2015-06-091-8/+8
| | | | | | | | HTTPClient has methods get/post/put and others, which use json_request and raw_request, but other code uses requests method instead of them. Change-Id: I74ee34430afdae17f83ccdc877cc882f94651bce
* Update apiclient.base and reuse new functionalAndrey Kurilin2014-02-191-4/+0
| | | | | | | | | | | | | Module apiclient.base has several updates in oslo, so we need to sync latest code to have ability to reuse new functional. Updates in oslo which related to usage of apiclient.base in heatclient: - I491f9b54c7074546cf738c6150666bfcc3966a78 - I1db6c12a1f798de7f7fafd0c34fb0ef523610153 Related to bp common-client-library-2 Change-Id: I509d6efb0c8eef87ba2e4aa02ebb44ba149a9860
* Add support for software config resourcesSteve Baker2014-02-171-0/+53
SoftwareConfig lacks update methods as it is immutable. Implements: blueprint hot-software-config-rest Change-Id: I1d05433303c182f03d21378fd66af4f589b7821b