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

106 lines (105 loc) 4.41 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Represents a video resource within Azure Video Analyzer. Videos can be ingested from RTSP cameras through live pipelines or can be created by exporting sequences from existing captured video through a pipeline job. Videos ingested through live pipelines can be streamed through Azure Video Analyzer Player Widget or compatible players. Exported videos can be downloaded as MP4 files. * * Uses Azure REST API version 2021-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2021-11-01-preview. */ export declare class Video extends pulumi.CustomResource { /** * Get an existing Video 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Video; /** * Returns true if the given object is an instance of Video. 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 Video; /** * Video archival properties. */ readonly archival: pulumi.Output<outputs.videoanalyzer.VideoArchivalResponse | undefined>; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * Set of URLs to the video content. */ readonly contentUrls: pulumi.Output<outputs.videoanalyzer.VideoContentUrlsResponse>; /** * Optional video description provided by the user. Value can be up to 2048 characters long. */ readonly description: pulumi.Output<string | undefined>; /** * Video flags contain information about the available video actions and its dynamic properties based on the current video state. */ readonly flags: pulumi.Output<outputs.videoanalyzer.VideoFlagsResponse>; /** * Contains information about the video and audio content. */ readonly mediaInfo: pulumi.Output<outputs.videoanalyzer.VideoMediaInfoResponse | undefined>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output<outputs.videoanalyzer.SystemDataResponse>; /** * Optional video title provided by the user. Value can be up to 256 characters long. */ readonly title: pulumi.Output<string | undefined>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Create a Video 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: VideoArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Video resource. */ export interface VideoArgs { /** * The Azure Video Analyzer account name. */ accountName: pulumi.Input<string>; /** * Video archival properties. */ archival?: pulumi.Input<inputs.videoanalyzer.VideoArchivalArgs>; /** * Optional video description provided by the user. Value can be up to 2048 characters long. */ description?: pulumi.Input<string>; /** * Contains information about the video and audio content. */ mediaInfo?: pulumi.Input<inputs.videoanalyzer.VideoMediaInfoArgs>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Optional video title provided by the user. Value can be up to 256 characters long. */ title?: pulumi.Input<string>; /** * The Video name. */ videoName?: pulumi.Input<string>; }