Udostępnij za pośrednictwem


IVirtualMachineOperations.BeginCreatingAsync Method

Definition

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 System.Threading.Tasks.Task<Microsoft.Azure.AzureOperationResponse> BeginCreatingAsync (string serviceName, string deploymentName, Microsoft.WindowsAzure.Management.Compute.Models.VirtualMachineCreateParameters parameters, System.Threading.CancellationToken cancellationToken);
abstract member BeginCreatingAsync : string * string * Microsoft.WindowsAzure.Management.Compute.Models.VirtualMachineCreateParameters * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.AzureOperationResponse>
Public Function BeginCreatingAsync (serviceName As String, deploymentName As String, parameters As VirtualMachineCreateParameters, cancellationToken As CancellationToken) As Task(Of AzureOperationResponse)

Parameters

serviceName
String

The name of your service.

deploymentName
String

The name of your deployment.

parameters
VirtualMachineCreateParameters

Parameters supplied to the Begin Creating Virtual Machine operation.

cancellationToken
CancellationToken

Cancellation token.

Returns

Task<Microsoft.Azure.AzureOperationResponse>

A standard service response including an HTTP status code and request ID.

Applies to