OperatingSystemListFamiliesResponse.OperatingSystem.IsActive Property

 

Gets or sets whether this operating system version is currently active for running a service.

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

Syntax

public bool IsActive { get; set; }
public:
property bool IsActive {
    bool get();
    void set(bool value);
}
member IsActive : bool with get, set
Public Property IsActive As Boolean

Property Value

Type: System.Boolean

true if this operating system version is currently active for running a service; otherwise, false.

Remarks

If an operating system version is active, you can manually configure your service to run on that version. An operating system version may be inactive for one of two reasons:

  • It is not yet active as it is in the process of being rolled out to Azure data centers. If your service is configured to use auto-upgrade, it will be upgraded to the new operating system version during the rollout. If you are manually configuring your operating system version, you can upgrade to the latest version once it becomes active.

  • It is no longer supported for running a service. In this case you will either need to manually configure your service to run on a newer version, or configure your service to use auto-upgrade to manage operating system upgrades.

See Also

OperatingSystemListFamiliesResponse.OperatingSystem Class
Microsoft.WindowsAzure.Management.Compute.Models Namespace

Return to top