OutputFileUploadCondition Enum

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

public enum OutputFileUploadCondition

Defines values for OutputFileUploadCondition.

Fields

TASK_COMPLETION

Upload the file(s) after the task process exits, no matter what the exit code was.

TASK_FAILURE

Upload the file(s) only after the task process exits with a nonzero exit code.

TASK_SUCCESS

Upload the file(s) only after the task process exits with an exit code of 0.

Methods

fromString(String value)

public static OutputFileUploadCondition fromString(String value)

Parses a serialized value to a OutputFileUploadCondition instance.

Parameters

value
String
the serialized value to parse.

Returns

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

toString()

public String toString()

Returns

String

Applies to