JobStepAction Class
- java.
lang. Object - com.
microsoft. azure. management. sql. JobStepAction
- com.
public class JobStepAction
The action to be executed by a job step.
Method Summary
Modifier and Type | Method and Description |
---|---|
Job |
source()
Get the source of the action to execute. Possible values include: 'Inline'. |
Job |
type()
Get type of action being executed by the job step. Possible values include: 'TSql'. |
String |
value()
Get the action value, for example the text of the T-SQL script to execute. |
Job |
withSource(JobStepActionSource source)
Set the source of the action to execute. Possible values include: 'Inline'. |
Job |
withType(JobStepActionType type)
Set type of action being executed by the job step. Possible values include: 'TSql'. |
Job |
withValue(String value)
Set the action value, for example the text of the T-SQL script to execute. |
Method Details
source
public JobStepActionSource source()
Get the source of the action to execute. Possible values include: 'Inline'.
Returns:
type
public JobStepActionType type()
Get type of action being executed by the job step. Possible values include: 'TSql'.
Returns:
value
public String value()
Get the action value, for example the text of the T-SQL script to execute.
Returns:
withSource
public JobStepAction withSource(JobStepActionSource source)
Set the source of the action to execute. Possible values include: 'Inline'.
Parameters:
Returns:
withType
public JobStepAction withType(JobStepActionType type)
Set type of action being executed by the job step. Possible values include: 'TSql'.
Parameters:
Returns:
withValue
public JobStepAction withValue(String value)
Set the action value, for example the text of the T-SQL script to execute.
Parameters:
Returns:
Applies to
Azure SDK for Java