VirtualMachineOperationsExtensions.BeginCreating Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Begin Creating Role operation adds a virtual machine to an existing deployment. You can refer to the OSDisk in the Add Role operation in the following ways: Platform/User Image - Set the SourceImageName to a platform or user image. You can optionally specify the DiskName and MediaLink values as part the operation to control the name and location of target disk. When DiskName and MediaLink are specified in this mode, they must not already exist in the system, otherwise a conflict fault is returned; UserDisk - Set DiskName to a user supplied image in image repository. SourceImageName must be set to NULL. All other properties are ignored; or Blob in a Storage Account - Set MediaLink to a blob containing the image. SourceImageName and DiskName are set to NULL. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157186.aspx for more information)
public static Microsoft.Azure.AzureOperationResponse BeginCreating (this Microsoft.WindowsAzure.Management.Compute.IVirtualMachineOperations operations, string serviceName, string deploymentName, Microsoft.WindowsAzure.Management.Compute.Models.VirtualMachineCreateParameters parameters);
static member BeginCreating : Microsoft.WindowsAzure.Management.Compute.IVirtualMachineOperations * string * string * Microsoft.WindowsAzure.Management.Compute.Models.VirtualMachineCreateParameters -> Microsoft.Azure.AzureOperationResponse
<Extension()>
Public Function BeginCreating (operations As IVirtualMachineOperations, serviceName As String, deploymentName As String, parameters As VirtualMachineCreateParameters) As AzureOperationResponse
Parameters
- operations
- IVirtualMachineOperations
Reference to the Microsoft.WindowsAzure.Management.Compute.IVirtualMachineOperations.
- serviceName
- String
Required. The name of your service.
- deploymentName
- String
Required. The name of your deployment.
- parameters
- VirtualMachineCreateParameters
Required. Parameters supplied to the Begin Creating Virtual Machine operation.
Returns
A standard service response including an HTTP status code and request ID.
Applies to
Azure SDK for .NET