1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. videoanalyzer
  6. VideoAnalyzer
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v1.103.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v1.103.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    A Video Analyzer account. API Version: 2021-05-01-preview.

    Example Usage

    Create a Video Analyzer account

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var videoAnalyzer = new AzureNative.VideoAnalyzer.VideoAnalyzer("videoAnalyzer", new()
        {
            AccountName = "contosotv",
            Encryption = new AzureNative.VideoAnalyzer.Inputs.AccountEncryptionArgs
            {
                Type = "SystemKey",
            },
            Identity = new AzureNative.VideoAnalyzer.Inputs.VideoAnalyzerIdentityArgs
            {
                Type = "UserAssigned",
                UserAssignedIdentities = 
                {
                    { "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1", null },
                    { "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2", null },
                    { "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3", null },
                },
            },
            Location = "South Central US",
            ResourceGroupName = "contoso",
            StorageAccounts = new[]
            {
                new AzureNative.VideoAnalyzer.Inputs.StorageAccountArgs
                {
                    Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Storage/storageAccounts/storage1",
                    Identity = new AzureNative.VideoAnalyzer.Inputs.ResourceIdentityArgs
                    {
                        UserAssignedIdentity = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2",
                    },
                },
            },
            Tags = 
            {
                { "tag1", "value1" },
                { "tag2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	videoanalyzer "github.com/pulumi/pulumi-azure-native-sdk/videoanalyzer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := videoanalyzer.NewVideoAnalyzer(ctx, "videoAnalyzer", &videoanalyzer.VideoAnalyzerArgs{
    			AccountName: pulumi.String("contosotv"),
    			Encryption: &videoanalyzer.AccountEncryptionArgs{
    				Type: pulumi.String("SystemKey"),
    			},
    			Identity: &videoanalyzer.VideoAnalyzerIdentityArgs{
    				Type: pulumi.String("UserAssigned"),
    				UserAssignedIdentities: pulumi.AnyMap{
    					"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1": nil,
    					"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2": nil,
    					"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3": nil,
    				},
    			},
    			Location:          pulumi.String("South Central US"),
    			ResourceGroupName: pulumi.String("contoso"),
    			StorageAccounts: []videoanalyzer.StorageAccountArgs{
    				{
    					Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Storage/storageAccounts/storage1"),
    					Identity: {
    						UserAssignedIdentity: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2"),
    					},
    				},
    			},
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    				"tag2": pulumi.String("value2"),
    			},
    		})
    		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.videoanalyzer.VideoAnalyzer;
    import com.pulumi.azurenative.videoanalyzer.VideoAnalyzerArgs;
    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 videoAnalyzer = new VideoAnalyzer("videoAnalyzer", VideoAnalyzerArgs.builder()        
                .accountName("contosotv")
                .encryption(Map.of("type", "SystemKey"))
                .identity(Map.ofEntries(
                    Map.entry("type", "UserAssigned"),
                    Map.entry("userAssignedIdentities", Map.ofEntries(
                        Map.entry("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1", ),
                        Map.entry("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2", ),
                        Map.entry("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3", )
                    ))
                ))
                .location("South Central US")
                .resourceGroupName("contoso")
                .storageAccounts(Map.ofEntries(
                    Map.entry("id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Storage/storageAccounts/storage1"),
                    Map.entry("identity", Map.of("userAssignedIdentity", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2"))
                ))
                .tags(Map.ofEntries(
                    Map.entry("tag1", "value1"),
                    Map.entry("tag2", "value2")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const videoAnalyzer = new azure_native.videoanalyzer.VideoAnalyzer("videoAnalyzer", {
        accountName: "contosotv",
        encryption: {
            type: "SystemKey",
        },
        identity: {
            type: "UserAssigned",
            userAssignedIdentities: {
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1": {},
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2": {},
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3": {},
            },
        },
        location: "South Central US",
        resourceGroupName: "contoso",
        storageAccounts: [{
            id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Storage/storageAccounts/storage1",
            identity: {
                userAssignedIdentity: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2",
            },
        }],
        tags: {
            tag1: "value1",
            tag2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    video_analyzer = azure_native.videoanalyzer.VideoAnalyzer("videoAnalyzer",
        account_name="contosotv",
        encryption=azure_native.videoanalyzer.AccountEncryptionArgs(
            type="SystemKey",
        ),
        identity=azure_native.videoanalyzer.VideoAnalyzerIdentityArgs(
            type="UserAssigned",
            user_assigned_identities={
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1": {},
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2": {},
                "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3": {},
            },
        ),
        location="South Central US",
        resource_group_name="contoso",
        storage_accounts=[{
            "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Storage/storageAccounts/storage1",
            "identity": azure_native.videoanalyzer.ResourceIdentityArgs(
                user_assigned_identity="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2",
            ),
        }],
        tags={
            "tag1": "value1",
            "tag2": "value2",
        })
    
    resources:
      videoAnalyzer:
        type: azure-native:videoanalyzer:VideoAnalyzer
        properties:
          accountName: contosotv
          encryption:
            type: SystemKey
          identity:
            type: UserAssigned
            userAssignedIdentities:
              ? /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id1
              : {}
              ? /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2
              : {}
              ? /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3
              : {}
          location: South Central US
          resourceGroupName: contoso
          storageAccounts:
            - id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Storage/storageAccounts/storage1
              identity:
                userAssignedIdentity: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id2
          tags:
            tag1: value1
            tag2: value2
    

    Create VideoAnalyzer Resource

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

    Constructor syntax

    new VideoAnalyzer(name: string, args: VideoAnalyzerArgs, opts?: CustomResourceOptions);
    @overload
    def VideoAnalyzer(resource_name: str,
                      args: VideoAnalyzerArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def VideoAnalyzer(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      encryption: Optional[AccountEncryptionArgs] = None,
                      resource_group_name: Optional[str] = None,
                      storage_accounts: Optional[Sequence[StorageAccountArgs]] = None,
                      account_name: Optional[str] = None,
                      identity: Optional[VideoAnalyzerIdentityArgs] = None,
                      location: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewVideoAnalyzer(ctx *Context, name string, args VideoAnalyzerArgs, opts ...ResourceOption) (*VideoAnalyzer, error)
    public VideoAnalyzer(string name, VideoAnalyzerArgs args, CustomResourceOptions? opts = null)
    public VideoAnalyzer(String name, VideoAnalyzerArgs args)
    public VideoAnalyzer(String name, VideoAnalyzerArgs args, CustomResourceOptions options)
    
    type: azure-native:videoanalyzer:VideoAnalyzer
    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 VideoAnalyzerArgs
    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 VideoAnalyzerArgs
    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 VideoAnalyzerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VideoAnalyzerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VideoAnalyzerArgs
    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 videoAnalyzerResource = new AzureNative.VideoAnalyzer.VideoAnalyzer("videoAnalyzerResource", new()
    {
        Encryption = new AzureNative.VideoAnalyzer.Inputs.AccountEncryptionArgs
        {
            Type = "string",
            Identity = new AzureNative.VideoAnalyzer.Inputs.ResourceIdentityArgs
            {
                UserAssignedIdentity = "string",
            },
            KeyVaultProperties = new AzureNative.VideoAnalyzer.Inputs.KeyVaultPropertiesArgs
            {
                KeyIdentifier = "string",
            },
        },
        ResourceGroupName = "string",
        StorageAccounts = new[]
        {
            new AzureNative.VideoAnalyzer.Inputs.StorageAccountArgs
            {
                Id = "string",
                Identity = new AzureNative.VideoAnalyzer.Inputs.ResourceIdentityArgs
                {
                    UserAssignedIdentity = "string",
                },
            },
        },
        AccountName = "string",
        Identity = new AzureNative.VideoAnalyzer.Inputs.VideoAnalyzerIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = 
            {
                { "string", "any" },
            },
        },
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := videoanalyzer.NewVideoAnalyzer(ctx, "videoAnalyzerResource", &videoanalyzer.VideoAnalyzerArgs{
    	Encryption: &videoanalyzer.AccountEncryptionArgs{
    		Type: pulumi.String("string"),
    		Identity: &videoanalyzer.ResourceIdentityArgs{
    			UserAssignedIdentity: pulumi.String("string"),
    		},
    		KeyVaultProperties: &videoanalyzer.KeyVaultPropertiesArgs{
    			KeyIdentifier: pulumi.String("string"),
    		},
    	},
    	ResourceGroupName: pulumi.String("string"),
    	StorageAccounts: videoanalyzer.StorageAccountArray{
    		&videoanalyzer.StorageAccountArgs{
    			Id: pulumi.String("string"),
    			Identity: &videoanalyzer.ResourceIdentityArgs{
    				UserAssignedIdentity: pulumi.String("string"),
    			},
    		},
    	},
    	AccountName: pulumi.String("string"),
    	Identity: &videoanalyzer.VideoAnalyzerIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.Map{
    			"string": pulumi.Any("any"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var videoAnalyzerResource = new VideoAnalyzer("videoAnalyzerResource", VideoAnalyzerArgs.builder()
        .encryption(AccountEncryptionArgs.builder()
            .type("string")
            .identity(ResourceIdentityArgs.builder()
                .userAssignedIdentity("string")
                .build())
            .keyVaultProperties(KeyVaultPropertiesArgs.builder()
                .keyIdentifier("string")
                .build())
            .build())
        .resourceGroupName("string")
        .storageAccounts(StorageAccountArgs.builder()
            .id("string")
            .identity(ResourceIdentityArgs.builder()
                .userAssignedIdentity("string")
                .build())
            .build())
        .accountName("string")
        .identity(VideoAnalyzerIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities(Map.of("string", "any"))
            .build())
        .location("string")
        .tags(Map.of("string", "string"))
        .build());
    
    video_analyzer_resource = azure_native.videoanalyzer.VideoAnalyzer("videoAnalyzerResource",
        encryption={
            "type": "string",
            "identity": {
                "user_assigned_identity": "string",
            },
            "key_vault_properties": {
                "key_identifier": "string",
            },
        },
        resource_group_name="string",
        storage_accounts=[{
            "id": "string",
            "identity": {
                "user_assigned_identity": "string",
            },
        }],
        account_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": {
                "string": "any",
            },
        },
        location="string",
        tags={
            "string": "string",
        })
    
    const videoAnalyzerResource = new azure_native.videoanalyzer.VideoAnalyzer("videoAnalyzerResource", {
        encryption: {
            type: "string",
            identity: {
                userAssignedIdentity: "string",
            },
            keyVaultProperties: {
                keyIdentifier: "string",
            },
        },
        resourceGroupName: "string",
        storageAccounts: [{
            id: "string",
            identity: {
                userAssignedIdentity: "string",
            },
        }],
        accountName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: {
                string: "any",
            },
        },
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:videoanalyzer:VideoAnalyzer
    properties:
        accountName: string
        encryption:
            identity:
                userAssignedIdentity: string
            keyVaultProperties:
                keyIdentifier: string
            type: string
        identity:
            type: string
            userAssignedIdentities:
                string: any
        location: string
        resourceGroupName: string
        storageAccounts:
            - id: string
              identity:
                userAssignedIdentity: string
        tags:
            string: string
    

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

    Encryption Pulumi.AzureNative.VideoAnalyzer.Inputs.AccountEncryption
    The account encryption properties.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    StorageAccounts List<Pulumi.AzureNative.VideoAnalyzer.Inputs.StorageAccount>
    The storage accounts for this resource.
    AccountName string
    The Video Analyzer account name.
    Identity Pulumi.AzureNative.VideoAnalyzer.Inputs.VideoAnalyzerIdentity
    The set of managed identities associated with the Video Analyzer resource.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    Encryption AccountEncryptionArgs
    The account encryption properties.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    StorageAccounts []StorageAccountArgs
    The storage accounts for this resource.
    AccountName string
    The Video Analyzer account name.
    Identity VideoAnalyzerIdentityArgs
    The set of managed identities associated with the Video Analyzer resource.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    encryption AccountEncryption
    The account encryption properties.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    storageAccounts List<StorageAccount>
    The storage accounts for this resource.
    accountName String
    The Video Analyzer account name.
    identity VideoAnalyzerIdentity
    The set of managed identities associated with the Video Analyzer resource.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    encryption AccountEncryption
    The account encryption properties.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    storageAccounts StorageAccount[]
    The storage accounts for this resource.
    accountName string
    The Video Analyzer account name.
    identity VideoAnalyzerIdentity
    The set of managed identities associated with the Video Analyzer resource.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    encryption AccountEncryptionArgs
    The account encryption properties.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    storage_accounts Sequence[StorageAccountArgs]
    The storage accounts for this resource.
    account_name str
    The Video Analyzer account name.
    identity VideoAnalyzerIdentityArgs
    The set of managed identities associated with the Video Analyzer resource.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    encryption Property Map
    The account encryption properties.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    storageAccounts List<Property Map>
    The storage accounts for this resource.
    accountName String
    The Video Analyzer account name.
    identity Property Map
    The set of managed identities associated with the Video Analyzer resource.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.

    Outputs

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

    Endpoints List<Pulumi.AzureNative.VideoAnalyzer.Outputs.EndpointResponse>
    The list of endpoints associated with this resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.VideoAnalyzer.Outputs.SystemDataResponse
    The system data of the Video Analyzer account.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Endpoints []EndpointResponse
    The list of endpoints associated with this resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    The system data of the Video Analyzer account.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    endpoints List<EndpointResponse>
    The list of endpoints associated with this resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    The system data of the Video Analyzer account.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    endpoints EndpointResponse[]
    The list of endpoints associated with this resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    The system data of the Video Analyzer account.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    endpoints Sequence[EndpointResponse]
    The list of endpoints associated with this resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    The system data of the Video Analyzer account.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    endpoints List<Property Map>
    The list of endpoints associated with this resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    The system data of the Video Analyzer account.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AccountEncryption, AccountEncryptionArgs

    Defines how the Video Analyzer account is (optionally) encrypted.
    Type string | Pulumi.AzureNative.VideoAnalyzer.AccountEncryptionKeyType
    The type of key used to encrypt the Account Key.
    Identity Pulumi.AzureNative.VideoAnalyzer.Inputs.ResourceIdentity
    The Key Vault identity.
    KeyVaultProperties Pulumi.AzureNative.VideoAnalyzer.Inputs.KeyVaultProperties
    The properties of the key used to encrypt the account.
    Type string | AccountEncryptionKeyType
    The type of key used to encrypt the Account Key.
    Identity ResourceIdentity
    The Key Vault identity.
    KeyVaultProperties KeyVaultProperties
    The properties of the key used to encrypt the account.
    type String | AccountEncryptionKeyType
    The type of key used to encrypt the Account Key.
    identity ResourceIdentity
    The Key Vault identity.
    keyVaultProperties KeyVaultProperties
    The properties of the key used to encrypt the account.
    type string | AccountEncryptionKeyType
    The type of key used to encrypt the Account Key.
    identity ResourceIdentity
    The Key Vault identity.
    keyVaultProperties KeyVaultProperties
    The properties of the key used to encrypt the account.
    type str | AccountEncryptionKeyType
    The type of key used to encrypt the Account Key.
    identity ResourceIdentity
    The Key Vault identity.
    key_vault_properties KeyVaultProperties
    The properties of the key used to encrypt the account.
    type String | "SystemKey" | "CustomerKey"
    The type of key used to encrypt the Account Key.
    identity Property Map
    The Key Vault identity.
    keyVaultProperties Property Map
    The properties of the key used to encrypt the account.

    AccountEncryptionKeyType, AccountEncryptionKeyTypeArgs

    SystemKey
    SystemKey The Account Key is encrypted with a System Key.
    CustomerKey
    CustomerKey The Account Key is encrypted with a Customer Key.
    AccountEncryptionKeyTypeSystemKey
    SystemKey The Account Key is encrypted with a System Key.
    AccountEncryptionKeyTypeCustomerKey
    CustomerKey The Account Key is encrypted with a Customer Key.
    SystemKey
    SystemKey The Account Key is encrypted with a System Key.
    CustomerKey
    CustomerKey The Account Key is encrypted with a Customer Key.
    SystemKey
    SystemKey The Account Key is encrypted with a System Key.
    CustomerKey
    CustomerKey The Account Key is encrypted with a Customer Key.
    SYSTEM_KEY
    SystemKey The Account Key is encrypted with a System Key.
    CUSTOMER_KEY
    CustomerKey The Account Key is encrypted with a Customer Key.
    "SystemKey"
    SystemKey The Account Key is encrypted with a System Key.
    "CustomerKey"
    CustomerKey The Account Key is encrypted with a Customer Key.

    AccountEncryptionResponse, AccountEncryptionResponseArgs

    Defines how the Video Analyzer account is (optionally) encrypted.
    Status string
    The current status of the Key Vault mapping.
    Type string
    The type of key used to encrypt the Account Key.
    Identity Pulumi.AzureNative.VideoAnalyzer.Inputs.ResourceIdentityResponse
    The Key Vault identity.
    KeyVaultProperties Pulumi.AzureNative.VideoAnalyzer.Inputs.KeyVaultPropertiesResponse
    The properties of the key used to encrypt the account.
    Status string
    The current status of the Key Vault mapping.
    Type string
    The type of key used to encrypt the Account Key.
    Identity ResourceIdentityResponse
    The Key Vault identity.
    KeyVaultProperties KeyVaultPropertiesResponse
    The properties of the key used to encrypt the account.
    status String
    The current status of the Key Vault mapping.
    type String
    The type of key used to encrypt the Account Key.
    identity ResourceIdentityResponse
    The Key Vault identity.
    keyVaultProperties KeyVaultPropertiesResponse
    The properties of the key used to encrypt the account.
    status string
    The current status of the Key Vault mapping.
    type string
    The type of key used to encrypt the Account Key.
    identity ResourceIdentityResponse
    The Key Vault identity.
    keyVaultProperties KeyVaultPropertiesResponse
    The properties of the key used to encrypt the account.
    status str
    The current status of the Key Vault mapping.
    type str
    The type of key used to encrypt the Account Key.
    identity ResourceIdentityResponse
    The Key Vault identity.
    key_vault_properties KeyVaultPropertiesResponse
    The properties of the key used to encrypt the account.
    status String
    The current status of the Key Vault mapping.
    type String
    The type of key used to encrypt the Account Key.
    identity Property Map
    The Key Vault identity.
    keyVaultProperties Property Map
    The properties of the key used to encrypt the account.

    EndpointResponse, EndpointResponseArgs

    The endpoint details.
    Type string
    The type of the endpoint.
    EndpointUrl string
    The URL of the endpoint.
    Type string
    The type of the endpoint.
    EndpointUrl string
    The URL of the endpoint.
    type String
    The type of the endpoint.
    endpointUrl String
    The URL of the endpoint.
    type string
    The type of the endpoint.
    endpointUrl string
    The URL of the endpoint.
    type str
    The type of the endpoint.
    endpoint_url str
    The URL of the endpoint.
    type String
    The type of the endpoint.
    endpointUrl String
    The URL of the endpoint.

    KeyVaultProperties, KeyVaultPropertiesArgs

    The details for accessing the encryption keys in Key Vault.
    KeyIdentifier string
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    KeyIdentifier string
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    keyIdentifier String
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    keyIdentifier string
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    key_identifier str
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    keyIdentifier String
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).

    KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs

    The details for accessing the encryption keys in Key Vault.
    CurrentKeyIdentifier string
    The current key used to encrypt Video Analyzer account, including the key version.
    KeyIdentifier string
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    CurrentKeyIdentifier string
    The current key used to encrypt Video Analyzer account, including the key version.
    KeyIdentifier string
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    currentKeyIdentifier String
    The current key used to encrypt Video Analyzer account, including the key version.
    keyIdentifier String
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    currentKeyIdentifier string
    The current key used to encrypt Video Analyzer account, including the key version.
    keyIdentifier string
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    current_key_identifier str
    The current key used to encrypt Video Analyzer account, including the key version.
    key_identifier str
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    currentKeyIdentifier String
    The current key used to encrypt Video Analyzer account, including the key version.
    keyIdentifier String
    The URL of the Key Vault key used to encrypt the account. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).

    ResourceIdentity, ResourceIdentityArgs

    The user assigned managed identity to use when accessing a resource.
    UserAssignedIdentity string
    The user assigned managed identity's resource identifier to use when accessing a resource.
    UserAssignedIdentity string
    The user assigned managed identity's resource identifier to use when accessing a resource.
    userAssignedIdentity String
    The user assigned managed identity's resource identifier to use when accessing a resource.
    userAssignedIdentity string
    The user assigned managed identity's resource identifier to use when accessing a resource.
    user_assigned_identity str
    The user assigned managed identity's resource identifier to use when accessing a resource.
    userAssignedIdentity String
    The user assigned managed identity's resource identifier to use when accessing a resource.

    ResourceIdentityResponse, ResourceIdentityResponseArgs

    The user assigned managed identity to use when accessing a resource.
    UserAssignedIdentity string
    The user assigned managed identity's resource identifier to use when accessing a resource.
    UserAssignedIdentity string
    The user assigned managed identity's resource identifier to use when accessing a resource.
    userAssignedIdentity String
    The user assigned managed identity's resource identifier to use when accessing a resource.
    userAssignedIdentity string
    The user assigned managed identity's resource identifier to use when accessing a resource.
    user_assigned_identity str
    The user assigned managed identity's resource identifier to use when accessing a resource.
    userAssignedIdentity String
    The user assigned managed identity's resource identifier to use when accessing a resource.

    StorageAccount, StorageAccountArgs

    The details about the associated storage account.
    Id string
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    Identity Pulumi.AzureNative.VideoAnalyzer.Inputs.ResourceIdentity
    A managed identity that Video Analyzer will use to access the storage account.
    Id string
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    Identity ResourceIdentity
    A managed identity that Video Analyzer will use to access the storage account.
    id String
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity ResourceIdentity
    A managed identity that Video Analyzer will use to access the storage account.
    id string
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity ResourceIdentity
    A managed identity that Video Analyzer will use to access the storage account.
    id str
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity ResourceIdentity
    A managed identity that Video Analyzer will use to access the storage account.
    id String
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity Property Map
    A managed identity that Video Analyzer will use to access the storage account.

    StorageAccountResponse, StorageAccountResponseArgs

    The details about the associated storage account.
    Status string
    The current status of the storage account mapping.
    Id string
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    Identity Pulumi.AzureNative.VideoAnalyzer.Inputs.ResourceIdentityResponse
    A managed identity that Video Analyzer will use to access the storage account.
    Status string
    The current status of the storage account mapping.
    Id string
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    Identity ResourceIdentityResponse
    A managed identity that Video Analyzer will use to access the storage account.
    status String
    The current status of the storage account mapping.
    id String
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity ResourceIdentityResponse
    A managed identity that Video Analyzer will use to access the storage account.
    status string
    The current status of the storage account mapping.
    id string
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity ResourceIdentityResponse
    A managed identity that Video Analyzer will use to access the storage account.
    status str
    The current status of the storage account mapping.
    id str
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity ResourceIdentityResponse
    A managed identity that Video Analyzer will use to access the storage account.
    status String
    The current status of the storage account mapping.
    id String
    The ID of the storage account resource. Video Analyzer relies on tables, queues, and blobs. The primary storage account must be a Standard Storage account (either Microsoft.ClassicStorage or Microsoft.Storage).
    identity Property Map
    A managed identity that Video Analyzer will use to access the storage account.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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.

    UserAssignedManagedIdentityResponse, UserAssignedManagedIdentityResponseArgs

    The details of the user assigned managed identity used by the Video Analyzer resource.
    ClientId string
    The client ID.
    PrincipalId string
    The principal ID.
    ClientId string
    The client ID.
    PrincipalId string
    The principal ID.
    clientId String
    The client ID.
    principalId String
    The principal ID.
    clientId string
    The client ID.
    principalId string
    The principal ID.
    client_id str
    The client ID.
    principal_id str
    The principal ID.
    clientId String
    The client ID.
    principalId String
    The principal ID.

    VideoAnalyzerIdentity, VideoAnalyzerIdentityArgs

    The managed identity for the Video Analyzer resource.
    Type string
    The identity type.
    UserAssignedIdentities Dictionary<string, object>
    The User Assigned Managed Identities.
    Type string
    The identity type.
    UserAssignedIdentities map[string]interface{}
    The User Assigned Managed Identities.
    type String
    The identity type.
    userAssignedIdentities Map<String,Object>
    The User Assigned Managed Identities.
    type string
    The identity type.
    userAssignedIdentities {[key: string]: any}
    The User Assigned Managed Identities.
    type str
    The identity type.
    user_assigned_identities Mapping[str, Any]
    The User Assigned Managed Identities.
    type String
    The identity type.
    userAssignedIdentities Map<Any>
    The User Assigned Managed Identities.

    VideoAnalyzerIdentityResponse, VideoAnalyzerIdentityResponseArgs

    The managed identity for the Video Analyzer resource.
    Type string
    The identity type.
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.VideoAnalyzer.Inputs.UserAssignedManagedIdentityResponse>
    The User Assigned Managed Identities.
    Type string
    The identity type.
    UserAssignedIdentities map[string]UserAssignedManagedIdentityResponse
    The User Assigned Managed Identities.
    type String
    The identity type.
    userAssignedIdentities Map<String,UserAssignedManagedIdentityResponse>
    The User Assigned Managed Identities.
    type string
    The identity type.
    userAssignedIdentities {[key: string]: UserAssignedManagedIdentityResponse}
    The User Assigned Managed Identities.
    type str
    The identity type.
    user_assigned_identities Mapping[str, UserAssignedManagedIdentityResponse]
    The User Assigned Managed Identities.
    type String
    The identity type.
    userAssignedIdentities Map<Property Map>
    The User Assigned Managed Identities.

    Import

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

    $ pulumi import azure-native:videoanalyzer:VideoAnalyzer contosomovies /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso/providers/Microsoft.Media/videoAnalyzers/contosomovies 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v1.103.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial