TransformOutput Class
Describes the properties of a TransformOutput, which are the rules to be applied while generating the desired output.
All required parameters must be populated in order to send to Azure.
- Inheritance
-
azure.mgmt.media._serialization.ModelTransformOutput
Constructor
TransformOutput(*, preset: _models.Preset, on_error: str | _models.OnErrorType | None = None, relative_priority: str | _models.Priority | None = None, **kwargs)
Keyword-Only Parameters
Name | Description |
---|---|
on_error
|
str or
OnErrorType
A Transform can define more than one outputs. This property defines what the service should do when one output fails - either continue to produce other outputs, or, stop the other outputs. The overall Job state will not reflect failures of outputs that are specified with 'ContinueJob'. The default is 'StopProcessingJob'. Known values are: "StopProcessingJob" and "ContinueJob". |
relative_priority
|
Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal. Known values are: "Low", "Normal", and "High". |
preset
|
Preset that describes the operations that will be used to modify, transcode, or extract insights from the source file to generate the output. Required. |
Variables
Name | Description |
---|---|
on_error
|
str or
OnErrorType
A Transform can define more than one outputs. This property defines what the service should do when one output fails - either continue to produce other outputs, or, stop the other outputs. The overall Job state will not reflect failures of outputs that are specified with 'ContinueJob'. The default is 'StopProcessingJob'. Known values are: "StopProcessingJob" and "ContinueJob". |
relative_priority
|
Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal. Known values are: "Low", "Normal", and "High". |
preset
|
Preset that describes the operations that will be used to modify, transcode, or extract insights from the source file to generate the output. Required. |
Azure SDK for Python