PipelineJob 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
PipelineJob() |
Initializes a new instance of the PipelineJob class. |
PipelineJob(String, String, String, String, SystemData, String, PipelineJobState, DateTime, PipelineJobError, IList<ParameterDefinition>) |
Initializes a new instance of the PipelineJob class. |
PipelineJob()
Initializes a new instance of the PipelineJob class.
public PipelineJob ();
Public Sub New ()
Applies to
PipelineJob(String, String, String, String, SystemData, String, PipelineJobState, DateTime, PipelineJobError, IList<ParameterDefinition>)
Initializes a new instance of the PipelineJob class.
public PipelineJob (string topologyName, string id = default, string name = default, string type = default, Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData systemData = default, string description = default, Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineJobState state = default, DateTime expiration = default, Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineJobError error = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDefinition> parameters = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineJob : string * string * string * string * Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData * string * Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineJobState * DateTime * Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineJobError * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDefinition> -> Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineJob
Public Sub New (topologyName As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional systemData As SystemData = Nothing, Optional description As String = Nothing, Optional state As PipelineJobState = Nothing, Optional expiration As DateTime = Nothing, Optional error As PipelineJobError = Nothing, Optional parameters As IList(Of ParameterDefinition) = Nothing)
Parameters
- topologyName
- String
Reference to an existing pipeline topology. When activated, this pipeline job will process content according to the pipeline topology definition.
- id
- String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
- String
The name of the resource
- type
- String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- systemData
- SystemData
Azure Resource Manager metadata containing createdBy and modifiedBy information.
- description
- String
An optional description for the pipeline.
- state
- PipelineJobState
Current state of the pipeline (read-only). Possible values include: 'Processing', 'Canceled', 'Completed', 'Failed'
- expiration
- DateTime
The date-time by when this pipeline job will be automatically deleted from your account.
- error
- PipelineJobError
Details about the error, in case the pipeline job fails.
- parameters
- IList<ParameterDefinition>
List of the instance level parameter values for the user-defined topology parameters. A pipeline can only define or override parameters values for parameters which have been declared in the referenced topology. Topology parameters without a default value must be defined. Topology parameters with a default value can be optionally be overridden.
Applies to
Azure SDK for .NET