LoginMode Enum

  • java.lang.Object
    • java.lang.Enum<LoginMode>
      • com.microsoft.azure.batch.protocol.models.LoginMode

public enum LoginMode

Defines values for LoginMode.

Fields

BATCH

The LOGON32_LOGON_BATCH Win32 login mode. The batch login mode is recommended for long running parallel processes.

INTERACTIVE

The LOGON32_LOGON_INTERACTIVE Win32 login mode. UAC is enabled on Windows VirtualMachineConfiguration pools. If this option is used with an elevated user identity in a Windows VirtualMachineConfiguration pool, the user session will not be elevated unless the application executed by the task command line is configured to always require administrative privilege or to always require maximum privilege.

Methods

fromString(String value)

public static LoginMode fromString(String value)

Parses a serialized value to a LoginMode instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed LoginMode object, or null if unable to parse.

toString()

public String toString()

Returns

String

Applies to