mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
added methods for retrieving vapp and vm
This commit is contained in:
parent
a1f6de8745
commit
ab3239ecd7
1 changed files with 14 additions and 0 deletions
|
@ -90,6 +90,20 @@ class VcaAnsibleModule(AnsibleModule):
|
|||
self._vdc = _vdc
|
||||
return _vdc
|
||||
|
||||
def get_vapp(self, vapp_name):
|
||||
vapp = self.vca.get_vapp(self.vdc, vapp_name)
|
||||
if not vapp:
|
||||
raise VcaError('vca instance has no vapp named %s' % vapp_name)
|
||||
return vapp
|
||||
|
||||
def get_vm(self, vapp_name, vm_name):
|
||||
vapp = self.get_vapp(vapp_name)
|
||||
vms = [vm for vm in children.get_Vm() if vm.name == vm_name]
|
||||
try:
|
||||
return vms[0]
|
||||
except IndexError:
|
||||
raise VcaError('vapp has no vm named %s' % vm_name)
|
||||
|
||||
def create_instance(self):
|
||||
service_type = self.params.get('service_type', DEFAULT_SERVICE_TYPE)
|
||||
host = self.params.get('host', LOGIN_HOST.get('service_type'))
|
||||
|
|
Loading…
Reference in a new issue