JobStepAction Constructors

Definition

Overloads

JobStepAction()

Initializes a new instance of the JobStepAction class.

JobStepAction(String, String, String)

Initializes a new instance of the JobStepAction class.

JobStepAction()

Initializes a new instance of the JobStepAction class.

public JobStepAction ();
Public Sub New ()

Applies to

JobStepAction(String, String, String)

Initializes a new instance of the JobStepAction class.

public JobStepAction (string value, string type = default, string source = default);
new Microsoft.Azure.Management.Sql.Models.JobStepAction : string * string * string -> Microsoft.Azure.Management.Sql.Models.JobStepAction
Public Sub New (value As String, Optional type As String = Nothing, Optional source As String = Nothing)

Parameters

value
String

The action value, for example the text of the T-SQL script to execute.

type
String

Type of action being executed by the job step. Possible values include: 'TSql'

source
String

The source of the action to execute. Possible values include: 'Inline'

Applies to