UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

102 lines (101 loc) 3.74 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the properties of an Azure Video Indexer account. * * Uses Azure REST API version 2024-01-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, 2025-04-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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getAccount(args: GetAccountArgs, opts?: pulumi.InvokeOptions): Promise<GetAccountResult>; export interface GetAccountArgs { /** * The name of the Azure Video Indexer account. */ accountName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * An Azure Video Indexer account. */ export interface GetAccountResult { /** * The account's data-plane ID. This can be set only when connecting an existing classic account */ readonly accountId?: string; /** * The account's name */ readonly accountName: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * Managed service identity (system assigned and/or user assigned identities) */ readonly identity?: outputs.videoindexer.ManagedServiceIdentityResponse; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * Gets the status of the account at the time the operation was called. */ readonly provisioningState: string; /** * The storage services details */ readonly storageServices?: outputs.videoindexer.StorageServicesForPutRequestResponse; /** * The system meta data relating to this resource. */ readonly systemData: outputs.videoindexer.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The account's tenant id */ readonly tenantId: string; /** * An integer representing the total seconds that have been indexed on the account */ readonly totalSecondsIndexed: number; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Gets the properties of an Azure Video Indexer account. * * Uses Azure REST API version 2024-01-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, 2025-04-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](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getAccountOutput(args: GetAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccountResult>; export interface GetAccountOutputArgs { /** * The name of the Azure Video Indexer account. */ accountName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }