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)
Syntax
public Nullable<bool> StartDeployment { get; set; }
public:
property Nullable<bool> StartDeployment {
Nullable<bool> get();
void set(Nullable<bool> value);
}
member StartDeployment : Nullable<bool> with get, set
Public Property StartDeployment As Nullable(Of Boolean)
Property Value
Type: System.Nullable<Boolean>
true to start the deployment immediately; otherwise, false.
Remarks
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.
See Also
DeploymentCreateParameters Class
Microsoft.WindowsAzure.Management.Compute.Models Namespace
Return to top