@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get the details of the specified Video Analyzer account
*
* Uses Azure REST API version 2021-11-01-preview.
*/
export declare function getVideoAnalyzer(args: GetVideoAnalyzerArgs, opts?: pulumi.InvokeOptions): Promise<GetVideoAnalyzerResult>;
export interface GetVideoAnalyzerArgs {
/**
* The Video Analyzer account name.
*/
accountName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* The Video Analyzer account.
*/
export interface GetVideoAnalyzerResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The account encryption properties.
*/
readonly encryption?: outputs.videoanalyzer.AccountEncryptionResponse;
/**
* The endpoints associated with this resource.
*/
readonly endpoints: outputs.videoanalyzer.EndpointResponse[];
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The identities associated to the Video Analyzer resource.
*/
readonly identity?: outputs.videoanalyzer.VideoAnalyzerIdentityResponse;
/**
* The IoT Hubs for this resource.
*/
readonly iotHubs?: outputs.videoanalyzer.IotHubResponse[];
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Network access control for Video Analyzer.
*/
readonly networkAccessControl?: outputs.videoanalyzer.NetworkAccessControlResponse;
/**
* Private Endpoint Connections created under Video Analyzer account.
*/
readonly privateEndpointConnections: outputs.videoanalyzer.PrivateEndpointConnectionResponse[];
/**
* Provisioning state of the Video Analyzer account.
*/
readonly provisioningState: string;
/**
* Whether or not public network access is allowed for resources under the Video Analyzer account.
*/
readonly publicNetworkAccess?: string;
/**
* The storage accounts for this resource.
*/
readonly storageAccounts: outputs.videoanalyzer.StorageAccountResponse[];
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.videoanalyzer.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get the details of the specified Video Analyzer account
*
* Uses Azure REST API version 2021-11-01-preview.
*/
export declare function getVideoAnalyzerOutput(args: GetVideoAnalyzerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVideoAnalyzerResult>;
export interface GetVideoAnalyzerOutputArgs {
/**
* The Video Analyzer account name.
*/
accountName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}