JobStep Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
JobStep() |
Initializes a new instance of the JobStep class. |
JobStep(String, String, JobStepAction, String, String, String, Nullable<Int32>, JobStepOutput, JobStepExecutionOptions) |
Initializes a new instance of the JobStep class. |
JobStep()
Initializes a new instance of the JobStep class.
public JobStep ();
Public Sub New ()
Applies to
JobStep(String, String, JobStepAction, String, String, String, Nullable<Int32>, JobStepOutput, JobStepExecutionOptions)
Initializes a new instance of the JobStep class.
public JobStep (string targetGroup, string credential, Microsoft.Azure.Management.Sql.Models.JobStepAction action, string id = default, string name = default, string type = default, int? stepId = default, Microsoft.Azure.Management.Sql.Models.JobStepOutput output = default, Microsoft.Azure.Management.Sql.Models.JobStepExecutionOptions executionOptions = default);
new Microsoft.Azure.Management.Sql.Models.JobStep : string * string * Microsoft.Azure.Management.Sql.Models.JobStepAction * string * string * string * Nullable<int> * Microsoft.Azure.Management.Sql.Models.JobStepOutput * Microsoft.Azure.Management.Sql.Models.JobStepExecutionOptions -> Microsoft.Azure.Management.Sql.Models.JobStep
Public Sub New (targetGroup As String, credential As String, action As JobStepAction, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional stepId As Nullable(Of Integer) = Nothing, Optional output As JobStepOutput = Nothing, Optional executionOptions As JobStepExecutionOptions = Nothing)
Parameters
- targetGroup
- String
The resource ID of the target group that the job step will be executed on.
- credential
- String
The resource ID of the job credential that will be used to connect to the targets.
- action
- JobStepAction
The action payload of the job step.
- id
- String
Resource ID.
- name
- String
Resource name.
- type
- String
Resource type.
The job step's index within the job. If not specified when creating the job step, it will be created as the last step. If not specified when updating the job step, the step id is not modified.
- output
- JobStepOutput
Output destination properties of the job step.
- executionOptions
- JobStepExecutionOptions
Execution options for the job step.