PipelineJobUpdate 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
PipelineJobUpdate() |
Initializes a new instance of the PipelineJobUpdate class. |
PipelineJobUpdate(String, String, String, SystemData, String, String, PipelineJobState, DateTime, PipelineJobError, IList<ParameterDefinition>) |
Initializes a new instance of the PipelineJobUpdate class. |
PipelineJobUpdate()
Initializes a new instance of the PipelineJobUpdate class.
public PipelineJobUpdate ();
Public Sub New ()
Applies to
PipelineJobUpdate(String, String, String, SystemData, String, String, PipelineJobState, DateTime, PipelineJobError, IList<ParameterDefinition>)
Initializes a new instance of the PipelineJobUpdate class.
public PipelineJobUpdate (string id = default, string name = default, string type = default, Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData systemData = default, string topologyName = 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.PipelineJobUpdate : string * string * string * Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData * string * 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.PipelineJobUpdate
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional systemData As SystemData = Nothing, Optional topologyName As String = 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
- 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.
- topologyName
- String
Reference to an existing pipeline topology. When activated, this pipeline job will process content according to the pipeline topology definition.
- 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