@@ -137,6 +137,7 @@ UserVm startVirtualMachine(StartVMCmd cmd) throws StorageUnavailableException, E
137137 * caller.
138138 *
139139 *
140+ *
140141 * @param zone
141142 * - availability zone for the virtual machine
142143 * @param serviceOffering
@@ -182,15 +183,10 @@ UserVm startVirtualMachine(StartVMCmd cmd) throws StorageUnavailableException, E
182183 * @param displayVm
183184 * - Boolean flag whether to the display the vm to the end user or not
184185 * @param affinityGroupIdList
185- * @param accountName
186- * - an optional account for the virtual machine. Must be used
187- * with domainId
188- * @param domainId
189- * - an optional domainId for the virtual machine. If the account
190- * parameter is used, domainId must also be used
191186 * @param cpuSpeed
192187 * @param memory
193188 * @param cpuNumber
189+ * @param customId
194190 * @return UserVm object if successful.
195191 *
196192 * @throws InsufficientCapacityException
@@ -204,16 +200,17 @@ UserVm startVirtualMachine(StartVMCmd cmd) throws StorageUnavailableException, E
204200 * @throws InsufficientResourcesException
205201 */
206202 UserVm createBasicSecurityGroupVirtualMachine (DataCenter zone , ServiceOffering serviceOffering , VirtualMachineTemplate template , List <Long > securityGroupIdList ,
207- Account owner , String hostName , String displayName , Long diskOfferingId , Long diskSize , String group , HypervisorType hypervisor , HTTPMethod httpmethod ,
208- String userData , String sshKeyPair , Map <Long , IpAddresses > requestedIps , IpAddresses defaultIp , Boolean displayVm , String keyboard ,
209- List <Long > affinityGroupIdList , Integer cpuSpeed , Integer memory , Integer cpuNumber , Long rootdisksize ) throws InsufficientCapacityException ,
203+ Account owner , String hostName , String displayName , Long diskOfferingId , Long diskSize , String group , HypervisorType hypervisor , HTTPMethod httpmethod ,
204+ String userData , String sshKeyPair , Map <Long , IpAddresses > requestedIps , IpAddresses defaultIp , Boolean displayVm , String keyboard ,
205+ List <Long > affinityGroupIdList , Integer cpuSpeed , Integer memory , Integer cpuNumber , Long rootdisksize , String customId ) throws InsufficientCapacityException ,
210206 ConcurrentOperationException , ResourceUnavailableException , StorageUnavailableException , ResourceAllocationException ;
211207
212208 /**
213209 * Creates a User VM in Advanced Zone (Security Group feature is enabled) in
214210 * the database and returns the VM to the caller.
215211 *
216212 *
213+ *
217214 * @param zone
218215 * - availability zone for the virtual machine
219216 * @param serviceOffering
@@ -261,15 +258,9 @@ UserVm createBasicSecurityGroupVirtualMachine(DataCenter zone, ServiceOffering s
261258 * @param displayVm
262259 * - Boolean flag whether to the display the vm to the end user or not
263260 * @param affinityGroupIdList
264- * @param accountName
265- * - an optional account for the virtual machine. Must be used
266- * with domainId
267- * @param domainId
268- * - an optional domainId for the virtual machine. If the account
269- * parameter is used, domainId must also be used
270- * @param CpuSpeed
271261 * @param memory
272262 * @param cpuNumber
263+ * @param customId
273264 * @return UserVm object if successful.
274265 *
275266 * @throws InsufficientCapacityException
@@ -283,16 +274,17 @@ UserVm createBasicSecurityGroupVirtualMachine(DataCenter zone, ServiceOffering s
283274 * @throws InsufficientResourcesException
284275 */
285276 UserVm createAdvancedSecurityGroupVirtualMachine (DataCenter zone , ServiceOffering serviceOffering , VirtualMachineTemplate template , List <Long > networkIdList ,
286- List <Long > securityGroupIdList , Account owner , String hostName , String displayName , Long diskOfferingId , Long diskSize , String group , HypervisorType hypervisor ,
287- HTTPMethod httpmethod , String userData , String sshKeyPair , Map <Long , IpAddresses > requestedIps , IpAddresses defaultIps , Boolean displayVm , String keyboard ,
288- List <Long > affinityGroupIdList , Integer cpuSpeed , Integer memory , Integer cpuNumber , Long rootdisksize ) throws InsufficientCapacityException ,
277+ List <Long > securityGroupIdList , Account owner , String hostName , String displayName , Long diskOfferingId , Long diskSize , String group , HypervisorType hypervisor ,
278+ HTTPMethod httpmethod , String userData , String sshKeyPair , Map <Long , IpAddresses > requestedIps , IpAddresses defaultIps , Boolean displayVm , String keyboard ,
279+ List <Long > affinityGroupIdList , Integer cpuSpeed , Integer memory , Integer cpuNumber , Long rootdisksize , String customId ) throws InsufficientCapacityException ,
289280 ConcurrentOperationException , ResourceUnavailableException , StorageUnavailableException , ResourceAllocationException ;
290281
291282 /**
292283 * Creates a User VM in Advanced Zone (Security Group feature is disabled)
293284 * in the database and returns the VM to the caller.
294285 *
295286 *
287+ *
296288 * @param zone
297289 * - availability zone for the virtual machine
298290 * @param serviceOffering
@@ -337,15 +329,10 @@ UserVm createAdvancedSecurityGroupVirtualMachine(DataCenter zone, ServiceOfferin
337329 * @param displayVm
338330 * - Boolean flag whether to the display the vm to the end user or not
339331 * @param affinityGroupIdList
340- * @param accountName
341- * - an optional account for the virtual machine. Must be used
342- * with domainId
343- * @param domainId
344- * - an optional domainId for the virtual machine. If the account
345- * parameter is used, domainId must also be used
346332 * @param cpuSpeed
347333 * @param memory
348334 * @param cpuNumber
335+ * @param customId
349336 * @return UserVm object if successful.
350337 *
351338 * @throws InsufficientCapacityException
@@ -359,9 +346,9 @@ UserVm createAdvancedSecurityGroupVirtualMachine(DataCenter zone, ServiceOfferin
359346 * @throws InsufficientResourcesException
360347 */
361348 UserVm createAdvancedVirtualMachine (DataCenter zone , ServiceOffering serviceOffering , VirtualMachineTemplate template , List <Long > networkIdList , Account owner ,
362- String hostName , String displayName , Long diskOfferingId , Long diskSize , String group , HypervisorType hypervisor , HTTPMethod httpmethod , String userData ,
363- String sshKeyPair , Map <Long , IpAddresses > requestedIps , IpAddresses defaultIps , Boolean displayVm , String keyboard , List <Long > affinityGroupIdList ,
364- Integer cpuSpeed , Integer memory , Integer cpuNumber , Long rootdkisksize )
349+ String hostName , String displayName , Long diskOfferingId , Long diskSize , String group , HypervisorType hypervisor , HTTPMethod httpmethod , String userData ,
350+ String sshKeyPair , Map <Long , IpAddresses > requestedIps , IpAddresses defaultIps , Boolean displayVm , String keyboard , List <Long > affinityGroupIdList ,
351+ Integer cpuSpeed , Integer memory , Integer cpuNumber , Long rootdkisksize , String customId )
365352
366353 throws InsufficientCapacityException , ConcurrentOperationException , ResourceUnavailableException , StorageUnavailableException , ResourceAllocationException ;
367354
0 commit comments