azure logo
Azure Classic v5.38.0, Mar 21 23

azure.media.Asset

Manages a Media Asset.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleAccount = new Azure.Storage.Account("exampleAccount", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
        AccountTier = "Standard",
        AccountReplicationType = "GRS",
    });

    var exampleServiceAccount = new Azure.Media.ServiceAccount("exampleServiceAccount", new()
    {
        Location = exampleResourceGroup.Location,
        ResourceGroupName = exampleResourceGroup.Name,
        StorageAccounts = new[]
        {
            new Azure.Media.Inputs.ServiceAccountStorageAccountArgs
            {
                Id = exampleAccount.Id,
                IsPrimary = true,
            },
        },
    });

    var exampleAsset = new Azure.Media.Asset("exampleAsset", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        MediaServicesAccountName = exampleServiceAccount.Name,
        Description = "Asset description",
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/media"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
			ResourceGroupName:      exampleResourceGroup.Name,
			Location:               exampleResourceGroup.Location,
			AccountTier:            pulumi.String("Standard"),
			AccountReplicationType: pulumi.String("GRS"),
		})
		if err != nil {
			return err
		}
		exampleServiceAccount, err := media.NewServiceAccount(ctx, "exampleServiceAccount", &media.ServiceAccountArgs{
			Location:          exampleResourceGroup.Location,
			ResourceGroupName: exampleResourceGroup.Name,
			StorageAccounts: media.ServiceAccountStorageAccountArray{
				&media.ServiceAccountStorageAccountArgs{
					Id:        exampleAccount.ID(),
					IsPrimary: pulumi.Bool(true),
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = media.NewAsset(ctx, "exampleAsset", &media.AssetArgs{
			ResourceGroupName:        exampleResourceGroup.Name,
			MediaServicesAccountName: exampleServiceAccount.Name,
			Description:              pulumi.String("Asset description"),
		})
		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.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.media.ServiceAccount;
import com.pulumi.azure.media.ServiceAccountArgs;
import com.pulumi.azure.media.inputs.ServiceAccountStorageAccountArgs;
import com.pulumi.azure.media.Asset;
import com.pulumi.azure.media.AssetArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .location(exampleResourceGroup.location())
            .accountTier("Standard")
            .accountReplicationType("GRS")
            .build());

        var exampleServiceAccount = new ServiceAccount("exampleServiceAccount", ServiceAccountArgs.builder()        
            .location(exampleResourceGroup.location())
            .resourceGroupName(exampleResourceGroup.name())
            .storageAccounts(ServiceAccountStorageAccountArgs.builder()
                .id(exampleAccount.id())
                .isPrimary(true)
                .build())
            .build());

        var exampleAsset = new Asset("exampleAsset", AssetArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .mediaServicesAccountName(exampleServiceAccount.name())
            .description("Asset description")
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
    resource_group_name=example_resource_group.name,
    location=example_resource_group.location,
    account_tier="Standard",
    account_replication_type="GRS")
example_service_account = azure.media.ServiceAccount("exampleServiceAccount",
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name,
    storage_accounts=[azure.media.ServiceAccountStorageAccountArgs(
        id=example_account.id,
        is_primary=True,
    )])
example_asset = azure.media.Asset("exampleAsset",
    resource_group_name=example_resource_group.name,
    media_services_account_name=example_service_account.name,
    description="Asset description")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
    resourceGroupName: exampleResourceGroup.name,
    location: exampleResourceGroup.location,
    accountTier: "Standard",
    accountReplicationType: "GRS",
});
const exampleServiceAccount = new azure.media.ServiceAccount("exampleServiceAccount", {
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
    storageAccounts: [{
        id: exampleAccount.id,
        isPrimary: true,
    }],
});
const exampleAsset = new azure.media.Asset("exampleAsset", {
    resourceGroupName: exampleResourceGroup.name,
    mediaServicesAccountName: exampleServiceAccount.name,
    description: "Asset description",
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleAccount:
    type: azure:storage:Account
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      accountTier: Standard
      accountReplicationType: GRS
  exampleServiceAccount:
    type: azure:media:ServiceAccount
    properties:
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
      storageAccounts:
        - id: ${exampleAccount.id}
          isPrimary: true
  exampleAsset:
    type: azure:media:Asset
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      mediaServicesAccountName: ${exampleServiceAccount.name}
      description: Asset description

Create Asset Resource

new Asset(name: string, args: AssetArgs, opts?: CustomResourceOptions);
@overload
def Asset(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          alternate_id: Optional[str] = None,
          container: Optional[str] = None,
          description: Optional[str] = None,
          media_services_account_name: Optional[str] = None,
          name: Optional[str] = None,
          resource_group_name: Optional[str] = None,
          storage_account_name: Optional[str] = None)
@overload
def Asset(resource_name: str,
          args: AssetArgs,
          opts: Optional[ResourceOptions] = None)
func NewAsset(ctx *Context, name string, args AssetArgs, opts ...ResourceOption) (*Asset, error)
public Asset(string name, AssetArgs args, CustomResourceOptions? opts = null)
public Asset(String name, AssetArgs args)
public Asset(String name, AssetArgs args, CustomResourceOptions options)
type: azure:media:Asset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

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

MediaServicesAccountName string

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

ResourceGroupName string

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

AlternateId string

The alternate ID of the Asset.

Container string

The name of the asset blob container. Changing this forces a new Media Asset to be created.

Description string

The Asset description.

Name string

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

StorageAccountName string

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

MediaServicesAccountName string

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

ResourceGroupName string

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

AlternateId string

The alternate ID of the Asset.

Container string

The name of the asset blob container. Changing this forces a new Media Asset to be created.

Description string

The Asset description.

Name string

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

StorageAccountName string

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

mediaServicesAccountName String

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

resourceGroupName String

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

alternateId String

The alternate ID of the Asset.

container String

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description String

The Asset description.

name String

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

storageAccountName String

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

mediaServicesAccountName string

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

resourceGroupName string

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

alternateId string

The alternate ID of the Asset.

container string

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description string

The Asset description.

name string

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

storageAccountName string

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

media_services_account_name str

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

resource_group_name str

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

alternate_id str

The alternate ID of the Asset.

container str

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description str

The Asset description.

name str

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

storage_account_name str

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

mediaServicesAccountName String

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

resourceGroupName String

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

alternateId String

The alternate ID of the Asset.

container String

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description String

The Asset description.

name String

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

storageAccountName String

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing Asset Resource

Get an existing Asset resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: AssetState, opts?: CustomResourceOptions): Asset
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        alternate_id: Optional[str] = None,
        container: Optional[str] = None,
        description: Optional[str] = None,
        media_services_account_name: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        storage_account_name: Optional[str] = None) -> Asset
func GetAsset(ctx *Context, name string, id IDInput, state *AssetState, opts ...ResourceOption) (*Asset, error)
public static Asset Get(string name, Input<string> id, AssetState? state, CustomResourceOptions? opts = null)
public static Asset get(String name, Output<String> id, AssetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AlternateId string

The alternate ID of the Asset.

Container string

The name of the asset blob container. Changing this forces a new Media Asset to be created.

Description string

The Asset description.

MediaServicesAccountName string

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

Name string

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

ResourceGroupName string

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

StorageAccountName string

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

AlternateId string

The alternate ID of the Asset.

Container string

The name of the asset blob container. Changing this forces a new Media Asset to be created.

Description string

The Asset description.

MediaServicesAccountName string

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

Name string

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

ResourceGroupName string

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

StorageAccountName string

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

alternateId String

The alternate ID of the Asset.

container String

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description String

The Asset description.

mediaServicesAccountName String

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

name String

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

resourceGroupName String

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

storageAccountName String

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

alternateId string

The alternate ID of the Asset.

container string

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description string

The Asset description.

mediaServicesAccountName string

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

name string

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

resourceGroupName string

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

storageAccountName string

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

alternate_id str

The alternate ID of the Asset.

container str

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description str

The Asset description.

media_services_account_name str

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

name str

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

resource_group_name str

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

storage_account_name str

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

alternateId String

The alternate ID of the Asset.

container String

The name of the asset blob container. Changing this forces a new Media Asset to be created.

description String

The Asset description.

mediaServicesAccountName String

Specifies the name of the Media Services Account. Changing this forces a new Media Asset to be created.

name String

The name which should be used for this Media Asset. Changing this forces a new Media Asset to be created.

resourceGroupName String

The name of the Resource Group where the Media Asset should exist. Changing this forces a new Media Asset to be created.

storageAccountName String

The name of the storage account where to store the media asset. Changing this forces a new Media Asset to be created.

Import

Media Assets can be imported using the resource id, e.g.

 $ pulumi import azure:media/asset:Asset example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Media/mediaServices/account1/assets/asset1

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.