azure-native.media.Job
Explore with Pulumi AI
A Job resource type. The progress and state can be obtained by polling a Job or subscribing to events using EventGrid. API Version: 2020-05-01.
Example Usage
Create a Job
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var job = new AzureNative.Media.Job("job", new()
{
AccountName = "contosomedia",
CorrelationData =
{
{ "Key 2", "Value 2" },
{ "key1", "value1" },
},
Input = new AzureNative.Media.Inputs.JobInputAssetArgs
{
AssetName = "job1-InputAsset",
OdataType = "#Microsoft.Media.JobInputAsset",
},
JobName = "job1",
Outputs = new[]
{
{
{ "assetName", "job1-OutputAsset" },
{ "odataType", "#Microsoft.Media.JobOutputAsset" },
},
},
ResourceGroupName = "contosoresources",
TransformName = "exampleTransform",
});
});
package main
import (
media "github.com/pulumi/pulumi-azure-native-sdk/media"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := media.NewJob(ctx, "job", &media.JobArgs{
AccountName: pulumi.String("contosomedia"),
CorrelationData: pulumi.StringMap{
"Key 2": pulumi.String("Value 2"),
"key1": pulumi.String("value1"),
},
Input: media.JobInputAsset{
AssetName: "job1-InputAsset",
OdataType: "#Microsoft.Media.JobInputAsset",
},
JobName: pulumi.String("job1"),
Outputs: []media.JobOutputAssetArgs{
{
AssetName: pulumi.String("job1-OutputAsset"),
OdataType: pulumi.String("#Microsoft.Media.JobOutputAsset"),
},
},
ResourceGroupName: pulumi.String("contosoresources"),
TransformName: pulumi.String("exampleTransform"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.media.Job;
import com.pulumi.azurenative.media.JobArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var job = new Job("job", JobArgs.builder()
.accountName("contosomedia")
.correlationData(Map.ofEntries(
Map.entry("Key 2", "Value 2"),
Map.entry("key1", "value1")
))
.input(Map.ofEntries(
Map.entry("assetName", "job1-InputAsset"),
Map.entry("odataType", "#Microsoft.Media.JobInputAsset")
))
.jobName("job1")
.outputs(Map.ofEntries(
Map.entry("assetName", "job1-OutputAsset"),
Map.entry("odataType", "#Microsoft.Media.JobOutputAsset")
))
.resourceGroupName("contosoresources")
.transformName("exampleTransform")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
job = azure_native.media.Job("job",
account_name="contosomedia",
correlation_data={
"Key 2": "Value 2",
"key1": "value1",
},
input=azure_native.media.JobInputAssetArgs(
asset_name="job1-InputAsset",
odata_type="#Microsoft.Media.JobInputAsset",
),
job_name="job1",
outputs=[azure_native.media.JobOutputAssetResponseArgs(
asset_name="job1-OutputAsset",
odata_type="#Microsoft.Media.JobOutputAsset",
)],
resource_group_name="contosoresources",
transform_name="exampleTransform")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const job = new azure_native.media.Job("job", {
accountName: "contosomedia",
correlationData: {
"Key 2": "Value 2",
key1: "value1",
},
input: {
assetName: "job1-InputAsset",
odataType: "#Microsoft.Media.JobInputAsset",
},
jobName: "job1",
outputs: [{
assetName: "job1-OutputAsset",
odataType: "#Microsoft.Media.JobOutputAsset",
}],
resourceGroupName: "contosoresources",
transformName: "exampleTransform",
});
resources:
job:
type: azure-native:media:Job
properties:
accountName: contosomedia
correlationData:
Key 2: Value 2
key1: value1
input:
assetName: job1-InputAsset
odataType: '#Microsoft.Media.JobInputAsset'
jobName: job1
outputs:
- assetName: job1-OutputAsset
odataType: '#Microsoft.Media.JobOutputAsset'
resourceGroupName: contosoresources
transformName: exampleTransform
Create Job Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Job(name: string, args: JobArgs, opts?: CustomResourceOptions);
@overload
def Job(resource_name: str,
args: JobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Job(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
input: Optional[Union[JobInputAssetArgs, JobInputClipArgs, JobInputHttpArgs, JobInputSequenceArgs, JobInputsArgs]] = None,
outputs: Optional[Sequence[JobOutputAssetArgs]] = None,
resource_group_name: Optional[str] = None,
transform_name: Optional[str] = None,
correlation_data: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
job_name: Optional[str] = None,
priority: Optional[Union[str, Priority]] = None)
func NewJob(ctx *Context, name string, args JobArgs, opts ...ResourceOption) (*Job, error)
public Job(string name, JobArgs args, CustomResourceOptions? opts = null)
type: azure-native:media:Job
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args JobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplejobResourceResourceFromMedia = new AzureNative.Media.Job("examplejobResourceResourceFromMedia", new()
{
AccountName = "string",
Input =
{
{ "assetName", "string" },
{ "odataType", "#Microsoft.Media.JobInputAsset" },
{ "end",
{
{ "odataType", "#Microsoft.Media.AbsoluteClipTime" },
{ "time", "string" },
} },
{ "files", new[]
{
"string",
} },
{ "inputDefinitions", new[]
{
{
{ "odataType", "#Microsoft.Media.FromAllInputFile" },
{ "includedTracks", new[]
{
{
{ "odataType", "#Microsoft.Media.AudioTrackDescriptor" },
{ "channelMapping", "string" },
},
} },
},
} },
{ "label", "string" },
{ "start",
{
{ "odataType", "#Microsoft.Media.AbsoluteClipTime" },
{ "time", "string" },
} },
},
Outputs = new[]
{
{
{ "assetName", "string" },
{ "odataType", "#Microsoft.Media.JobOutputAsset" },
{ "label", "string" },
},
},
ResourceGroupName = "string",
TransformName = "string",
CorrelationData =
{
{ "string", "string" },
},
Description = "string",
JobName = "string",
Priority = "string",
});
example, err := media.NewJob(ctx, "examplejobResourceResourceFromMedia", &media.JobArgs{
AccountName: "string",
Input: map[string]interface{}{
"assetName": "string",
"odataType": "#Microsoft.Media.JobInputAsset",
"end": map[string]interface{}{
"odataType": "#Microsoft.Media.AbsoluteClipTime",
"time": "string",
},
"files": []string{
"string",
},
"inputDefinitions": []map[string]interface{}{
map[string]interface{}{
"odataType": "#Microsoft.Media.FromAllInputFile",
"includedTracks": []map[string]interface{}{
map[string]interface{}{
"odataType": "#Microsoft.Media.AudioTrackDescriptor",
"channelMapping": "string",
},
},
},
},
"label": "string",
"start": map[string]interface{}{
"odataType": "#Microsoft.Media.AbsoluteClipTime",
"time": "string",
},
},
Outputs: []map[string]interface{}{
map[string]interface{}{
"assetName": "string",
"odataType": "#Microsoft.Media.JobOutputAsset",
"label": "string",
},
},
ResourceGroupName: "string",
TransformName: "string",
CorrelationData: map[string]interface{}{
"string": "string",
},
Description: "string",
JobName: "string",
Priority: "string",
})
var examplejobResourceResourceFromMedia = new Job("examplejobResourceResourceFromMedia", JobArgs.builder()
.accountName("string")
.input(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.outputs(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.transformName("string")
.correlationData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.description("string")
.jobName("string")
.priority("string")
.build());
examplejob_resource_resource_from_media = azure_native.media.Job("examplejobResourceResourceFromMedia",
account_name=string,
input={
assetName: string,
odataType: #Microsoft.Media.JobInputAsset,
end: {
odataType: #Microsoft.Media.AbsoluteClipTime,
time: string,
},
files: [string],
inputDefinitions: [{
odataType: #Microsoft.Media.FromAllInputFile,
includedTracks: [{
odataType: #Microsoft.Media.AudioTrackDescriptor,
channelMapping: string,
}],
}],
label: string,
start: {
odataType: #Microsoft.Media.AbsoluteClipTime,
time: string,
},
},
outputs=[{
assetName: string,
odataType: #Microsoft.Media.JobOutputAsset,
label: string,
}],
resource_group_name=string,
transform_name=string,
correlation_data={
string: string,
},
description=string,
job_name=string,
priority=string)
const examplejobResourceResourceFromMedia = new azure_native.media.Job("examplejobResourceResourceFromMedia", {
accountName: "string",
input: {
assetName: "string",
odataType: "#Microsoft.Media.JobInputAsset",
end: {
odataType: "#Microsoft.Media.AbsoluteClipTime",
time: "string",
},
files: ["string"],
inputDefinitions: [{
odataType: "#Microsoft.Media.FromAllInputFile",
includedTracks: [{
odataType: "#Microsoft.Media.AudioTrackDescriptor",
channelMapping: "string",
}],
}],
label: "string",
start: {
odataType: "#Microsoft.Media.AbsoluteClipTime",
time: "string",
},
},
outputs: [{
assetName: "string",
odataType: "#Microsoft.Media.JobOutputAsset",
label: "string",
}],
resourceGroupName: "string",
transformName: "string",
correlationData: {
string: "string",
},
description: "string",
jobName: "string",
priority: "string",
});
type: azure-native:media:Job
properties:
accountName: string
correlationData:
string: string
description: string
input:
assetName: string
end:
odataType: '#Microsoft.Media.AbsoluteClipTime'
time: string
files:
- string
inputDefinitions:
- includedTracks:
- channelMapping: string
odataType: '#Microsoft.Media.AudioTrackDescriptor'
odataType: '#Microsoft.Media.FromAllInputFile'
label: string
odataType: '#Microsoft.Media.JobInputAsset'
start:
odataType: '#Microsoft.Media.AbsoluteClipTime'
time: string
jobName: string
outputs:
- assetName: string
label: string
odataType: '#Microsoft.Media.JobOutputAsset'
priority: string
resourceGroupName: string
transformName: string
Job Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Job resource accepts the following input properties:
- Account
Name string - The Media Services account name.
- Input
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Job Input Asset Azure | Pulumi.Native. Media. Inputs. Job Input Clip Azure | Pulumi.Native. Media. Inputs. Job Input Http Azure | Pulumi.Native. Media. Inputs. Job Input Sequence Azure Native. Media. Inputs. Job Inputs - The inputs for the Job.
- Outputs
List<Pulumi.
Azure Native. Media. Inputs. Job Output Asset> - The outputs for the Job.
- Resource
Group stringName - The name of the resource group within the Azure subscription.
- Transform
Name string - The Transform name.
- Correlation
Data Dictionary<string, string> - Customer provided key, value pairs that will be returned in Job and JobOutput state events.
- Description string
- Optional customer supplied description of the Job.
- Job
Name string - The Job name.
- Priority
string | Pulumi.
Azure Native. Media. Priority - Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.
- Account
Name string - The Media Services account name.
- Input
Job
Input | JobAsset Args Input | JobClip Args Input | JobHttp Args Input | JobSequence Args Inputs Args - The inputs for the Job.
- Outputs
[]Job
Output Asset Args - The outputs for the Job.
- Resource
Group stringName - The name of the resource group within the Azure subscription.
- Transform
Name string - The Transform name.
- Correlation
Data map[string]string - Customer provided key, value pairs that will be returned in Job and JobOutput state events.
- Description string
- Optional customer supplied description of the Job.
- Job
Name string - The Job name.
- Priority string | Priority
- Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.
- account
Name String - The Media Services account name.
- input
Job
Input | JobAsset Input | JobClip Input | JobHttp Input | JobSequence Inputs - The inputs for the Job.
- outputs
List<Job
Output Asset> - The outputs for the Job.
- resource
Group StringName - The name of the resource group within the Azure subscription.
- transform
Name String - The Transform name.
- correlation
Data Map<String,String> - Customer provided key, value pairs that will be returned in Job and JobOutput state events.
- description String
- Optional customer supplied description of the Job.
- job
Name String - The Job name.
- priority String | Priority
- Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.
- account
Name string - The Media Services account name.
- input
Job
Input | JobAsset Input | JobClip Input | JobHttp Input | JobSequence Inputs - The inputs for the Job.
- outputs
Job
Output Asset[] - The outputs for the Job.
- resource
Group stringName - The name of the resource group within the Azure subscription.
- transform
Name string - The Transform name.
- correlation
Data {[key: string]: string} - Customer provided key, value pairs that will be returned in Job and JobOutput state events.
- description string
- Optional customer supplied description of the Job.
- job
Name string - The Job name.
- priority string | Priority
- Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.
- account_
name str - The Media Services account name.
- input
Job
Input | JobAsset Args Input | JobClip Args Input | JobHttp Args Input | JobSequence Args Inputs Args - The inputs for the Job.
- outputs
Sequence[Job
Output Asset Args] - The outputs for the Job.
- resource_
group_ strname - The name of the resource group within the Azure subscription.
- transform_
name str - The Transform name.
- correlation_
data Mapping[str, str] - Customer provided key, value pairs that will be returned in Job and JobOutput state events.
- description str
- Optional customer supplied description of the Job.
- job_
name str - The Job name.
- priority str | Priority
- Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.
- account
Name String - The Media Services account name.
- input Property Map | Property Map | Property Map | Property Map | Property Map
- The inputs for the Job.
- outputs List<Property Map>
- The outputs for the Job.
- resource
Group StringName - The name of the resource group within the Azure subscription.
- transform
Name String - The Transform name.
- correlation
Data Map<String> - Customer provided key, value pairs that will be returned in Job and JobOutput state events.
- description String
- Optional customer supplied description of the Job.
- job
Name String - The Job name.
- priority String | "Low" | "Normal" | "High"
- Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.
Outputs
All input properties are implicitly available as output properties. Additionally, the Job resource produces the following output properties:
- Created string
- The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- End
Time string - The UTC date and time at which this Job finished processing.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified string - The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- Name string
- The name of the resource
- Start
Time string - The UTC date and time at which this Job began processing.
- State string
- The current state of the job.
- System
Data Pulumi.Azure Native. Media. Outputs. System Data Response - The system metadata relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Created string
- The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- End
Time string - The UTC date and time at which this Job finished processing.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified string - The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- Name string
- The name of the resource
- Start
Time string - The UTC date and time at which this Job began processing.
- State string
- The current state of the job.
- System
Data SystemData Response - The system metadata relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- created String
- The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- end
Time String - The UTC date and time at which this Job finished processing.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified String - The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- name String
- The name of the resource
- start
Time String - The UTC date and time at which this Job began processing.
- state String
- The current state of the job.
- system
Data SystemData Response - The system metadata relating to this resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- created string
- The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- end
Time string - The UTC date and time at which this Job finished processing.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified string - The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- name string
- The name of the resource
- start
Time string - The UTC date and time at which this Job began processing.
- state string
- The current state of the job.
- system
Data SystemData Response - The system metadata relating to this resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- created str
- The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- end_
time str - The UTC date and time at which this Job finished processing.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified str - The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- name str
- The name of the resource
- start_
time str - The UTC date and time at which this Job began processing.
- state str
- The current state of the job.
- system_
data SystemData Response - The system metadata relating to this resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- created String
- The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- end
Time String - The UTC date and time at which this Job finished processing.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified String - The UTC date and time when the customer has last updated the Job, in 'YYYY-MM-DDThh:mm:ssZ' format.
- name String
- The name of the resource
- start
Time String - The UTC date and time at which this Job began processing.
- state String
- The current state of the job.
- system
Data Property Map - The system metadata relating to this resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AbsoluteClipTime, AbsoluteClipTimeArgs
- Time string
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- Time string
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time String
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time string
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time str
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time String
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
AbsoluteClipTimeResponse, AbsoluteClipTimeResponseArgs
- Time string
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- Time string
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time String
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time string
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time str
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
- time String
- The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.
AttributeFilter, AttributeFilterArgs
- All
- AllAll tracks will be included.
- Top
- TopThe first track will be included when the attribute is sorted in descending order. Generally used to select the largest bitrate.
- Bottom
- BottomThe first track will be included when the attribute is sorted in ascending order. Generally used to select the smallest bitrate.
- Value
Equals - ValueEqualsAny tracks that have an attribute equal to the value given will be included.
- Attribute
Filter All - AllAll tracks will be included.
- Attribute
Filter Top - TopThe first track will be included when the attribute is sorted in descending order. Generally used to select the largest bitrate.
- Attribute
Filter Bottom - BottomThe first track will be included when the attribute is sorted in ascending order. Generally used to select the smallest bitrate.
- Attribute
Filter Value Equals - ValueEqualsAny tracks that have an attribute equal to the value given will be included.
- All
- AllAll tracks will be included.
- Top
- TopThe first track will be included when the attribute is sorted in descending order. Generally used to select the largest bitrate.
- Bottom
- BottomThe first track will be included when the attribute is sorted in ascending order. Generally used to select the smallest bitrate.
- Value
Equals - ValueEqualsAny tracks that have an attribute equal to the value given will be included.
- All
- AllAll tracks will be included.
- Top
- TopThe first track will be included when the attribute is sorted in descending order. Generally used to select the largest bitrate.
- Bottom
- BottomThe first track will be included when the attribute is sorted in ascending order. Generally used to select the smallest bitrate.
- Value
Equals - ValueEqualsAny tracks that have an attribute equal to the value given will be included.
- ALL
- AllAll tracks will be included.
- TOP
- TopThe first track will be included when the attribute is sorted in descending order. Generally used to select the largest bitrate.
- BOTTOM
- BottomThe first track will be included when the attribute is sorted in ascending order. Generally used to select the smallest bitrate.
- VALUE_EQUALS
- ValueEqualsAny tracks that have an attribute equal to the value given will be included.
- "All"
- AllAll tracks will be included.
- "Top"
- TopThe first track will be included when the attribute is sorted in descending order. Generally used to select the largest bitrate.
- "Bottom"
- BottomThe first track will be included when the attribute is sorted in ascending order. Generally used to select the smallest bitrate.
- "Value
Equals" - ValueEqualsAny tracks that have an attribute equal to the value given will be included.
AudioTrackDescriptor, AudioTrackDescriptorArgs
- Channel
Mapping string | Pulumi.Azure Native. Media. Channel Mapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Channel
Mapping string | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel
Mapping String | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel
Mapping string | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel_
mapping str | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel
Mapping String | "FrontLeft" | "Front Right" | "Center" | "Low Frequency Effects" | "Back Left" | "Back Right" | "Stereo Left" | "Stereo Right" - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
AudioTrackDescriptorResponse, AudioTrackDescriptorResponseArgs
- Channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel
Mapping String - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel_
mapping str - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- channel
Mapping String - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
ChannelMapping, ChannelMappingArgs
- Front
Left - FrontLeftThe Front Left Channel.
- Front
Right - FrontRightThe Front Right Channel.
- Center
- CenterThe Center Channel.
- Low
Frequency Effects - LowFrequencyEffectsLow Frequency Effects Channel. Sometimes referred to as the Subwoofer.
- Back
Left - BackLeftThe Back Left Channel. Sometimes referred to as the Left Surround Channel.
- Back
Right - BackRightThe Back Right Channel. Sometimes referred to as the Right Surround Channel.
- Stereo
Left - StereoLeftThe Left Stereo channel. Sometimes referred to as Down Mix Left.
- Stereo
Right - StereoRightThe Right Stereo channel. Sometimes referred to as Down Mix Right.
- Channel
Mapping Front Left - FrontLeftThe Front Left Channel.
- Channel
Mapping Front Right - FrontRightThe Front Right Channel.
- Channel
Mapping Center - CenterThe Center Channel.
- Channel
Mapping Low Frequency Effects - LowFrequencyEffectsLow Frequency Effects Channel. Sometimes referred to as the Subwoofer.
- Channel
Mapping Back Left - BackLeftThe Back Left Channel. Sometimes referred to as the Left Surround Channel.
- Channel
Mapping Back Right - BackRightThe Back Right Channel. Sometimes referred to as the Right Surround Channel.
- Channel
Mapping Stereo Left - StereoLeftThe Left Stereo channel. Sometimes referred to as Down Mix Left.
- Channel
Mapping Stereo Right - StereoRightThe Right Stereo channel. Sometimes referred to as Down Mix Right.
- Front
Left - FrontLeftThe Front Left Channel.
- Front
Right - FrontRightThe Front Right Channel.
- Center
- CenterThe Center Channel.
- Low
Frequency Effects - LowFrequencyEffectsLow Frequency Effects Channel. Sometimes referred to as the Subwoofer.
- Back
Left - BackLeftThe Back Left Channel. Sometimes referred to as the Left Surround Channel.
- Back
Right - BackRightThe Back Right Channel. Sometimes referred to as the Right Surround Channel.
- Stereo
Left - StereoLeftThe Left Stereo channel. Sometimes referred to as Down Mix Left.
- Stereo
Right - StereoRightThe Right Stereo channel. Sometimes referred to as Down Mix Right.
- Front
Left - FrontLeftThe Front Left Channel.
- Front
Right - FrontRightThe Front Right Channel.
- Center
- CenterThe Center Channel.
- Low
Frequency Effects - LowFrequencyEffectsLow Frequency Effects Channel. Sometimes referred to as the Subwoofer.
- Back
Left - BackLeftThe Back Left Channel. Sometimes referred to as the Left Surround Channel.
- Back
Right - BackRightThe Back Right Channel. Sometimes referred to as the Right Surround Channel.
- Stereo
Left - StereoLeftThe Left Stereo channel. Sometimes referred to as Down Mix Left.
- Stereo
Right - StereoRightThe Right Stereo channel. Sometimes referred to as Down Mix Right.
- FRONT_LEFT
- FrontLeftThe Front Left Channel.
- FRONT_RIGHT
- FrontRightThe Front Right Channel.
- CENTER
- CenterThe Center Channel.
- LOW_FREQUENCY_EFFECTS
- LowFrequencyEffectsLow Frequency Effects Channel. Sometimes referred to as the Subwoofer.
- BACK_LEFT
- BackLeftThe Back Left Channel. Sometimes referred to as the Left Surround Channel.
- BACK_RIGHT
- BackRightThe Back Right Channel. Sometimes referred to as the Right Surround Channel.
- STEREO_LEFT
- StereoLeftThe Left Stereo channel. Sometimes referred to as Down Mix Left.
- STEREO_RIGHT
- StereoRightThe Right Stereo channel. Sometimes referred to as Down Mix Right.
- "Front
Left" - FrontLeftThe Front Left Channel.
- "Front
Right" - FrontRightThe Front Right Channel.
- "Center"
- CenterThe Center Channel.
- "Low
Frequency Effects" - LowFrequencyEffectsLow Frequency Effects Channel. Sometimes referred to as the Subwoofer.
- "Back
Left" - BackLeftThe Back Left Channel. Sometimes referred to as the Left Surround Channel.
- "Back
Right" - BackRightThe Back Right Channel. Sometimes referred to as the Right Surround Channel.
- "Stereo
Left" - StereoLeftThe Left Stereo channel. Sometimes referred to as Down Mix Left.
- "Stereo
Right" - StereoRightThe Right Stereo channel. Sometimes referred to as Down Mix Right.
FromAllInputFile, FromAllInputFileArgs
- Included
Tracks List<object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- Included
Tracks []interface{} - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks (AudioTrack Descriptor | Select Audio Track By Attribute | Select Audio Track By Id | Select Video Track By Attribute | Select Video Track By Id | Video Track Descriptor)[] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included_
tracks Sequence[Union[AudioTrack Descriptor, Select Audio Track By Attribute, Select Audio Track By Id, Select Video Track By Attribute, Select Video Track By Id, Video Track Descriptor]] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
FromAllInputFileResponse, FromAllInputFileResponseArgs
- Included
Tracks List<object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- Included
Tracks []interface{} - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks (AudioTrack Descriptor Response | Select Audio Track By Attribute Response | Select Audio Track By Id Response | Select Video Track By Attribute Response | Select Video Track By Id Response | Video Track Descriptor Response)[] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included_
tracks Sequence[Union[AudioTrack Descriptor Response, Select Audio Track By Attribute Response, Select Audio Track By Id Response, Select Video Track By Attribute Response, Select Video Track By Id Response, Video Track Descriptor Response]] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
FromEachInputFile, FromEachInputFileArgs
- Included
Tracks List<object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- Included
Tracks []interface{} - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks (AudioTrack Descriptor | Select Audio Track By Attribute | Select Audio Track By Id | Select Video Track By Attribute | Select Video Track By Id | Video Track Descriptor)[] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included_
tracks Sequence[Union[AudioTrack Descriptor, Select Audio Track By Attribute, Select Audio Track By Id, Select Video Track By Attribute, Select Video Track By Id, Video Track Descriptor]] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
FromEachInputFileResponse, FromEachInputFileResponseArgs
- Included
Tracks List<object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- Included
Tracks []interface{} - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks (AudioTrack Descriptor Response | Select Audio Track By Attribute Response | Select Audio Track By Id Response | Select Video Track By Attribute Response | Select Video Track By Id Response | Video Track Descriptor Response)[] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included_
tracks Sequence[Union[AudioTrack Descriptor Response, Select Audio Track By Attribute Response, Select Audio Track By Id Response, Select Video Track By Attribute Response, Select Video Track By Id Response, Video Track Descriptor Response]] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- included
Tracks List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
InputFile, InputFileArgs
- Filename string
- Name of the file that this input definition applies to.
- Included
Tracks List<object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- Filename string
- Name of the file that this input definition applies to.
- Included
Tracks []interface{} - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename String
- Name of the file that this input definition applies to.
- included
Tracks List<Object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename string
- Name of the file that this input definition applies to.
- included
Tracks (AudioTrack Descriptor | Select Audio Track By Attribute | Select Audio Track By Id | Select Video Track By Attribute | Select Video Track By Id | Video Track Descriptor)[] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename str
- Name of the file that this input definition applies to.
- included_
tracks Sequence[Union[AudioTrack Descriptor, Select Audio Track By Attribute, Select Audio Track By Id, Select Video Track By Attribute, Select Video Track By Id, Video Track Descriptor]] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename String
- Name of the file that this input definition applies to.
- included
Tracks List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
InputFileResponse, InputFileResponseArgs
- Filename string
- Name of the file that this input definition applies to.
- Included
Tracks List<object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- Filename string
- Name of the file that this input definition applies to.
- Included
Tracks []interface{} - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename String
- Name of the file that this input definition applies to.
- included
Tracks List<Object> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename string
- Name of the file that this input definition applies to.
- included
Tracks (AudioTrack Descriptor Response | Select Audio Track By Attribute Response | Select Audio Track By Id Response | Select Video Track By Attribute Response | Select Video Track By Id Response | Video Track Descriptor Response)[] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename str
- Name of the file that this input definition applies to.
- included_
tracks Sequence[Union[AudioTrack Descriptor Response, Select Audio Track By Attribute Response, Select Audio Track By Id Response, Select Video Track By Attribute Response, Select Video Track By Id Response, Video Track Descriptor Response]] - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
- filename String
- Name of the file that this input definition applies to.
- included
Tracks List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map> - The list of TrackDescriptors which define the metadata and selection of tracks in the input.
JobErrorDetailResponse, JobErrorDetailResponseArgs
JobErrorResponse, JobErrorResponseArgs
- Category string
- Helps with categorization of errors.
- Code string
- Error code describing the error.
- Details
List<Pulumi.
Azure Native. Media. Inputs. Job Error Detail Response> - An array of details about specific errors that led to this reported error.
- Message string
- A human-readable language-dependent representation of the error.
- Retry string
- Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.
- Category string
- Helps with categorization of errors.
- Code string
- Error code describing the error.
- Details
[]Job
Error Detail Response - An array of details about specific errors that led to this reported error.
- Message string
- A human-readable language-dependent representation of the error.
- Retry string
- Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.
- category String
- Helps with categorization of errors.
- code String
- Error code describing the error.
- details
List<Job
Error Detail Response> - An array of details about specific errors that led to this reported error.
- message String
- A human-readable language-dependent representation of the error.
- retry String
- Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.
- category string
- Helps with categorization of errors.
- code string
- Error code describing the error.
- details
Job
Error Detail Response[] - An array of details about specific errors that led to this reported error.
- message string
- A human-readable language-dependent representation of the error.
- retry string
- Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.
- category str
- Helps with categorization of errors.
- code str
- Error code describing the error.
- details
Sequence[Job
Error Detail Response] - An array of details about specific errors that led to this reported error.
- message str
- A human-readable language-dependent representation of the error.
- retry str
- Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.
- category String
- Helps with categorization of errors.
- code String
- Error code describing the error.
- details List<Property Map>
- An array of details about specific errors that led to this reported error.
- message String
- A human-readable language-dependent representation of the error.
- retry String
- Indicates that it may be possible to retry the Job. If retry is unsuccessful, please contact Azure support via Azure Portal.
JobInputAsset, JobInputAssetArgs
- Asset
Name string - The name of the input Asset.
- End
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Azure Native. Media. Inputs. Utc Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files List<string>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions List<object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Azure Native. Media. Inputs. Utc Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- Asset
Name string - The name of the input Asset.
- End
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files []string
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions []interface{} - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset
Name String - The name of the input Asset.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset
Name string - The name of the input Asset.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files string[]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions (FromAll Input File | From Each Input File | Input File)[] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset_
name str - The name of the input Asset.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files Sequence[str]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input_
definitions Sequence[Union[FromAll Input File, From Each Input File, Input File]] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label str
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset
Name String - The name of the input Asset.
- end Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Property Map | Property Map | Property Map> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
JobInputAssetResponse, JobInputAssetResponseArgs
- Asset
Name string - The name of the input Asset.
- End
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Response Azure Native. Media. Inputs. Utc Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files List<string>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions List<object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Response Azure Native. Media. Inputs. Utc Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- Asset
Name string - The name of the input Asset.
- End
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files []string
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions []interface{} - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset
Name String - The name of the input Asset.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset
Name string - The name of the input Asset.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files string[]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions (FromAll Input File Response | From Each Input File Response | Input File Response)[] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset_
name str - The name of the input Asset.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files Sequence[str]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input_
definitions Sequence[Union[FromAll Input File Response, From Each Input File Response, Input File Response]] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label str
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- asset
Name String - The name of the input Asset.
- end Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Property Map | Property Map | Property Map> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
JobInputClip, JobInputClipArgs
- End
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Azure Native. Media. Inputs. Utc Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files List<string>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions List<object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Azure Native. Media. Inputs. Utc Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- End
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files []string
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions []interface{} - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files string[]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions (FromAll Input File | From Each Input File | Input File)[] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files Sequence[str]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input_
definitions Sequence[Union[FromAll Input File, From Each Input File, Input File]] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label str
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Property Map | Property Map | Property Map> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
JobInputClipResponse, JobInputClipResponseArgs
- End
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Response Azure Native. Media. Inputs. Utc Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files List<string>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions List<object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Response Azure Native. Media. Inputs. Utc Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- End
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files []string
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions []interface{} - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files string[]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions (FromAll Input File Response | From Each Input File Response | Input File Response)[] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files Sequence[str]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input_
definitions Sequence[Union[FromAll Input File Response, From Each Input File Response, Input File Response]] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label str
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- end Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Property Map | Property Map | Property Map> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
JobInputHttp, JobInputHttpArgs
- Base
Uri string - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- End
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Azure Native. Media. Inputs. Utc Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files List<string>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions List<object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Azure Native. Media. Inputs. Utc Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- Base
Uri string - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- End
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files []string
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions []interface{} - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base
Uri String - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base
Uri string - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files string[]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions (FromAll Input File | From Each Input File | Input File)[] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base_
uri str - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files Sequence[str]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input_
definitions Sequence[Union[FromAll Input File, From Each Input File, Input File]] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label str
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Clip Time - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base
Uri String - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Property Map | Property Map | Property Map> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
JobInputHttpResponse, JobInputHttpResponseArgs
- Base
Uri string - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- End
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Response Azure Native. Media. Inputs. Utc Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files List<string>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions List<object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Pulumi.
Azure | Pulumi.Native. Media. Inputs. Absolute Clip Time Response Azure Native. Media. Inputs. Utc Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- Base
Uri string - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- End
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- Files []string
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- Input
Definitions []interface{} - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- Label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- Start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base
Uri String - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Object> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base
Uri string - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files string[]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions (FromAll Input File Response | From Each Input File Response | Input File Response)[] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label string
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base_
uri str - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files Sequence[str]
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input_
definitions Sequence[Union[FromAll Input File Response, From Each Input File Response, Input File Response]] - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label str
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start
Absolute
Clip | UtcTime Response Clip Time Response - Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
- base
Uri String - Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.
- end Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will end. Defaults to the end of the input media.
- files List<String>
- List of files. Required for JobInputHttp. Maximum of 4000 characters each.
- input
Definitions List<Property Map | Property Map | Property Map> - Defines a list of InputDefinitions. For each InputDefinition, it defines a list of track selections and related metadata.
- label String
- A label that is assigned to a JobInputClip, that is used to satisfy a reference used in the Transform. For example, a Transform can be authored so as to take an image file with the label 'xyz' and apply it as an overlay onto the input video before it is encoded. When submitting a Job, exactly one of the JobInputs should be the image file, and it should have the label 'xyz'.
- start Property Map | Property Map
- Defines a point on the timeline of the input media at which processing will start. Defaults to the beginning of the input media.
JobInputSequence, JobInputSequenceArgs
- Inputs
List<Pulumi.
Azure Native. Media. Inputs. Job Input Clip> - JobInputs that make up the timeline.
- Inputs
[]Job
Input Clip - JobInputs that make up the timeline.
- inputs
List<Job
Input Clip> - JobInputs that make up the timeline.
- inputs
Job
Input Clip[] - JobInputs that make up the timeline.
- inputs
Sequence[Job
Input Clip] - JobInputs that make up the timeline.
- inputs List<Property Map>
- JobInputs that make up the timeline.
JobInputSequenceResponse, JobInputSequenceResponseArgs
- Inputs
List<Pulumi.
Azure Native. Media. Inputs. Job Input Clip Response> - JobInputs that make up the timeline.
- Inputs
[]Job
Input Clip Response - JobInputs that make up the timeline.
- inputs
List<Job
Input Clip Response> - JobInputs that make up the timeline.
- inputs
Job
Input Clip Response[] - JobInputs that make up the timeline.
- inputs
Sequence[Job
Input Clip Response] - JobInputs that make up the timeline.
- inputs List<Property Map>
- JobInputs that make up the timeline.
JobInputs, JobInputsArgs
- Inputs List<object>
- List of inputs to a Job.
- Inputs []interface{}
- List of inputs to a Job.
- inputs List<Object>
- List of inputs to a Job.
- inputs
(Job
Input Asset | Job Input Clip | Job Input Http | Job Input Sequence | Job Inputs)[] - List of inputs to a Job.
- inputs
Sequence[Union[Job
Input Asset, Job Input Clip, Job Input Http, Job Input Sequence, Job Inputs]] - List of inputs to a Job.
- inputs List<Property Map | Property Map | Property Map | Property Map | Property Map>
- List of inputs to a Job.
JobInputsResponse, JobInputsResponseArgs
- Inputs List<object>
- List of inputs to a Job.
- Inputs []interface{}
- List of inputs to a Job.
- inputs List<Object>
- List of inputs to a Job.
- inputs
(Job
Input Asset Response | Job Input Clip Response | Job Input Http Response | Job Input Sequence Response | Job Inputs Response)[] - List of inputs to a Job.
- inputs
Sequence[Union[Job
Input Asset Response, Job Input Clip Response, Job Input Http Response, Job Input Sequence Response, Job Inputs Response]] - List of inputs to a Job.
- inputs List<Property Map | Property Map | Property Map | Property Map | Property Map>
- List of inputs to a Job.
JobOutputAsset, JobOutputAssetArgs
- Asset
Name string - The name of the output Asset.
- Label string
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- Asset
Name string - The name of the output Asset.
- Label string
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset
Name String - The name of the output Asset.
- label String
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset
Name string - The name of the output Asset.
- label string
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset_
name str - The name of the output Asset.
- label str
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset
Name String - The name of the output Asset.
- label String
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
JobOutputAssetResponse, JobOutputAssetResponseArgs
- Asset
Name string - The name of the output Asset.
- End
Time string - The UTC date and time at which this Job Output finished processing.
- Error
Pulumi.
Azure Native. Media. Inputs. Job Error Response - If the JobOutput is in the Error state, it contains the details of the error.
- Progress int
- If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property.
- Start
Time string - The UTC date and time at which this Job Output began processing.
- State string
- Describes the state of the JobOutput.
- Label string
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- Asset
Name string - The name of the output Asset.
- End
Time string - The UTC date and time at which this Job Output finished processing.
- Error
Job
Error Response - If the JobOutput is in the Error state, it contains the details of the error.
- Progress int
- If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property.
- Start
Time string - The UTC date and time at which this Job Output began processing.
- State string
- Describes the state of the JobOutput.
- Label string
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset
Name String - The name of the output Asset.
- end
Time String - The UTC date and time at which this Job Output finished processing.
- error
Job
Error Response - If the JobOutput is in the Error state, it contains the details of the error.
- progress Integer
- If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property.
- start
Time String - The UTC date and time at which this Job Output began processing.
- state String
- Describes the state of the JobOutput.
- label String
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset
Name string - The name of the output Asset.
- end
Time string - The UTC date and time at which this Job Output finished processing.
- error
Job
Error Response - If the JobOutput is in the Error state, it contains the details of the error.
- progress number
- If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property.
- start
Time string - The UTC date and time at which this Job Output began processing.
- state string
- Describes the state of the JobOutput.
- label string
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset_
name str - The name of the output Asset.
- end_
time str - The UTC date and time at which this Job Output finished processing.
- error
Job
Error Response - If the JobOutput is in the Error state, it contains the details of the error.
- progress int
- If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property.
- start_
time str - The UTC date and time at which this Job Output began processing.
- state str
- Describes the state of the JobOutput.
- label str
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
- asset
Name String - The name of the output Asset.
- end
Time String - The UTC date and time at which this Job Output finished processing.
- error Property Map
- If the JobOutput is in the Error state, it contains the details of the error.
- progress Number
- If the JobOutput is in a Processing state, this contains the Job completion percentage. The value is an estimate and not intended to be used to predict Job completion times. To determine if the JobOutput is complete, use the State property.
- start
Time String - The UTC date and time at which this Job Output began processing.
- state String
- Describes the state of the JobOutput.
- label String
- A label that is assigned to a JobOutput in order to help uniquely identify it. This is useful when your Transform has more than one TransformOutput, whereby your Job has more than one JobOutput. In such cases, when you submit the Job, you will add two or more JobOutputs, in the same order as TransformOutputs in the Transform. Subsequently, when you retrieve the Job, either through events or on a GET request, you can use the label to easily identify the JobOutput. If a label is not provided, a default value of '{presetName}_{outputIndex}' will be used, where the preset name is the name of the preset in the corresponding TransformOutput and the output index is the relative index of the this JobOutput within the Job. Note that this index is the same as the relative index of the corresponding TransformOutput within its Transform.
Priority, PriorityArgs
- Low
- LowUsed for TransformOutputs that can be generated after Normal and High priority TransformOutputs.
- Normal
- NormalUsed for TransformOutputs that can be generated at Normal priority.
- High
- HighUsed for TransformOutputs that should take precedence over others.
- Priority
Low - LowUsed for TransformOutputs that can be generated after Normal and High priority TransformOutputs.
- Priority
Normal - NormalUsed for TransformOutputs that can be generated at Normal priority.
- Priority
High - HighUsed for TransformOutputs that should take precedence over others.
- Low
- LowUsed for TransformOutputs that can be generated after Normal and High priority TransformOutputs.
- Normal
- NormalUsed for TransformOutputs that can be generated at Normal priority.
- High
- HighUsed for TransformOutputs that should take precedence over others.
- Low
- LowUsed for TransformOutputs that can be generated after Normal and High priority TransformOutputs.
- Normal
- NormalUsed for TransformOutputs that can be generated at Normal priority.
- High
- HighUsed for TransformOutputs that should take precedence over others.
- LOW
- LowUsed for TransformOutputs that can be generated after Normal and High priority TransformOutputs.
- NORMAL
- NormalUsed for TransformOutputs that can be generated at Normal priority.
- HIGH
- HighUsed for TransformOutputs that should take precedence over others.
- "Low"
- LowUsed for TransformOutputs that can be generated after Normal and High priority TransformOutputs.
- "Normal"
- NormalUsed for TransformOutputs that can be generated at Normal priority.
- "High"
- HighUsed for TransformOutputs that should take precedence over others.
SelectAudioTrackByAttribute, SelectAudioTrackByAttributeArgs
- Attribute
string | Pulumi.
Azure Native. Media. Track Attribute - The TrackAttribute to filter the tracks by.
- Filter
string | Pulumi.
Azure Native. Media. Attribute Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Channel
Mapping string | Pulumi.Azure Native. Media. Channel Mapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- Attribute
string | Track
Attribute - The TrackAttribute to filter the tracks by.
- Filter
string | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Channel
Mapping string | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute
String | Track
Attribute - The TrackAttribute to filter the tracks by.
- filter
String | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel
Mapping String | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute
string | Track
Attribute - The TrackAttribute to filter the tracks by.
- filter
string | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel
Mapping string | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute
str | Track
Attribute - The TrackAttribute to filter the tracks by.
- filter
str | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel_
mapping str | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter_
value str - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute String | "Bitrate" | "Language"
- The TrackAttribute to filter the tracks by.
- filter
String | "All" | "Top" | "Bottom" | "Value
Equals" - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel
Mapping String | "FrontLeft" | "Front Right" | "Center" | "Low Frequency Effects" | "Back Left" | "Back Right" | "Stereo Left" | "Stereo Right" - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
SelectAudioTrackByAttributeResponse, SelectAudioTrackByAttributeResponseArgs
- Attribute string
- The TrackAttribute to filter the tracks by.
- Filter string
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- Attribute string
- The TrackAttribute to filter the tracks by.
- Filter string
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute String
- The TrackAttribute to filter the tracks by.
- filter String
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel
Mapping String - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute string
- The TrackAttribute to filter the tracks by.
- filter string
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute str
- The TrackAttribute to filter the tracks by.
- filter str
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel_
mapping str - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter_
value str - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
- attribute String
- The TrackAttribute to filter the tracks by.
- filter String
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- channel
Mapping String - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property.
SelectAudioTrackById, SelectAudioTrackByIdArgs
- Track
Id double - Track identifier to select
- Channel
Mapping string | Pulumi.Azure Native. Media. Channel Mapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Track
Id float64 - Track identifier to select
- Channel
Mapping string | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track
Id Double - Track identifier to select
- channel
Mapping String | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track
Id number - Track identifier to select
- channel
Mapping string | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track_
id float - Track identifier to select
- channel_
mapping str | ChannelMapping - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track
Id Number - Track identifier to select
- channel
Mapping String | "FrontLeft" | "Front Right" | "Center" | "Low Frequency Effects" | "Back Left" | "Back Right" | "Stereo Left" | "Stereo Right" - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
SelectAudioTrackByIdResponse, SelectAudioTrackByIdResponseArgs
- Track
Id double - Track identifier to select
- Channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- Track
Id float64 - Track identifier to select
- Channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track
Id Double - Track identifier to select
- channel
Mapping String - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track
Id number - Track identifier to select
- channel
Mapping string - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track_
id float - Track identifier to select
- channel_
mapping str - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
- track
Id Number - Track identifier to select
- channel
Mapping String - Optional designation for single channel audio tracks. Can be used to combine the tracks into stereo or multi-channel audio tracks.
SelectVideoTrackByAttribute, SelectVideoTrackByAttributeArgs
- Attribute
string | Pulumi.
Azure Native. Media. Track Attribute - The TrackAttribute to filter the tracks by.
- Filter
string | Pulumi.
Azure Native. Media. Attribute Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- Attribute
string | Track
Attribute - The TrackAttribute to filter the tracks by.
- Filter
string | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute
String | Track
Attribute - The TrackAttribute to filter the tracks by.
- filter
String | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute
string | Track
Attribute - The TrackAttribute to filter the tracks by.
- filter
string | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute
str | Track
Attribute - The TrackAttribute to filter the tracks by.
- filter
str | Attribute
Filter - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter_
value str - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute String | "Bitrate" | "Language"
- The TrackAttribute to filter the tracks by.
- filter
String | "All" | "Top" | "Bottom" | "Value
Equals" - The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
SelectVideoTrackByAttributeResponse, SelectVideoTrackByAttributeResponseArgs
- Attribute string
- The TrackAttribute to filter the tracks by.
- Filter string
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- Attribute string
- The TrackAttribute to filter the tracks by.
- Filter string
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- Filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute String
- The TrackAttribute to filter the tracks by.
- filter String
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute string
- The TrackAttribute to filter the tracks by.
- filter string
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter
Value string - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute str
- The TrackAttribute to filter the tracks by.
- filter str
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter_
value str - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
- attribute String
- The TrackAttribute to filter the tracks by.
- filter String
- The type of AttributeFilter to apply to the TrackAttribute in order to select the tracks.
- filter
Value String - The value to filter the tracks by. Only used when AttributeFilter.ValueEquals is specified for the Filter property. For TrackAttribute.Bitrate, this should be an integer value in bits per second (e.g: '1500000'). The TrackAttribute.Language is not supported for video tracks.
SelectVideoTrackById, SelectVideoTrackByIdArgs
- Track
Id double - Track identifier to select
- Track
Id float64 - Track identifier to select
- track
Id Double - Track identifier to select
- track
Id number - Track identifier to select
- track_
id float - Track identifier to select
- track
Id Number - Track identifier to select
SelectVideoTrackByIdResponse, SelectVideoTrackByIdResponseArgs
- Track
Id double - Track identifier to select
- Track
Id float64 - Track identifier to select
- track
Id Double - Track identifier to select
- track
Id number - Track identifier to select
- track_
id float - Track identifier to select
- track
Id Number - Track identifier to select
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TrackAttribute, TrackAttributeArgs
- Bitrate
- BitrateThe bitrate of the track.
- Language
- LanguageThe language of the track.
- Track
Attribute Bitrate - BitrateThe bitrate of the track.
- Track
Attribute Language - LanguageThe language of the track.
- Bitrate
- BitrateThe bitrate of the track.
- Language
- LanguageThe language of the track.
- Bitrate
- BitrateThe bitrate of the track.
- Language
- LanguageThe language of the track.
- BITRATE
- BitrateThe bitrate of the track.
- LANGUAGE
- LanguageThe language of the track.
- "Bitrate"
- BitrateThe bitrate of the track.
- "Language"
- LanguageThe language of the track.
UtcClipTime, UtcClipTimeArgs
- Time string
- The time position on the timeline of the input media based on Utc time.
- Time string
- The time position on the timeline of the input media based on Utc time.
- time String
- The time position on the timeline of the input media based on Utc time.
- time string
- The time position on the timeline of the input media based on Utc time.
- time str
- The time position on the timeline of the input media based on Utc time.
- time String
- The time position on the timeline of the input media based on Utc time.
UtcClipTimeResponse, UtcClipTimeResponseArgs
- Time string
- The time position on the timeline of the input media based on Utc time.
- Time string
- The time position on the timeline of the input media based on Utc time.
- time String
- The time position on the timeline of the input media based on Utc time.
- time string
- The time position on the timeline of the input media based on Utc time.
- time str
- The time position on the timeline of the input media based on Utc time.
- time String
- The time position on the timeline of the input media based on Utc time.
VideoTrackDescriptor, VideoTrackDescriptorArgs
VideoTrackDescriptorResponse, VideoTrackDescriptorResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:media:Job job1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoresources/providers/Microsoft.Media/mediaservices/contosomedia/transforms/exampleTransform/jobs/job1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0