1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

cloudstack: add _get_by_key() to utils

Generic method to get the whole dict or just a singe value by key if found.
This commit is contained in:
Rene Moser 2015-04-24 19:04:33 +02:00
parent 31520cdd17
commit 88540d3cdc

View file

@ -69,6 +69,14 @@ class AnsibleCloudStack:
self.cs = CloudStack(**read_config())
def _get_by_key(self, key=None, my_dict={}):
if key:
if key in my_dict:
return my_dict[key]
self.module.fail_json(msg="Something went wrong: %s not found" % key)
return my_dict
def get_project_id(self):
if self.project_id:
return self.project_id