mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user