1. Packages
  2. Azure Native v2
  3. API Docs
  4. media
  5. LiveOutput
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.media.LiveOutput

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

The Live Output. Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2020-05-01.

Example Usage

Create a LiveOutput

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

return await Deployment.RunAsync(() => 
{
    var liveOutput = new AzureNative.Media.LiveOutput("liveOutput", new()
    {
        AccountName = "slitestmedia10",
        ArchiveWindowLength = "PT5M",
        AssetName = "6f3264f5-a189-48b4-a29a-a40f22575212",
        Description = "test live output 1",
        Hls = new AzureNative.Media.Inputs.HlsArgs
        {
            FragmentsPerTsSegment = 5,
        },
        LiveEventName = "myLiveEvent1",
        LiveOutputName = "myLiveOutput1",
        ManifestName = "testmanifest",
        ResourceGroupName = "mediaresources",
        RewindWindowLength = "PT4M",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := media.NewLiveOutput(ctx, "liveOutput", &media.LiveOutputArgs{
			AccountName:         pulumi.String("slitestmedia10"),
			ArchiveWindowLength: pulumi.String("PT5M"),
			AssetName:           pulumi.String("6f3264f5-a189-48b4-a29a-a40f22575212"),
			Description:         pulumi.String("test live output 1"),
			Hls: &media.HlsArgs{
				FragmentsPerTsSegment: pulumi.Int(5),
			},
			LiveEventName:      pulumi.String("myLiveEvent1"),
			LiveOutputName:     pulumi.String("myLiveOutput1"),
			ManifestName:       pulumi.String("testmanifest"),
			ResourceGroupName:  pulumi.String("mediaresources"),
			RewindWindowLength: pulumi.String("PT4M"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.media.LiveOutput;
import com.pulumi.azurenative.media.LiveOutputArgs;
import com.pulumi.azurenative.media.inputs.HlsArgs;
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 liveOutput = new LiveOutput("liveOutput", LiveOutputArgs.builder()
            .accountName("slitestmedia10")
            .archiveWindowLength("PT5M")
            .assetName("6f3264f5-a189-48b4-a29a-a40f22575212")
            .description("test live output 1")
            .hls(HlsArgs.builder()
                .fragmentsPerTsSegment(5)
                .build())
            .liveEventName("myLiveEvent1")
            .liveOutputName("myLiveOutput1")
            .manifestName("testmanifest")
            .resourceGroupName("mediaresources")
            .rewindWindowLength("PT4M")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const liveOutput = new azure_native.media.LiveOutput("liveOutput", {
    accountName: "slitestmedia10",
    archiveWindowLength: "PT5M",
    assetName: "6f3264f5-a189-48b4-a29a-a40f22575212",
    description: "test live output 1",
    hls: {
        fragmentsPerTsSegment: 5,
    },
    liveEventName: "myLiveEvent1",
    liveOutputName: "myLiveOutput1",
    manifestName: "testmanifest",
    resourceGroupName: "mediaresources",
    rewindWindowLength: "PT4M",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

live_output = azure_native.media.LiveOutput("liveOutput",
    account_name="slitestmedia10",
    archive_window_length="PT5M",
    asset_name="6f3264f5-a189-48b4-a29a-a40f22575212",
    description="test live output 1",
    hls={
        "fragments_per_ts_segment": 5,
    },
    live_event_name="myLiveEvent1",
    live_output_name="myLiveOutput1",
    manifest_name="testmanifest",
    resource_group_name="mediaresources",
    rewind_window_length="PT4M")
Copy
resources:
  liveOutput:
    type: azure-native:media:LiveOutput
    properties:
      accountName: slitestmedia10
      archiveWindowLength: PT5M
      assetName: 6f3264f5-a189-48b4-a29a-a40f22575212
      description: test live output 1
      hls:
        fragmentsPerTsSegment: 5
      liveEventName: myLiveEvent1
      liveOutputName: myLiveOutput1
      manifestName: testmanifest
      resourceGroupName: mediaresources
      rewindWindowLength: PT4M
Copy

Create LiveOutput Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LiveOutput(name: string, args: LiveOutputArgs, opts?: CustomResourceOptions);
@overload
def LiveOutput(resource_name: str,
               args: LiveOutputArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def LiveOutput(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               account_name: Optional[str] = None,
               archive_window_length: Optional[str] = None,
               asset_name: Optional[str] = None,
               live_event_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               description: Optional[str] = None,
               hls: Optional[HlsArgs] = None,
               live_output_name: Optional[str] = None,
               manifest_name: Optional[str] = None,
               output_snap_time: Optional[float] = None,
               rewind_window_length: Optional[str] = None)
func NewLiveOutput(ctx *Context, name string, args LiveOutputArgs, opts ...ResourceOption) (*LiveOutput, error)
public LiveOutput(string name, LiveOutputArgs args, CustomResourceOptions? opts = null)
public LiveOutput(String name, LiveOutputArgs args)
public LiveOutput(String name, LiveOutputArgs args, CustomResourceOptions options)
type: azure-native:media:LiveOutput
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LiveOutputArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LiveOutputArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LiveOutputArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LiveOutputArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LiveOutputArgs
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 liveOutputResource = new AzureNative.Media.LiveOutput("liveOutputResource", new()
{
    AccountName = "string",
    ArchiveWindowLength = "string",
    AssetName = "string",
    LiveEventName = "string",
    ResourceGroupName = "string",
    Description = "string",
    Hls = 
    {
        { "fragmentsPerTsSegment", 0 },
    },
    LiveOutputName = "string",
    ManifestName = "string",
    OutputSnapTime = 0,
    RewindWindowLength = "string",
});
Copy
example, err := media.NewLiveOutput(ctx, "liveOutputResource", &media.LiveOutputArgs{
	AccountName:         "string",
	ArchiveWindowLength: "string",
	AssetName:           "string",
	LiveEventName:       "string",
	ResourceGroupName:   "string",
	Description:         "string",
	Hls: map[string]interface{}{
		"fragmentsPerTsSegment": 0,
	},
	LiveOutputName:     "string",
	ManifestName:       "string",
	OutputSnapTime:     0,
	RewindWindowLength: "string",
})
Copy
var liveOutputResource = new LiveOutput("liveOutputResource", LiveOutputArgs.builder()
    .accountName("string")
    .archiveWindowLength("string")
    .assetName("string")
    .liveEventName("string")
    .resourceGroupName("string")
    .description("string")
    .hls(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .liveOutputName("string")
    .manifestName("string")
    .outputSnapTime(0)
    .rewindWindowLength("string")
    .build());
Copy
live_output_resource = azure_native.media.LiveOutput("liveOutputResource",
    account_name=string,
    archive_window_length=string,
    asset_name=string,
    live_event_name=string,
    resource_group_name=string,
    description=string,
    hls={
        fragmentsPerTsSegment: 0,
    },
    live_output_name=string,
    manifest_name=string,
    output_snap_time=0,
    rewind_window_length=string)
Copy
const liveOutputResource = new azure_native.media.LiveOutput("liveOutputResource", {
    accountName: "string",
    archiveWindowLength: "string",
    assetName: "string",
    liveEventName: "string",
    resourceGroupName: "string",
    description: "string",
    hls: {
        fragmentsPerTsSegment: 0,
    },
    liveOutputName: "string",
    manifestName: "string",
    outputSnapTime: 0,
    rewindWindowLength: "string",
});
Copy
type: azure-native:media:LiveOutput
properties:
    accountName: string
    archiveWindowLength: string
    assetName: string
    description: string
    hls:
        fragmentsPerTsSegment: 0
    liveEventName: string
    liveOutputName: string
    manifestName: string
    outputSnapTime: 0
    resourceGroupName: string
    rewindWindowLength: string
Copy

LiveOutput Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LiveOutput resource accepts the following input properties:

AccountName
This property is required.
Changes to this property will trigger replacement.
string
The Media Services account name.
ArchiveWindowLength This property is required. string
ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window.
AssetName This property is required. string
The asset that the live output will write to.
LiveEventName
This property is required.
Changes to this property will trigger replacement.
string
The name of the live event, maximum length is 32.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the Azure subscription.
Description string
The description of the live output.
Hls Pulumi.AzureNative.Media.Inputs.Hls
HTTP Live Streaming (HLS) packing setting for the live output.
LiveOutputName Changes to this property will trigger replacement. string
The name of the live output.
ManifestName string
The manifest file name. If not provided, the service will generate one automatically.
OutputSnapTime double
The initial timestamp that the live output will start at, any content before this value will not be archived.
RewindWindowLength string
ISO 8601 time between 1 minute to the duration of archiveWindowLength to control seek-able window length during Live. The service won't use this property once LiveOutput stops. The archived VOD will have full content with original ArchiveWindowLength. For example, use PT1H30M to indicate 1 hour and 30 minutes of rewind window length. Service will use implicit default value 30m only if Live Event enables LL.
AccountName
This property is required.
Changes to this property will trigger replacement.
string
The Media Services account name.
ArchiveWindowLength This property is required. string
ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window.
AssetName This property is required. string
The asset that the live output will write to.
LiveEventName
This property is required.
Changes to this property will trigger replacement.
string
The name of the live event, maximum length is 32.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the Azure subscription.
Description string
The description of the live output.
Hls HlsArgs
HTTP Live Streaming (HLS) packing setting for the live output.
LiveOutputName Changes to this property will trigger replacement. string
The name of the live output.
ManifestName string
The manifest file name. If not provided, the service will generate one automatically.
OutputSnapTime float64
The initial timestamp that the live output will start at, any content before this value will not be archived.
RewindWindowLength string
ISO 8601 time between 1 minute to the duration of archiveWindowLength to control seek-able window length during Live. The service won't use this property once LiveOutput stops. The archived VOD will have full content with original ArchiveWindowLength. For example, use PT1H30M to indicate 1 hour and 30 minutes of rewind window length. Service will use implicit default value 30m only if Live Event enables LL.
accountName
This property is required.
Changes to this property will trigger replacement.
String
The Media Services account name.
archiveWindowLength This property is required. String
ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window.
assetName This property is required. String
The asset that the live output will write to.
liveEventName
This property is required.
Changes to this property will trigger replacement.
String
The name of the live event, maximum length is 32.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group within the Azure subscription.
description String
The description of the live output.
hls Hls
HTTP Live Streaming (HLS) packing setting for the live output.
liveOutputName Changes to this property will trigger replacement. String
The name of the live output.
manifestName String
The manifest file name. If not provided, the service will generate one automatically.
outputSnapTime Double
The initial timestamp that the live output will start at, any content before this value will not be archived.
rewindWindowLength String
ISO 8601 time between 1 minute to the duration of archiveWindowLength to control seek-able window length during Live. The service won't use this property once LiveOutput stops. The archived VOD will have full content with original ArchiveWindowLength. For example, use PT1H30M to indicate 1 hour and 30 minutes of rewind window length. Service will use implicit default value 30m only if Live Event enables LL.
accountName
This property is required.
Changes to this property will trigger replacement.
string
The Media Services account name.
archiveWindowLength This property is required. string
ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window.
assetName This property is required. string
The asset that the live output will write to.
liveEventName
This property is required.
Changes to this property will trigger replacement.
string
The name of the live event, maximum length is 32.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the Azure subscription.
description string
The description of the live output.
hls Hls
HTTP Live Streaming (HLS) packing setting for the live output.
liveOutputName Changes to this property will trigger replacement. string
The name of the live output.
manifestName string
The manifest file name. If not provided, the service will generate one automatically.
outputSnapTime number
The initial timestamp that the live output will start at, any content before this value will not be archived.
rewindWindowLength string
ISO 8601 time between 1 minute to the duration of archiveWindowLength to control seek-able window length during Live. The service won't use this property once LiveOutput stops. The archived VOD will have full content with original ArchiveWindowLength. For example, use PT1H30M to indicate 1 hour and 30 minutes of rewind window length. Service will use implicit default value 30m only if Live Event enables LL.
account_name
This property is required.
Changes to this property will trigger replacement.
str
The Media Services account name.
archive_window_length This property is required. str
ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window.
asset_name This property is required. str
The asset that the live output will write to.
live_event_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the live event, maximum length is 32.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group within the Azure subscription.
description str
The description of the live output.
hls HlsArgs
HTTP Live Streaming (HLS) packing setting for the live output.
live_output_name Changes to this property will trigger replacement. str
The name of the live output.
manifest_name str
The manifest file name. If not provided, the service will generate one automatically.
output_snap_time float
The initial timestamp that the live output will start at, any content before this value will not be archived.
rewind_window_length str
ISO 8601 time between 1 minute to the duration of archiveWindowLength to control seek-able window length during Live. The service won't use this property once LiveOutput stops. The archived VOD will have full content with original ArchiveWindowLength. For example, use PT1H30M to indicate 1 hour and 30 minutes of rewind window length. Service will use implicit default value 30m only if Live Event enables LL.
accountName
This property is required.
Changes to this property will trigger replacement.
String
The Media Services account name.
archiveWindowLength This property is required. String
ISO 8601 time between 1 minute to 25 hours to indicate the maximum content length that can be archived in the asset for this live output. This also sets the maximum content length for the rewind window. For example, use PT1H30M to indicate 1 hour and 30 minutes of archive window.
assetName This property is required. String
The asset that the live output will write to.
liveEventName
This property is required.
Changes to this property will trigger replacement.
String
The name of the live event, maximum length is 32.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group within the Azure subscription.
description String
The description of the live output.
hls Property Map
HTTP Live Streaming (HLS) packing setting for the live output.
liveOutputName Changes to this property will trigger replacement. String
The name of the live output.
manifestName String
The manifest file name. If not provided, the service will generate one automatically.
outputSnapTime Number
The initial timestamp that the live output will start at, any content before this value will not be archived.
rewindWindowLength String
ISO 8601 time between 1 minute to the duration of archiveWindowLength to control seek-able window length during Live. The service won't use this property once LiveOutput stops. The archived VOD will have full content with original ArchiveWindowLength. For example, use PT1H30M to indicate 1 hour and 30 minutes of rewind window length. Service will use implicit default value 30m only if Live Event enables LL.

Outputs

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

Created string
The creation time the live output.
Id string
The provider-assigned unique ID for this managed resource.
LastModified string
The time the live output was last modified.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the live output.
ResourceState string
The resource state of the live output.
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"
Created string
The creation time the live output.
Id string
The provider-assigned unique ID for this managed resource.
LastModified string
The time the live output was last modified.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the live output.
ResourceState string
The resource state of the live output.
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"
created String
The creation time the live output.
id String
The provider-assigned unique ID for this managed resource.
lastModified String
The time the live output was last modified.
name String
The name of the resource
provisioningState String
The provisioning state of the live output.
resourceState String
The resource state of the live output.
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"
created string
The creation time the live output.
id string
The provider-assigned unique ID for this managed resource.
lastModified string
The time the live output was last modified.
name string
The name of the resource
provisioningState string
The provisioning state of the live output.
resourceState string
The resource state of the live output.
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"
created str
The creation time the live output.
id str
The provider-assigned unique ID for this managed resource.
last_modified str
The time the live output was last modified.
name str
The name of the resource
provisioning_state str
The provisioning state of the live output.
resource_state str
The resource state of the live output.
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"
created String
The creation time the live output.
id String
The provider-assigned unique ID for this managed resource.
lastModified String
The time the live output was last modified.
name String
The name of the resource
provisioningState String
The provisioning state of the live output.
resourceState String
The resource state of the live output.
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

Hls
, HlsArgs

FragmentsPerTsSegment int
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
FragmentsPerTsSegment int
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragmentsPerTsSegment Integer
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragmentsPerTsSegment number
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragments_per_ts_segment int
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragmentsPerTsSegment Number
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.

HlsResponse
, HlsResponseArgs

FragmentsPerTsSegment int
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
FragmentsPerTsSegment int
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragmentsPerTsSegment Integer
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragmentsPerTsSegment number
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragments_per_ts_segment int
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.
fragmentsPerTsSegment Number
The number of fragments in an HTTP Live Streaming (HLS) TS segment in the output of the live event. This value does not affect the packing ratio for HLS CMAF output.

SystemDataResponse
, SystemDataResponseArgs

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:LiveOutput myLiveOutput1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/liveEvents/{liveEventName}/liveOutputs/{liveOutputName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi