DeploymentCreateParameters::StartDeployment Property

 

Gets or sets whether to start the deployment immediately after it is created.

Namespace:   Microsoft.WindowsAzure.Management.Compute.Models
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

public:
property Nullable<bool> StartDeployment {
	Nullable<bool> get();
	void set(Nullable<bool> value);
}

Property Value

Type: System::Nullable<Boolean>

true to start the deployment immediately; otherwise, false.

The default value is false. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is Suspended until you call a method to update the status. A deployed service still incurs charges, even if it is suspended.

Return to top
Show: