import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Video Indexer Account * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example", * location: "West Europe", * }); * const exampleAccount = new azure.storage.Account("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * accountTier: "Standard", * accountReplicationType: "LRS", * }); * const exampleAccount2 = new azure.videoindexer.Account("example", { * name: "example", * resourceGroupName: example.name, * location: "West Europe", * storage: { * storageAccountId: exampleAccount.id, * }, * identity: { * type: "SystemAssigned", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.VideoIndexer` - 2025-04-01 * * ## Import * * Video Indexer Accounts can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:videoindexer/account:Account example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/example-resource-group/providers/Microsoft.VideoIndexer/accounts/example-account-name * ``` */ export declare class Account extends pulumi.CustomResource { /** * Get an existing Account resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AccountState, opts?: pulumi.CustomResourceOptions): Account; /** * Returns true if the given object is an instance of Account. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Account; /** * An `identity` block as defined below. */ readonly identity: pulumi.Output; /** * The Azure location where the Video Indexer Account exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The name of the Video Indexer Account. Changing the name forces a new resource to be created. */ readonly name: pulumi.Output; /** * The public network access for the Video Indexer Account. Possible values are `Enabled` and `Disabled`. Defaults to `Enabled`. */ readonly publicNetworkAccess: pulumi.Output; /** * The name of the Resource Group that the Video Indexer Account will be associated with. Changing the name forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * A `storage` block as defined below. */ readonly storage: pulumi.Output; /** * A mapping of tags to assign to the resource. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Account resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AccountArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Account resources. */ export interface AccountState { /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure location where the Video Indexer Account exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name of the Video Indexer Account. Changing the name forces a new resource to be created. */ name?: pulumi.Input; /** * The public network access for the Video Indexer Account. Possible values are `Enabled` and `Disabled`. Defaults to `Enabled`. */ publicNetworkAccess?: pulumi.Input; /** * The name of the Resource Group that the Video Indexer Account will be associated with. Changing the name forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * A `storage` block as defined below. */ storage?: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Account resource. */ export interface AccountArgs { /** * An `identity` block as defined below. */ identity: pulumi.Input; /** * The Azure location where the Video Indexer Account exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name of the Video Indexer Account. Changing the name forces a new resource to be created. */ name?: pulumi.Input; /** * The public network access for the Video Indexer Account. Possible values are `Enabled` and `Disabled`. Defaults to `Enabled`. */ publicNetworkAccess?: pulumi.Input; /** * The name of the Resource Group that the Video Indexer Account will be associated with. Changing the name forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A `storage` block as defined below. */ storage: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }