published on Monday, Mar 9, 2026 by Pulumi
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.
Azure Native. Video Analyzer. Inputs. Account Encryption - The account encryption properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Storage
Accounts List<Pulumi.Azure Native. Video Analyzer. Inputs. Storage Account> - The storage accounts for this resource.
- Account
Name string - The Video Analyzer account name.
- Identity
Pulumi.
Azure Native. Video Analyzer. Inputs. Video Analyzer Identity - The set of managed identities associated with the Video Analyzer resource.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Encryption
Account
Encryption Args - The account encryption properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Storage
Accounts []StorageAccount Args - The storage accounts for this resource.
- Account
Name string - The Video Analyzer account name.
- Identity
Video
Analyzer Identity Args - The set of managed identities associated with the Video Analyzer resource.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- encryption
Account
Encryption - The account encryption properties.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- storage
Accounts List<StorageAccount> - The storage accounts for this resource.
- account
Name String - The Video Analyzer account name.
- identity
Video
Analyzer Identity - The set of managed identities associated with the Video Analyzer resource.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- encryption
Account
Encryption - The account encryption properties.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- storage
Accounts StorageAccount[] - The storage accounts for this resource.
- account
Name string - The Video Analyzer account name.
- identity
Video
Analyzer Identity - The set of managed identities associated with the Video Analyzer resource.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- encryption
Account
Encryption Args - The account encryption properties.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- storage_
accounts Sequence[StorageAccount Args] - The storage accounts for this resource.
- account_
name str - The Video Analyzer account name.
- identity
Video
Analyzer Identity Args - The set of managed identities associated with the Video Analyzer resource.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- encryption Property Map
- The account encryption properties.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- storage
Accounts List<Property Map> - The storage accounts for this resource.
- account
Name 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
- 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.
Azure Native. Video Analyzer. Outputs. Endpoint Response> - 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
- System
Data Pulumi.Azure Native. Video Analyzer. Outputs. System Data Response - 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
[]Endpoint
Response - 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
- System
Data SystemData Response - 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<Endpoint
Response> - 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
- system
Data SystemData Response - 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
Endpoint
Response[] - 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
- system
Data SystemData Response - 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[Endpoint
Response] - 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 SystemData Response - 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
- system
Data 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.
Azure Native. Video Analyzer. Account Encryption Key Type - The type of key used to encrypt the Account Key.
- Identity
Pulumi.
Azure Native. Video Analyzer. Inputs. Resource Identity - The Key Vault identity.
- Key
Vault Pulumi.Properties Azure Native. Video Analyzer. Inputs. Key Vault Properties - The properties of the key used to encrypt the account.
- Type
string | Account
Encryption Key Type - The type of key used to encrypt the Account Key.
- Identity
Resource
Identity - The Key Vault identity.
- Key
Vault KeyProperties Vault Properties - The properties of the key used to encrypt the account.
- type
String | Account
Encryption Key Type - The type of key used to encrypt the Account Key.
- identity
Resource
Identity - The Key Vault identity.
- key
Vault KeyProperties Vault Properties - The properties of the key used to encrypt the account.
- type
string | Account
Encryption Key Type - The type of key used to encrypt the Account Key.
- identity
Resource
Identity - The Key Vault identity.
- key
Vault KeyProperties Vault Properties - The properties of the key used to encrypt the account.
- type
str | Account
Encryption Key Type - The type of key used to encrypt the Account Key.
- identity
Resource
Identity - The Key Vault identity.
- key_
vault_ Keyproperties Vault Properties - The properties of the key used to encrypt the account.
- type
String | "System
Key" | "Customer Key" - The type of key used to encrypt the Account Key.
- identity Property Map
- The Key Vault identity.
- key
Vault Property MapProperties - The properties of the key used to encrypt the account.
AccountEncryptionKeyType, AccountEncryptionKeyTypeArgs
- System
Key SystemKeyThe Account Key is encrypted with a System Key.- Customer
Key CustomerKeyThe Account Key is encrypted with a Customer Key.
- Account
Encryption Key Type System Key SystemKeyThe Account Key is encrypted with a System Key.- Account
Encryption Key Type Customer Key CustomerKeyThe Account Key is encrypted with a Customer Key.
- System
Key SystemKeyThe Account Key is encrypted with a System Key.- Customer
Key CustomerKeyThe Account Key is encrypted with a Customer Key.
- System
Key SystemKeyThe Account Key is encrypted with a System Key.- Customer
Key CustomerKeyThe Account Key is encrypted with a Customer Key.
- SYSTEM_KEY
SystemKeyThe Account Key is encrypted with a System Key.- CUSTOMER_KEY
CustomerKeyThe Account Key is encrypted with a Customer Key.
- "System
Key" SystemKeyThe Account Key is encrypted with a System Key.- "Customer
Key" CustomerKeyThe 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.
Azure Native. Video Analyzer. Inputs. Resource Identity Response - The Key Vault identity.
- Key
Vault Pulumi.Properties Azure Native. Video Analyzer. Inputs. Key Vault Properties Response - 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
Resource
Identity Response - The Key Vault identity.
- Key
Vault KeyProperties Vault Properties Response - 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
Resource
Identity Response - The Key Vault identity.
- key
Vault KeyProperties Vault Properties Response - 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
Resource
Identity Response - The Key Vault identity.
- key
Vault KeyProperties Vault Properties Response - 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
Resource
Identity Response - The Key Vault identity.
- key_
vault_ Keyproperties Vault Properties Response - 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.
- key
Vault Property MapProperties - The properties of the key used to encrypt the account.
EndpointResponse, EndpointResponseArgs
The endpoint details.- Type string
- The type of the endpoint.
- Endpoint
Url string - The URL of the endpoint.
- Type string
- The type of the endpoint.
- Endpoint
Url string - The URL of the endpoint.
- type String
- The type of the endpoint.
- endpoint
Url String - The URL of the endpoint.
- type string
- The type of the endpoint.
- endpoint
Url 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.
- endpoint
Url String - The URL of the endpoint.
KeyVaultProperties, KeyVaultPropertiesArgs
The details for accessing the encryption keys in Key Vault.- Key
Identifier 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 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 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 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).
- key
Identifier 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.- Current
Key stringIdentifier - The current key used to encrypt Video Analyzer account, including the key version.
- Key
Identifier 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 stringIdentifier - The current key used to encrypt Video Analyzer account, including the key version.
- Key
Identifier 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 StringIdentifier - The current key used to encrypt Video Analyzer account, including the key version.
- key
Identifier 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 stringIdentifier - The current key used to encrypt Video Analyzer account, including the key version.
- key
Identifier 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_ stridentifier - 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).
- current
Key StringIdentifier - The current key used to encrypt Video Analyzer account, including the key version.
- key
Identifier 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.- User
Assigned stringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- User
Assigned stringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user
Assigned StringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user
Assigned stringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user_
assigned_ stridentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user
Assigned StringIdentity - 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.- User
Assigned stringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- User
Assigned stringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user
Assigned StringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user
Assigned stringIdentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user_
assigned_ stridentity - The user assigned managed identity's resource identifier to use when accessing a resource.
- user
Assigned StringIdentity - 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.
Azure Native. Video Analyzer. Inputs. Resource Identity - 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
Resource
Identity - 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
Resource
Identity - 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
Resource
Identity - 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
Resource
Identity - 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.
Azure Native. Video Analyzer. Inputs. Resource Identity Response - 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
Resource
Identity Response - 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
Resource
Identity Response - 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
Resource
Identity Response - 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
Resource
Identity Response - 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedManagedIdentityResponse, UserAssignedManagedIdentityResponseArgs
The details of the user assigned managed identity used by the Video Analyzer resource.- Client
Id string - The client ID.
- Principal
Id string - The principal ID.
- Client
Id string - The client ID.
- Principal
Id string - The principal ID.
- client
Id String - The client ID.
- principal
Id String - The principal ID.
- client
Id string - The client ID.
- principal
Id string - The principal ID.
- client_
id str - The client ID.
- principal_
id str - The principal ID.
- client
Id String - The client ID.
- principal
Id String - The principal ID.
VideoAnalyzerIdentity, VideoAnalyzerIdentityArgs
The managed identity for the Video Analyzer resource.- Type string
- The identity type.
- User
Assigned Dictionary<string, object>Identities - The User Assigned Managed Identities.
- Type string
- The identity type.
- User
Assigned map[string]interface{}Identities - The User Assigned Managed Identities.
- type String
- The identity type.
- user
Assigned Map<String,Object>Identities - The User Assigned Managed Identities.
- type string
- The identity type.
- user
Assigned {[key: string]: any}Identities - The User Assigned Managed Identities.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Any]identities - The User Assigned Managed Identities.
- type String
- The identity type.
- user
Assigned Map<Any>Identities - The User Assigned Managed Identities.
VideoAnalyzerIdentityResponse, VideoAnalyzerIdentityResponseArgs
The managed identity for the Video Analyzer resource.- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Video Analyzer. Inputs. User Assigned Managed Identity Response> - The User Assigned Managed Identities.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Managed Identity Response - The User Assigned Managed Identities.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Managed Identity Response> - The User Assigned Managed Identities.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Managed Identity Response} - The User Assigned Managed Identities.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Managed Identity Response] - The User Assigned Managed Identities.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - 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
published on Monday, Mar 9, 2026 by Pulumi