JobStepInner 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
JobStepInner() |
Initializes a new instance of the JobStepInner class. |
JobStepInner(String, String, JobStepAction, String, String, String, Nullable<Int32>, JobStepOutput, JobStepExecutionOptions) |
Initializes a new instance of the JobStepInner class. |
JobStepInner()
Initializes a new instance of the JobStepInner class.
public JobStepInner ();
Public Sub New ()
Applies to
JobStepInner(String, String, JobStepAction, String, String, String, Nullable<Int32>, JobStepOutput, JobStepExecutionOptions)
Initializes a new instance of the JobStepInner class.
public JobStepInner (string targetGroup, string credential, Microsoft.Azure.Management.Sql.Fluent.Models.JobStepAction action, string id = default, string name = default, string type = default, int? stepId = default, Microsoft.Azure.Management.Sql.Fluent.Models.JobStepOutput output = default, Microsoft.Azure.Management.Sql.Fluent.Models.JobStepExecutionOptions executionOptions = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.JobStepInner : string * string * Microsoft.Azure.Management.Sql.Fluent.Models.JobStepAction * string * string * string * Nullable<int> * Microsoft.Azure.Management.Sql.Fluent.Models.JobStepOutput * Microsoft.Azure.Management.Sql.Fluent.Models.JobStepExecutionOptions -> Microsoft.Azure.Management.Sql.Fluent.Models.JobStepInner
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
- name
- String
- type
- String
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.
Applies to
Azure SDK for .NET