Exemplo n.º 1
0
 /**
  * Sets StorageProfile
  *
  * @param   array|StorageProfile $storageProfile
  * @return  VirtualMachineProperties
  */
 public function setStorageProfile($storageProfile = null)
 {
     if (!$storageProfile instanceof StorageProfile) {
         $storageProfile = StorageProfile::initArray($storageProfile);
     }
     return $this->__call(__FUNCTION__, [$storageProfile]);
 }