Account

class Account : KotlinCustomResource

An Azure Video Indexer account. Uses Azure REST API version 2022-08-01. In version 1.x of the Azure Native provider, it used API version 2021-10-18-preview. Other available API versions: 2024-01-01, 2024-04-01-preview, 2024-06-01-preview, 2024-09-23-preview, 2025-01-01, 2025-03-01.

Example Usage

Put example #9

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",
ResourceGroupName = "contosto-videoanalyzer-rg",
});
});
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"),
ResourceGroupName: pulumi.String("contosto-videoanalyzer-rg"),
})
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.videoindexer.Account;
import com.pulumi.azurenative.videoindexer.AccountArgs;
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")
.resourceGroupName("contosto-videoanalyzer-rg")
.build());
}
}

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}

Properties

Link copied to clipboard
val accountId: Output<String>?

The account's data-plane ID. This can be set only when connecting an existing classic account

Link copied to clipboard
val accountName: Output<String>

The account's name

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Managed service identity (system assigned and/or user assigned identities)

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard

The media services details

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

Gets the status of the account at the time the operation was called.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The system meta data relating to this resource.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags.

Link copied to clipboard
val tenantId: Output<String>

The account's tenant id

Link copied to clipboard

An integer representing the total seconds that have been indexed on the account

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>