flowlsj's Posts

Hi stumper, Thanks for your reply! I want to use some vvol related object and methods like "VvolDatastoreInfo" listed here vSphere 6.0 Documentation Center. In my company, we maintain a privat... See more...
Hi stumper, Thanks for your reply! I want to use some vvol related object and methods like "VvolDatastoreInfo" listed here vSphere 6.0 Documentation Center. In my company, we maintain a private repo, so everyone can get the latest APIs by running 'ppm update/install VIPerlToolKit'. We are using Activate Perl, but the VIPerlToolKit it provides always cannot catch up with "Vmware vSphere SDK for Perl". The installer will install additional tools more than we need and it is not efficient for hundreds of users to install, we just want the modules we need to develop Perl program to manage vSphere. Thanks Louis
Hi there, Did you have any experience on how to build the VIPerlToolKit from the resource here please? What I want to do is to let people get the new APIs in SDK 6.0 by run "ppm install vip... See more...
Hi there, Did you have any experience on how to build the VIPerlToolKit from the resource here please? What I want to do is to let people get the new APIs in SDK 6.0 by run "ppm install viperltoolkit", but seems ppm only supports version 5.5 now. Is there any way I can make that work please? Thanks Louis
Hi mpr4ful, Thanks for your answer, but I did log into server. Sorry to miss it here $vimObj->login(username => xxx, password => xxx'); Thanks
Hi, When I use ViPerlToolkit to create a virtual disk on a datastore, I always get this error, do you have any idea on this please? my codes are like:      my $vimObj = Vim->new(server =... See more...
Hi, When I use ViPerlToolkit to create a virtual disk on a datastore, I always get this error, do you have any idea on this please? my codes are like:      my $vimObj = Vim->new(server => XXX);      my $content = $vimObj->get_service_content();      my $vDiskManager= $vimObj->get_view(mo_ref => $content->virtualDiskManager);      $vDiskManager->CreateVirtualDisk_Task(         name => XXX,         spec => XXX,     ); Any comments will be appreciate! Thanks