mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -05:00
aae89a9af0
* Support VMware Cloud on AWS Networking APIs and add a few samples. * Added vsphere_client module to simplify login and API invocation. * Modified existing samples to use vsphere_client. * Update on vm template APIs. Signed-off-by: Tianhao He <het@vmware.com>
79 lines
2.7 KiB
Python
79 lines
2.7 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2017, 2018. All Rights Reserved.
|
|
* SPDX-License-Identifier: MIT
|
|
* *******************************************************
|
|
*
|
|
* DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN,
|
|
* EXPRESS OR IMPLIED. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED
|
|
* WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
|
|
* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
"""
|
|
|
|
__author__ = 'VMware, Inc.'
|
|
__vcenter_version__ = '6.5+'
|
|
|
|
from vmware.vapi.vsphere.client import create_vsphere_client
|
|
|
|
from com.vmware.vcenter.vm_client import Power
|
|
|
|
from samples.vsphere.common import sample_cli
|
|
from samples.vsphere.common import sample_util
|
|
from samples.vsphere.vcenter.helper.vm_helper import get_vm
|
|
from samples.vsphere.common.ssl_helper import get_unverified_session
|
|
|
|
|
|
class DeleteVM(object):
|
|
"""
|
|
Demonstrates Deleting User specified Virtual Machine (VM)
|
|
Sample Prerequisites:
|
|
vCenter/ESX
|
|
"""
|
|
|
|
def __init__(self):
|
|
parser = sample_cli.build_arg_parser()
|
|
parser.add_argument('-n', '--vm_name',
|
|
action='store',
|
|
default='Sample_Default_VM_for_Simple_Testbed',
|
|
help='Name of the testing vm')
|
|
args = sample_util.process_cli_args(parser.parse_args())
|
|
self.vm_name = args.vm_name
|
|
|
|
session = get_unverified_session() if args.skipverification else None
|
|
|
|
# Connect to vSphere client
|
|
self.client = create_vsphere_client(server=args.server,
|
|
username=args.username,
|
|
password=args.password,
|
|
session=session)
|
|
|
|
def run(self):
|
|
"""
|
|
Delete User specified VM from Server
|
|
"""
|
|
vm = get_vm(self.client, self.vm_name)
|
|
if not vm:
|
|
raise Exception('Sample requires an existing vm with name ({}).'
|
|
'Please create the vm first.'.format(self.vm_name))
|
|
print("Deleting VM -- '{}-({})')".format(self.vm_name, vm))
|
|
state = self.client.vcenter.vm.Power.get(vm)
|
|
if state == Power.Info(state=Power.State.POWERED_ON):
|
|
self.client.vcenter.vm.Power.stop(vm)
|
|
elif state == Power.Info(state=Power.State.SUSPENDED):
|
|
self.client.vcenter.vm.Power.start(vm)
|
|
self.client.vcenter.vm.Power.stop(vm)
|
|
self.client.vcenter.VM.delete(vm)
|
|
print("Deleted VM -- '{}-({})".format(self.vm_name, vm))
|
|
|
|
|
|
def main():
|
|
delete_vm = DeleteVM()
|
|
delete_vm.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|