Class JobStepAction
java.lang.Object
com.microsoft.azure.management.sql.JobStepAction
The action to be executed by a job step.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionsource()
Get the source of the action to execute.type()
Get type of action being executed by the job step.value()
Get the action value, for example the text of the T-SQL script to execute.withSource
(JobStepActionSource source) Set the source of the action to execute.withType
(JobStepActionType type) Set type of action being executed by the job step.Set the action value, for example the text of the T-SQL script to execute.
-
Constructor Details
-
JobStepAction
public JobStepAction()
-
-
Method Details
-
type
Get type of action being executed by the job step. Possible values include: 'TSql'.- Returns:
- the type value
-
withType
Set type of action being executed by the job step. Possible values include: 'TSql'.- Parameters:
type
- the type value to set- Returns:
- the JobStepAction object itself.
-
source
Get the source of the action to execute. Possible values include: 'Inline'.- Returns:
- the source value
-
withSource
Set the source of the action to execute. Possible values include: 'Inline'.- Parameters:
source
- the source value to set- Returns:
- the JobStepAction object itself.
-
value
Get the action value, for example the text of the T-SQL script to execute.- Returns:
- the value value
-
withValue
Set the action value, for example the text of the T-SQL script to execute.- Parameters:
value
- the value value to set- Returns:
- the JobStepAction object itself.
-