AutoUserSpecification Class

  • java.lang.Object
    • com.microsoft.azure.management.batch.AutoUserSpecification

public class AutoUserSpecification

Specifies the parameters for the auto user that runs a task on the Batch service.

Constructor Summary

Constructor Description
AutoUserSpecification()

Method Summary

Modifier and Type Method and Description
ElevationLevel elevationLevel()

Get the default value is nonAdmin.

AutoUserScope scope()

Get the default value is Pool.

AutoUserSpecification withElevationLevel(ElevationLevel elevationLevel)

Set the default value is nonAdmin.

AutoUserSpecification withScope(AutoUserScope scope)

Set the default value is Pool.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

AutoUserSpecification

public AutoUserSpecification()

Method Details

elevationLevel

public ElevationLevel elevationLevel()

Get the default value is nonAdmin. Possible values include: 'NonAdmin', 'Admin'.

Returns:

the elevationLevel value

scope

public AutoUserScope scope()

Get the default value is Pool. If the pool is running Windows a value of Task should be specified if stricter isolation between tasks is required. For example, if the task mutates the registry in a way which could impact other tasks, or if certificates have been specified on the pool which should not be accessible by normal tasks but should be accessible by start tasks. Possible values include: 'Task', 'Pool'.

Returns:

the scope value

withElevationLevel

public AutoUserSpecification withElevationLevel(ElevationLevel elevationLevel)

Set the default value is nonAdmin. Possible values include: 'NonAdmin', 'Admin'.

Parameters:

elevationLevel - the elevationLevel value to set

Returns:

the AutoUserSpecification object itself.

withScope

public AutoUserSpecification withScope(AutoUserScope scope)

Set the default value is Pool. If the pool is running Windows a value of Task should be specified if stricter isolation between tasks is required. For example, if the task mutates the registry in a way which could impact other tasks, or if certificates have been specified on the pool which should not be accessible by normal tasks but should be accessible by start tasks. Possible values include: 'Task', 'Pool'.

Parameters:

scope - the scope value to set

Returns:

the AutoUserSpecification object itself.

Applies to