1. Packages
  2. Azure Native
  3. API Docs
  4. videoindexer
  5. Account
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

azure-native.videoindexer.Account

Explore with Pulumi AI

An Azure Video Indexer account.

Uses Azure REST API version 2024-01-01. In version 2.x of the Azure Native provider, it used API version 2022-08-01.

Other available API versions: 2022-08-01, 2024-04-01-preview, 2024-06-01-preview, 2024-09-23-preview, 2025-01-01, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native videoindexer [ApiVersion]. See the version guide for details.

Example Usage

Connect classic account to arm account using system assigned Mi

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

return await Deployment.RunAsync(() => 
{
    var account = new AzureNative.VideoIndexer.Account("account", new()
    {
        AccountId = "462af7c5-d1f6-4b91-86e3-8bc5e8a61574",
        AccountName = "contosto-videoanalyzer",
        Identity = new AzureNative.VideoIndexer.Inputs.ManagedServiceIdentityArgs
        {
            Type = AzureNative.VideoIndexer.ManagedServiceIdentityType.SystemAssigned,
        },
        Location = "NorthEurope",
        ResourceGroupName = "contosto-videoanalyzer-rg",
        StorageServices = new AzureNative.VideoIndexer.Inputs.StorageServicesForPutRequestArgs
        {
            ResourceId = "/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms",
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := videoindexer.NewAccount(ctx, "account", &videoindexer.AccountArgs{
			AccountId:   pulumi.String("462af7c5-d1f6-4b91-86e3-8bc5e8a61574"),
			AccountName: pulumi.String("contosto-videoanalyzer"),
			Identity: &videoindexer.ManagedServiceIdentityArgs{
				Type: pulumi.String(videoindexer.ManagedServiceIdentityTypeSystemAssigned),
			},
			Location:          pulumi.String("NorthEurope"),
			ResourceGroupName: pulumi.String("contosto-videoanalyzer-rg"),
			StorageServices: &videoindexer.StorageServicesForPutRequestArgs{
				ResourceId: pulumi.String("/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.videoindexer.Account;
import com.pulumi.azurenative.videoindexer.AccountArgs;
import com.pulumi.azurenative.videoindexer.inputs.ManagedServiceIdentityArgs;
import com.pulumi.azurenative.videoindexer.inputs.StorageServicesForPutRequestArgs;
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 account = new Account("account", AccountArgs.builder()
            .accountId("462af7c5-d1f6-4b91-86e3-8bc5e8a61574")
            .accountName("contosto-videoanalyzer")
            .identity(ManagedServiceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .location("NorthEurope")
            .resourceGroupName("contosto-videoanalyzer-rg")
            .storageServices(StorageServicesForPutRequestArgs.builder()
                .resourceId("/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms")
                .build())
            .build());

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

const account = new azure_native.videoindexer.Account("account", {
    accountId: "462af7c5-d1f6-4b91-86e3-8bc5e8a61574",
    accountName: "contosto-videoanalyzer",
    identity: {
        type: azure_native.videoindexer.ManagedServiceIdentityType.SystemAssigned,
    },
    location: "NorthEurope",
    resourceGroupName: "contosto-videoanalyzer-rg",
    storageServices: {
        resourceId: "/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

account = azure_native.videoindexer.Account("account",
    account_id="462af7c5-d1f6-4b91-86e3-8bc5e8a61574",
    account_name="contosto-videoanalyzer",
    identity={
        "type": azure_native.videoindexer.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
    },
    location="NorthEurope",
    resource_group_name="contosto-videoanalyzer-rg",
    storage_services={
        "resource_id": "/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms",
    })
Copy
resources:
  account:
    type: azure-native:videoindexer:Account
    properties:
      accountId: 462af7c5-d1f6-4b91-86e3-8bc5e8a61574
      accountName: contosto-videoanalyzer
      identity:
        type: SystemAssigned
      location: NorthEurope
      resourceGroupName: contosto-videoanalyzer-rg
      storageServices:
        resourceId: /subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms
Copy

Create or update account with system assigned Mi

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

return await Deployment.RunAsync(() => 
{
    var account = new AzureNative.VideoIndexer.Account("account", new()
    {
        AccountName = "contosto-videoanalyzer",
        Identity = new AzureNative.VideoIndexer.Inputs.ManagedServiceIdentityArgs
        {
            Type = AzureNative.VideoIndexer.ManagedServiceIdentityType.SystemAssigned,
        },
        Location = "NorthEurope",
        ResourceGroupName = "contosto-videoanalyzer-rg",
        StorageServices = new AzureNative.VideoIndexer.Inputs.StorageServicesForPutRequestArgs
        {
            ResourceId = "/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms",
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := videoindexer.NewAccount(ctx, "account", &videoindexer.AccountArgs{
			AccountName: pulumi.String("contosto-videoanalyzer"),
			Identity: &videoindexer.ManagedServiceIdentityArgs{
				Type: pulumi.String(videoindexer.ManagedServiceIdentityTypeSystemAssigned),
			},
			Location:          pulumi.String("NorthEurope"),
			ResourceGroupName: pulumi.String("contosto-videoanalyzer-rg"),
			StorageServices: &videoindexer.StorageServicesForPutRequestArgs{
				ResourceId: pulumi.String("/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.videoindexer.Account;
import com.pulumi.azurenative.videoindexer.AccountArgs;
import com.pulumi.azurenative.videoindexer.inputs.ManagedServiceIdentityArgs;
import com.pulumi.azurenative.videoindexer.inputs.StorageServicesForPutRequestArgs;
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 account = new Account("account", AccountArgs.builder()
            .accountName("contosto-videoanalyzer")
            .identity(ManagedServiceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .location("NorthEurope")
            .resourceGroupName("contosto-videoanalyzer-rg")
            .storageServices(StorageServicesForPutRequestArgs.builder()
                .resourceId("/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms")
                .build())
            .build());

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

const account = new azure_native.videoindexer.Account("account", {
    accountName: "contosto-videoanalyzer",
    identity: {
        type: azure_native.videoindexer.ManagedServiceIdentityType.SystemAssigned,
    },
    location: "NorthEurope",
    resourceGroupName: "contosto-videoanalyzer-rg",
    storageServices: {
        resourceId: "/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

account = azure_native.videoindexer.Account("account",
    account_name="contosto-videoanalyzer",
    identity={
        "type": azure_native.videoindexer.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
    },
    location="NorthEurope",
    resource_group_name="contosto-videoanalyzer-rg",
    storage_services={
        "resource_id": "/subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms",
    })
Copy
resources:
  account:
    type: azure-native:videoindexer:Account
    properties:
      accountName: contosto-videoanalyzer
      identity:
        type: SystemAssigned
      location: NorthEurope
      resourceGroupName: contosto-videoanalyzer-rg
      storageServices:
        resourceId: /subscriptions/xxx/resourceGroups/contoso-videoanalyzer-rg/providers/Microsoft.Storage/storageAccounts/contoso-videoanalyzer-ms
Copy

Create Account Resource

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

Constructor syntax

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

@overload
def Account(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            resource_group_name: Optional[str] = None,
            account_id: Optional[str] = None,
            account_name: Optional[str] = None,
            identity: Optional[ManagedServiceIdentityArgs] = None,
            location: Optional[str] = None,
            storage_services: Optional[StorageServicesForPutRequestArgs] = None,
            tags: Optional[Mapping[str, str]] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: azure-native:videoindexer:Account
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AccountArgs
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 exampleaccountResourceResourceFromVideoindexer = new AzureNative.VideoIndexer.Account("exampleaccountResourceResourceFromVideoindexer", new()
{
    ResourceGroupName = "string",
    AccountId = "string",
    AccountName = "string",
    Identity = new AzureNative.VideoIndexer.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    StorageServices = new AzureNative.VideoIndexer.Inputs.StorageServicesForPutRequestArgs
    {
        ResourceId = "string",
        UserAssignedIdentity = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := videoindexer.NewAccount(ctx, "exampleaccountResourceResourceFromVideoindexer", &videoindexer.AccountArgs{
	ResourceGroupName: pulumi.String("string"),
	AccountId:         pulumi.String("string"),
	AccountName:       pulumi.String("string"),
	Identity: &videoindexer.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	StorageServices: &videoindexer.StorageServicesForPutRequestArgs{
		ResourceId:           pulumi.String("string"),
		UserAssignedIdentity: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var exampleaccountResourceResourceFromVideoindexer = new Account("exampleaccountResourceResourceFromVideoindexer", AccountArgs.builder()
    .resourceGroupName("string")
    .accountId("string")
    .accountName("string")
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .storageServices(StorageServicesForPutRequestArgs.builder()
        .resourceId("string")
        .userAssignedIdentity("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
exampleaccount_resource_resource_from_videoindexer = azure_native.videoindexer.Account("exampleaccountResourceResourceFromVideoindexer",
    resource_group_name="string",
    account_id="string",
    account_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    storage_services={
        "resource_id": "string",
        "user_assigned_identity": "string",
    },
    tags={
        "string": "string",
    })
Copy
const exampleaccountResourceResourceFromVideoindexer = new azure_native.videoindexer.Account("exampleaccountResourceResourceFromVideoindexer", {
    resourceGroupName: "string",
    accountId: "string",
    accountName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    storageServices: {
        resourceId: "string",
        userAssignedIdentity: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:videoindexer:Account
properties:
    accountId: string
    accountName: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    resourceGroupName: string
    storageServices:
        resourceId: string
        userAssignedIdentity: string
    tags:
        string: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AccountId string
The account's data-plane ID. This can be set only when connecting an existing classic account
AccountName Changes to this property will trigger replacement. string
The name of the Azure Video Indexer account.
Identity Pulumi.AzureNative.VideoIndexer.Inputs.ManagedServiceIdentity
Managed service identity (system assigned and/or user assigned identities)
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
StorageServices Pulumi.AzureNative.VideoIndexer.Inputs.StorageServicesForPutRequest
The storage services details
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AccountId string
The account's data-plane ID. This can be set only when connecting an existing classic account
AccountName Changes to this property will trigger replacement. string
The name of the Azure Video Indexer account.
Identity ManagedServiceIdentityArgs
Managed service identity (system assigned and/or user assigned identities)
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
StorageServices StorageServicesForPutRequestArgs
The storage services details
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
accountId String
The account's data-plane ID. This can be set only when connecting an existing classic account
accountName Changes to this property will trigger replacement. String
The name of the Azure Video Indexer account.
identity ManagedServiceIdentity
Managed service identity (system assigned and/or user assigned identities)
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
storageServices StorageServicesForPutRequest
The storage services details
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
accountId string
The account's data-plane ID. This can be set only when connecting an existing classic account
accountName Changes to this property will trigger replacement. string
The name of the Azure Video Indexer account.
identity ManagedServiceIdentity
Managed service identity (system assigned and/or user assigned identities)
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
storageServices StorageServicesForPutRequest
The storage services details
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
account_id str
The account's data-plane ID. This can be set only when connecting an existing classic account
account_name Changes to this property will trigger replacement. str
The name of the Azure Video Indexer account.
identity ManagedServiceIdentityArgs
Managed service identity (system assigned and/or user assigned identities)
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
storage_services StorageServicesForPutRequestArgs
The storage services details
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
accountId String
The account's data-plane ID. This can be set only when connecting an existing classic account
accountName Changes to this property will trigger replacement. String
The name of the Azure Video Indexer account.
identity Property Map
Managed service identity (system assigned and/or user assigned identities)
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
storageServices Property Map
The storage services details
tags Map<String>
Resource tags.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Gets the status of the account at the time the operation was called.
SystemData Pulumi.AzureNative.VideoIndexer.Outputs.SystemDataResponse
The system meta data relating to this resource.
TenantId string
The account's tenant id
TotalSecondsIndexed int
An integer representing the total seconds that have been indexed on the account
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Gets the status of the account at the time the operation was called.
SystemData SystemDataResponse
The system meta data relating to this resource.
TenantId string
The account's tenant id
TotalSecondsIndexed int
An integer representing the total seconds that have been indexed on the account
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Gets the status of the account at the time the operation was called.
systemData SystemDataResponse
The system meta data relating to this resource.
tenantId String
The account's tenant id
totalSecondsIndexed Integer
An integer representing the total seconds that have been indexed on the account
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
Gets the status of the account at the time the operation was called.
systemData SystemDataResponse
The system meta data relating to this resource.
tenantId string
The account's tenant id
totalSecondsIndexed number
An integer representing the total seconds that have been indexed on the account
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
Gets the status of the account at the time the operation was called.
system_data SystemDataResponse
The system meta data relating to this resource.
tenant_id str
The account's tenant id
total_seconds_indexed int
An integer representing the total seconds that have been indexed on the account
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Gets the status of the account at the time the operation was called.
systemData Property Map
The system meta data relating to this resource.
tenantId String
The account's tenant id
totalSecondsIndexed Number
An integer representing the total seconds that have been indexed on the account
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.VideoIndexer.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.VideoIndexer.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

StorageServicesForPutRequest
, StorageServicesForPutRequestArgs

ResourceId string
The storage services resource id
UserAssignedIdentity string
The user assigned identity to be used to grant permissions
ResourceId string
The storage services resource id
UserAssignedIdentity string
The user assigned identity to be used to grant permissions
resourceId String
The storage services resource id
userAssignedIdentity String
The user assigned identity to be used to grant permissions
resourceId string
The storage services resource id
userAssignedIdentity string
The user assigned identity to be used to grant permissions
resource_id str
The storage services resource id
user_assigned_identity str
The user assigned identity to be used to grant permissions
resourceId String
The storage services resource id
userAssignedIdentity String
The user assigned identity to be used to grant permissions

StorageServicesForPutRequestResponse
, StorageServicesForPutRequestResponseArgs

ResourceId string
The storage services resource id
UserAssignedIdentity string
The user assigned identity to be used to grant permissions
ResourceId string
The storage services resource id
UserAssignedIdentity string
The user assigned identity to be used to grant permissions
resourceId String
The storage services resource id
userAssignedIdentity String
The user assigned identity to be used to grant permissions
resourceId string
The storage services resource id
userAssignedIdentity string
The user assigned identity to be used to grant permissions
resource_id str
The storage services resource id
user_assigned_identity str
The user assigned identity to be used to grant permissions
resourceId String
The storage services resource id
userAssignedIdentity String
The user assigned identity to be used to grant permissions

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

Import

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

$ pulumi import azure-native:videoindexer:Account contosto-videoanalyzer /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.VideoIndexer/accounts/{accountName} 
Copy

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

Package Details

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