azure-native.media.AssetFilter

Explore with Pulumi AI

An Asset Filter. API Version: 2020-05-01.

Example Usage

Create an Asset Filter

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var assetFilter = new AzureNative.Media.AssetFilter("assetFilter", new()
    {
        AccountName = "contosomedia",
        AssetName = "ClimbingMountRainer",
        FilterName = "newAssetFilter",
        FirstQuality = new AzureNative.Media.Inputs.FirstQualityArgs
        {
            Bitrate = 128000,
        },
        PresentationTimeRange = new AzureNative.Media.Inputs.PresentationTimeRangeArgs
        {
            EndTimestamp = 170000000,
            ForceEndTimestamp = false,
            LiveBackoffDuration = 0,
            PresentationWindowDuration = 9223372036854774784,
            StartTimestamp = 0,
            Timescale = 10000000,
        },
        ResourceGroupName = "contoso",
        Tracks = new[]
        {
            new AzureNative.Media.Inputs.FilterTrackSelectionArgs
            {
                TrackSelections = new[]
                {
                    new AzureNative.Media.Inputs.FilterTrackPropertyConditionArgs
                    {
                        Operation = "Equal",
                        Property = "Type",
                        Value = "Audio",
                    },
                    new AzureNative.Media.Inputs.FilterTrackPropertyConditionArgs
                    {
                        Operation = "NotEqual",
                        Property = "Language",
                        Value = "en",
                    },
                    new AzureNative.Media.Inputs.FilterTrackPropertyConditionArgs
                    {
                        Operation = "NotEqual",
                        Property = "FourCC",
                        Value = "EC-3",
                    },
                },
            },
            new AzureNative.Media.Inputs.FilterTrackSelectionArgs
            {
                TrackSelections = new[]
                {
                    new AzureNative.Media.Inputs.FilterTrackPropertyConditionArgs
                    {
                        Operation = "Equal",
                        Property = "Type",
                        Value = "Video",
                    },
                    new AzureNative.Media.Inputs.FilterTrackPropertyConditionArgs
                    {
                        Operation = "Equal",
                        Property = "Bitrate",
                        Value = "3000000-5000000",
                    },
                },
            },
        },
    });

});
package main

import (
	media "github.com/pulumi/pulumi-azure-native/sdk/go/azure/media"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := media.NewAssetFilter(ctx, "assetFilter", &media.AssetFilterArgs{
			AccountName: pulumi.String("contosomedia"),
			AssetName:   pulumi.String("ClimbingMountRainer"),
			FilterName:  pulumi.String("newAssetFilter"),
			FirstQuality: media.FirstQualityResponse{
				Bitrate: pulumi.Int(128000),
			},
			PresentationTimeRange: &media.PresentationTimeRangeArgs{
				EndTimestamp:               pulumi.Float64(170000000),
				ForceEndTimestamp:          pulumi.Bool(false),
				LiveBackoffDuration:        pulumi.Float64(0),
				PresentationWindowDuration: pulumi.Float64(9223372036854774784),
				StartTimestamp:             pulumi.Float64(0),
				Timescale:                  pulumi.Float64(10000000),
			},
			ResourceGroupName: pulumi.String("contoso"),
			Tracks: []media.FilterTrackSelectionArgs{
				{
					TrackSelections: []media.FilterTrackPropertyConditionArgs{
						{
							Operation: pulumi.String("Equal"),
							Property:  pulumi.String("Type"),
							Value:     pulumi.String("Audio"),
						},
						{
							Operation: pulumi.String("NotEqual"),
							Property:  pulumi.String("Language"),
							Value:     pulumi.String("en"),
						},
						{
							Operation: pulumi.String("NotEqual"),
							Property:  pulumi.String("FourCC"),
							Value:     pulumi.String("EC-3"),
						},
					},
				},
				{
					TrackSelections: []media.FilterTrackPropertyConditionArgs{
						{
							Operation: pulumi.String("Equal"),
							Property:  pulumi.String("Type"),
							Value:     pulumi.String("Video"),
						},
						{
							Operation: pulumi.String("Equal"),
							Property:  pulumi.String("Bitrate"),
							Value:     pulumi.String("3000000-5000000"),
						},
					},
				},
			},
		})
		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.AssetFilter;
import com.pulumi.azurenative.media.AssetFilterArgs;
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 assetFilter = new AssetFilter("assetFilter", AssetFilterArgs.builder()        
            .accountName("contosomedia")
            .assetName("ClimbingMountRainer")
            .filterName("newAssetFilter")
            .firstQuality(Map.of("bitrate", 128000))
            .presentationTimeRange(Map.ofEntries(
                Map.entry("endTimestamp", 170000000),
                Map.entry("forceEndTimestamp", false),
                Map.entry("liveBackoffDuration", 0),
                Map.entry("presentationWindowDuration", 9223372036854774784),
                Map.entry("startTimestamp", 0),
                Map.entry("timescale", 10000000)
            ))
            .resourceGroupName("contoso")
            .tracks(            
                Map.of("trackSelections",                 
                    Map.ofEntries(
                        Map.entry("operation", "Equal"),
                        Map.entry("property", "Type"),
                        Map.entry("value", "Audio")
                    ),
                    Map.ofEntries(
                        Map.entry("operation", "NotEqual"),
                        Map.entry("property", "Language"),
                        Map.entry("value", "en")
                    ),
                    Map.ofEntries(
                        Map.entry("operation", "NotEqual"),
                        Map.entry("property", "FourCC"),
                        Map.entry("value", "EC-3")
                    )),
                Map.of("trackSelections",                 
                    Map.ofEntries(
                        Map.entry("operation", "Equal"),
                        Map.entry("property", "Type"),
                        Map.entry("value", "Video")
                    ),
                    Map.ofEntries(
                        Map.entry("operation", "Equal"),
                        Map.entry("property", "Bitrate"),
                        Map.entry("value", "3000000-5000000")
                    )))
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

asset_filter = azure_native.media.AssetFilter("assetFilter",
    account_name="contosomedia",
    asset_name="ClimbingMountRainer",
    filter_name="newAssetFilter",
    first_quality=azure_native.media.FirstQualityResponseArgs(
        bitrate=128000,
    ),
    presentation_time_range=azure_native.media.PresentationTimeRangeArgs(
        end_timestamp=170000000,
        force_end_timestamp=False,
        live_backoff_duration=0,
        presentation_window_duration=9223372036854774784,
        start_timestamp=0,
        timescale=10000000,
    ),
    resource_group_name="contoso",
    tracks=[
        {
            "trackSelections": [
                {
                    "operation": "Equal",
                    "property": "Type",
                    "value": "Audio",
                },
                {
                    "operation": "NotEqual",
                    "property": "Language",
                    "value": "en",
                },
                {
                    "operation": "NotEqual",
                    "property": "FourCC",
                    "value": "EC-3",
                },
            ],
        },
        {
            "trackSelections": [
                {
                    "operation": "Equal",
                    "property": "Type",
                    "value": "Video",
                },
                {
                    "operation": "Equal",
                    "property": "Bitrate",
                    "value": "3000000-5000000",
                },
            ],
        },
    ])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const assetFilter = new azure_native.media.AssetFilter("assetFilter", {
    accountName: "contosomedia",
    assetName: "ClimbingMountRainer",
    filterName: "newAssetFilter",
    firstQuality: {
        bitrate: 128000,
    },
    presentationTimeRange: {
        endTimestamp: 170000000,
        forceEndTimestamp: false,
        liveBackoffDuration: 0,
        presentationWindowDuration: 9223372036854774784,
        startTimestamp: 0,
        timescale: 10000000,
    },
    resourceGroupName: "contoso",
    tracks: [
        {
            trackSelections: [
                {
                    operation: "Equal",
                    property: "Type",
                    value: "Audio",
                },
                {
                    operation: "NotEqual",
                    property: "Language",
                    value: "en",
                },
                {
                    operation: "NotEqual",
                    property: "FourCC",
                    value: "EC-3",
                },
            ],
        },
        {
            trackSelections: [
                {
                    operation: "Equal",
                    property: "Type",
                    value: "Video",
                },
                {
                    operation: "Equal",
                    property: "Bitrate",
                    value: "3000000-5000000",
                },
            ],
        },
    ],
});
resources:
  assetFilter:
    type: azure-native:media:AssetFilter
    properties:
      accountName: contosomedia
      assetName: ClimbingMountRainer
      filterName: newAssetFilter
      firstQuality:
        bitrate: 128000
      presentationTimeRange:
        endTimestamp: 1.7e+08
        forceEndTimestamp: false
        liveBackoffDuration: 0
        presentationWindowDuration: 9.223372036854775e+18
        startTimestamp: 0
        timescale: 1e+07
      resourceGroupName: contoso
      tracks:
        - trackSelections:
            - operation: Equal
              property: Type
              value: Audio
            - operation: NotEqual
              property: Language
              value: en
            - operation: NotEqual
              property: FourCC
              value: EC-3
        - trackSelections:
            - operation: Equal
              property: Type
              value: Video
            - operation: Equal
              property: Bitrate
              value: 3000000-5000000

Create AssetFilter Resource

new AssetFilter(name: string, args: AssetFilterArgs, opts?: CustomResourceOptions);
@overload
def AssetFilter(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                account_name: Optional[str] = None,
                asset_name: Optional[str] = None,
                filter_name: Optional[str] = None,
                first_quality: Optional[FirstQualityArgs] = None,
                presentation_time_range: Optional[PresentationTimeRangeArgs] = None,
                resource_group_name: Optional[str] = None,
                tracks: Optional[Sequence[FilterTrackSelectionArgs]] = None)
@overload
def AssetFilter(resource_name: str,
                args: AssetFilterArgs,
                opts: Optional[ResourceOptions] = None)
func NewAssetFilter(ctx *Context, name string, args AssetFilterArgs, opts ...ResourceOption) (*AssetFilter, error)
public AssetFilter(string name, AssetFilterArgs args, CustomResourceOptions? opts = null)
public AssetFilter(String name, AssetFilterArgs args)
public AssetFilter(String name, AssetFilterArgs args, CustomResourceOptions options)
type: azure-native:media:AssetFilter
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args AssetFilterArgs
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 AssetFilterArgs
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 AssetFilterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args AssetFilterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args AssetFilterArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

AssetFilter 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 AssetFilter resource accepts the following input properties:

AccountName string

The Media Services account name.

AssetName string

The Asset name.

ResourceGroupName string

The name of the resource group within the Azure subscription.

FilterName string

The Asset Filter name

FirstQuality Pulumi.AzureNative.Media.Inputs.FirstQualityArgs

The first quality.

PresentationTimeRange Pulumi.AzureNative.Media.Inputs.PresentationTimeRangeArgs

The presentation time range.

Tracks List<Pulumi.AzureNative.Media.Inputs.FilterTrackSelectionArgs>

The tracks selection conditions.

AccountName string

The Media Services account name.

AssetName string

The Asset name.

ResourceGroupName string

The name of the resource group within the Azure subscription.

FilterName string

The Asset Filter name

FirstQuality FirstQualityArgs

The first quality.

PresentationTimeRange PresentationTimeRangeArgs

The presentation time range.

Tracks []FilterTrackSelectionArgs

The tracks selection conditions.

accountName String

The Media Services account name.

assetName String

The Asset name.

resourceGroupName String

The name of the resource group within the Azure subscription.

filterName String

The Asset Filter name

firstQuality FirstQualityArgs

The first quality.

presentationTimeRange PresentationTimeRangeArgs

The presentation time range.

tracks List<FilterTrackSelectionArgs>

The tracks selection conditions.

accountName string

The Media Services account name.

assetName string

The Asset name.

resourceGroupName string

The name of the resource group within the Azure subscription.

filterName string

The Asset Filter name

firstQuality FirstQualityArgs

The first quality.

presentationTimeRange PresentationTimeRangeArgs

The presentation time range.

tracks FilterTrackSelectionArgs[]

The tracks selection conditions.

account_name str

The Media Services account name.

asset_name str

The Asset name.

resource_group_name str

The name of the resource group within the Azure subscription.

filter_name str

The Asset Filter name

first_quality FirstQualityArgs

The first quality.

presentation_time_range PresentationTimeRangeArgs

The presentation time range.

tracks Sequence[FilterTrackSelectionArgs]

The tracks selection conditions.

accountName String

The Media Services account name.

assetName String

The Asset name.

resourceGroupName String

The name of the resource group within the Azure subscription.

filterName String

The Asset Filter name

firstQuality Property Map

The first quality.

presentationTimeRange Property Map

The presentation time range.

tracks List<Property Map>

The tracks selection conditions.

Outputs

All input properties are implicitly available as output properties. Additionally, the AssetFilter resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

SystemData Pulumi.AzureNative.Media.Outputs.SystemDataResponse

The system metadata relating to this resource.

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

SystemData SystemDataResponse

The system metadata relating to this resource.

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

systemData SystemDataResponse

The system metadata relating to this resource.

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the resource

systemData SystemDataResponse

The system metadata relating to this resource.

type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the resource

system_data SystemDataResponse

The system metadata relating to this resource.

type str

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

systemData 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

FilterTrackPropertyCompareOperation

Equal
Equal

The equal operation.

NotEqual
NotEqual

The not equal operation.

FilterTrackPropertyCompareOperationEqual
Equal

The equal operation.

FilterTrackPropertyCompareOperationNotEqual
NotEqual

The not equal operation.

Equal
Equal

The equal operation.

NotEqual
NotEqual

The not equal operation.

Equal
Equal

The equal operation.

NotEqual
NotEqual

The not equal operation.

EQUAL
Equal

The equal operation.

NOT_EQUAL
NotEqual

The not equal operation.

"Equal"
Equal

The equal operation.

"NotEqual"
NotEqual

The not equal operation.

FilterTrackPropertyCondition

Operation string | Pulumi.AzureNative.Media.FilterTrackPropertyCompareOperation

The track property condition operation.

Property string | Pulumi.AzureNative.Media.FilterTrackPropertyType

The track property type.

Value string

The track property value.

Operation string | FilterTrackPropertyCompareOperation

The track property condition operation.

Property string | FilterTrackPropertyType

The track property type.

Value string

The track property value.

operation String | FilterTrackPropertyCompareOperation

The track property condition operation.

property String | FilterTrackPropertyType

The track property type.

value String

The track property value.

operation string | FilterTrackPropertyCompareOperation

The track property condition operation.

property string | FilterTrackPropertyType

The track property type.

value string

The track property value.

operation str | FilterTrackPropertyCompareOperation

The track property condition operation.

property str | FilterTrackPropertyType

The track property type.

value str

The track property value.

operation String | "Equal" | "NotEqual"

The track property condition operation.

property String | "Unknown" | "Type" | "Name" | "Language" | "FourCC" | "Bitrate"

The track property type.

value String

The track property value.

FilterTrackPropertyConditionResponse

Operation string

The track property condition operation.

Property string

The track property type.

Value string

The track property value.

Operation string

The track property condition operation.

Property string

The track property type.

Value string

The track property value.

operation String

The track property condition operation.

property String

The track property type.

value String

The track property value.

operation string

The track property condition operation.

property string

The track property type.

value string

The track property value.

operation str

The track property condition operation.

property str

The track property type.

value str

The track property value.

operation String

The track property condition operation.

property String

The track property type.

value String

The track property value.

FilterTrackPropertyType

Unknown
Unknown

The unknown track property type.

Type
Type

The type.

Name
Name

The name.

Language
Language

The language.

FourCC
FourCC

The fourCC.

Bitrate
Bitrate

The bitrate.

FilterTrackPropertyTypeUnknown
Unknown

The unknown track property type.

FilterTrackPropertyTypeType
Type

The type.

FilterTrackPropertyTypeName
Name

The name.

FilterTrackPropertyTypeLanguage
Language

The language.

FilterTrackPropertyTypeFourCC
FourCC

The fourCC.

FilterTrackPropertyTypeBitrate
Bitrate

The bitrate.

Unknown
Unknown

The unknown track property type.

Type
Type

The type.

Name
Name

The name.

Language
Language

The language.

FourCC
FourCC

The fourCC.

Bitrate
Bitrate

The bitrate.

Unknown
Unknown

The unknown track property type.

Type
Type

The type.

Name
Name

The name.

Language
Language

The language.

FourCC
FourCC

The fourCC.

Bitrate
Bitrate

The bitrate.

UNKNOWN
Unknown

The unknown track property type.

TYPE
Type

The type.

NAME
Name

The name.

LANGUAGE
Language

The language.

FOUR_CC
FourCC

The fourCC.

BITRATE
Bitrate

The bitrate.

"Unknown"
Unknown

The unknown track property type.

"Type"
Type

The type.

"Name"
Name

The name.

"Language"
Language

The language.

"FourCC"
FourCC

The fourCC.

"Bitrate"
Bitrate

The bitrate.

FilterTrackSelection

trackSelections List<Property Map>

The track selections.

FilterTrackSelectionResponse

trackSelections List<Property Map>

The track selections.

FirstQuality

Bitrate int

The first quality bitrate.

Bitrate int

The first quality bitrate.

bitrate Integer

The first quality bitrate.

bitrate number

The first quality bitrate.

bitrate int

The first quality bitrate.

bitrate Number

The first quality bitrate.

FirstQualityResponse

Bitrate int

The first quality bitrate.

Bitrate int

The first quality bitrate.

bitrate Integer

The first quality bitrate.

bitrate number

The first quality bitrate.

bitrate int

The first quality bitrate.

bitrate Number

The first quality bitrate.

PresentationTimeRange

EndTimestamp double

The absolute end time boundary.

ForceEndTimestamp bool

The indicator of forcing existing of end time stamp.

LiveBackoffDuration double

The relative to end right edge.

PresentationWindowDuration double

The relative to end sliding window.

StartTimestamp double

The absolute start time boundary.

Timescale double

The time scale of time stamps.

EndTimestamp float64

The absolute end time boundary.

ForceEndTimestamp bool

The indicator of forcing existing of end time stamp.

LiveBackoffDuration float64

The relative to end right edge.

PresentationWindowDuration float64

The relative to end sliding window.

StartTimestamp float64

The absolute start time boundary.

Timescale float64

The time scale of time stamps.

endTimestamp Double

The absolute end time boundary.

forceEndTimestamp Boolean

The indicator of forcing existing of end time stamp.

liveBackoffDuration Double

The relative to end right edge.

presentationWindowDuration Double

The relative to end sliding window.

startTimestamp Double

The absolute start time boundary.

timescale Double

The time scale of time stamps.

endTimestamp number

The absolute end time boundary.

forceEndTimestamp boolean

The indicator of forcing existing of end time stamp.

liveBackoffDuration number

The relative to end right edge.

presentationWindowDuration number

The relative to end sliding window.

startTimestamp number

The absolute start time boundary.

timescale number

The time scale of time stamps.

end_timestamp float

The absolute end time boundary.

force_end_timestamp bool

The indicator of forcing existing of end time stamp.

live_backoff_duration float

The relative to end right edge.

presentation_window_duration float

The relative to end sliding window.

start_timestamp float

The absolute start time boundary.

timescale float

The time scale of time stamps.

endTimestamp Number

The absolute end time boundary.

forceEndTimestamp Boolean

The indicator of forcing existing of end time stamp.

liveBackoffDuration Number

The relative to end right edge.

presentationWindowDuration Number

The relative to end sliding window.

startTimestamp Number

The absolute start time boundary.

timescale Number

The time scale of time stamps.

PresentationTimeRangeResponse

EndTimestamp double

The absolute end time boundary.

ForceEndTimestamp bool

The indicator of forcing existing of end time stamp.

LiveBackoffDuration double

The relative to end right edge.

PresentationWindowDuration double

The relative to end sliding window.

StartTimestamp double

The absolute start time boundary.

Timescale double

The time scale of time stamps.

EndTimestamp float64

The absolute end time boundary.

ForceEndTimestamp bool

The indicator of forcing existing of end time stamp.

LiveBackoffDuration float64

The relative to end right edge.

PresentationWindowDuration float64

The relative to end sliding window.

StartTimestamp float64

The absolute start time boundary.

Timescale float64

The time scale of time stamps.

endTimestamp Double

The absolute end time boundary.

forceEndTimestamp Boolean

The indicator of forcing existing of end time stamp.

liveBackoffDuration Double

The relative to end right edge.

presentationWindowDuration Double

The relative to end sliding window.

startTimestamp Double

The absolute start time boundary.

timescale Double

The time scale of time stamps.

endTimestamp number

The absolute end time boundary.

forceEndTimestamp boolean

The indicator of forcing existing of end time stamp.

liveBackoffDuration number

The relative to end right edge.

presentationWindowDuration number

The relative to end sliding window.

startTimestamp number

The absolute start time boundary.

timescale number

The time scale of time stamps.

end_timestamp float

The absolute end time boundary.

force_end_timestamp bool

The indicator of forcing existing of end time stamp.

live_backoff_duration float

The relative to end right edge.

presentation_window_duration float

The relative to end sliding window.

start_timestamp float

The absolute start time boundary.

timescale float

The time scale of time stamps.

endTimestamp Number

The absolute end time boundary.

forceEndTimestamp Boolean

The indicator of forcing existing of end time stamp.

liveBackoffDuration Number

The relative to end right edge.

presentationWindowDuration Number

The relative to end sliding window.

startTimestamp Number

The absolute start time boundary.

timescale Number

The time scale of time stamps.

SystemDataResponse

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

createdAt string

The timestamp of resource creation (UTC).

createdBy string

The identity that created the resource.

createdByType string

The type of identity that created the resource.

lastModifiedAt string

The timestamp of resource last modification (UTC)

lastModifiedBy string

The identity that last modified the resource.

lastModifiedByType string

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_type str

The type of identity that created the resource.

last_modified_at str

The timestamp of resource last modification (UTC)

last_modified_by str

The identity that last modified the resource.

last_modified_by_type str

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:media:AssetFilter newAssetFilter /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso/providers/Microsoft.Media/mediaservices/contosomedia/assets/ClimbingMountRainer/assetFilters/newAssetFilter 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0