Share via


OperatingSystem.IsActive Property

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

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

Usage

'Usage
Dim instance As OperatingSystem
Dim value As Boolean

value = instance.IsActive

instance.IsActive = value

Syntax

'Declaration
Public Property IsActive As Boolean
public bool IsActive { get; set; }
public:
property bool IsActive {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_IsActive ()

/** @property */
public void set_IsActive (boolean value)
public function get IsActive () : boolean

public function set IsActive (value : boolean)

Property Value

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 Microsoft 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.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also

Reference

OperatingSystem Class
OperatingSystem Members
Microsoft.WindowsAzure.Management.Compute.Models.OperatingSystemListResponse Namespace