cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1380
Views
0
Helpful
1
Comments
Orf Gelbrich
Cisco Employee
Cisco Employee
Task NameDelete VM record by VM ID
Description
Prerequisites
  1. Tested on 5.4
CategoryWorkflow
ComponentsvSphere 5.x
User Inputs

Instructions for Regular Workflow Use:

  1. Download the attached .ZIP file below to your computer. *Remember the location of the saved file on your computer.
  2. Unzip the file on your computer. Should end up with a .WFD file.
  3. Log in to UCS Director as a user that has "system-admin" privileges.
  4. Navigate to "Policies-->Orchestration" and click on "Import".
  5. Click "Browse" and navigate to the location on your computer where the .WFD file resides. Choose the .WFD file and click "Open".
  6. Click "Upload" and then "OK" once the file upload is completed. Then click "Next".
  7. Click the "Select" button next to "Import Workflows". Click the "Check All" button to check all checkboxes and then the "Select" button.
  8. Click "Submit".
  9. A new folder should appear in "Policies-->Orchestration" that contains the imported workflow. You will now need to update the included tasks with information about the specific environment.

Thank you Hunter Herring

Screen Shot 2016-03-23 at 2.49.15 PM.png

Screen Shot 2016-03-23 at 2.49.19 PM.png

Screen Shot 2016-03-23 at 2.49.25 PM.png

Screen Shot 2016-03-23 at 2.49.33 PM.png

Screen Shot 2016-03-23 at 2.49.39 PM.png

The Java Script Code:

importPackage(com.cloupia.service.cIM.inframgr);//InfraPersistenceUtil

importPackage(com.cloupia.model.cIM);//GenericVM,VMWareVMSummary

importPackage(com.cloupia.fw.objstore);//ObjStoreHelper

var vmid = ctxt.getInput("VmId");

logger.addInfo("Vm Id:"+vmid);

var query = "vmId =="+vmid;

var catStoreGenericVM = ObjStoreHelper.getStore(new GenericVM().getClass());

var resultGenericVM = catStoreGenericVM.query(query);

var isRecordDeletedFromGenericVM = InfraPersistenceUtil.deleteData(query, new GenericVM().getClass());

logger.addInfo(isRecordDeletedFromGenericVM);

var catStoreVMUserData = ObjStoreHelper.getStore(new VMUserData().getClass());

var resultVMUserData = catStoreVMUserData.query(query);

var isRecordDeletedFromVMUserData = InfraPersistenceUtil.deleteData(query, new VMUserData().getClass());

logger.addInfo(isRecordDeletedFromVMUserData);

var catStoreVMWareVMSummary = ObjStoreHelper.getStore(new VMWareVMSummary().getClass());

var resultVMWareVMSummary = catStoreVMWareVMSummary.query(query);

var isRecordDeletedFromVMWareVMSummary = InfraPersistenceUtil.deleteData(query, new VMWareVMSummary().getClass());

logger.addInfo(isRecordDeletedFromVMWareVMSummary);

Comments
scottsl007
Level 1
Level 1

Just a quick note. This does not delete the actual VM. It simply removes the entry from UCS Director.

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links