UserIdentity Class
- java.
lang. Object - com.
microsoft. azure. batch. protocol. models. UserIdentity
- com.
public class UserIdentity
The definition of the user identity under which the Task is run. Specify either the userName or autoUser property, but not both.
Constructor Summary
Constructor | Description | |
---|---|---|
UserIdentity() |
Method Summary
Modifier and Type | Method and Description |
---|---|
Auto |
autoUser()
Get the user |
String |
userName()
Get the user |
User |
withAutoUser(AutoUserSpecification autoUser)
Set the user |
User |
withUserName(String userName)
Set the user |
Methods inherited from java.lang.Object
Constructor Details
UserIdentity
public UserIdentity()
Method Details
autoUser
public AutoUserSpecification autoUser()
Get the userName and autoUser properties are mutually exclusive; you must specify one but not both.
Returns:
userName
public String userName()
Get the userName and autoUser properties are mutually exclusive; you must specify one but not both.
Returns:
withAutoUser
public UserIdentity withAutoUser(AutoUserSpecification autoUser)
Set the userName and autoUser properties are mutually exclusive; you must specify one but not both.
Parameters:
Returns:
withUserName
public UserIdentity withUserName(String userName)
Set the userName and autoUser properties are mutually exclusive; you must specify one but not both.
Parameters:
Returns:
Applies to
Azure SDK for Java