Share via


LivePipeline Constructors

Definition

Overloads

LivePipeline()

Initializes a new instance of the LivePipeline class.

LivePipeline(String, Int32, String, String, String, SystemData, String, LivePipelineState, IList<ParameterDefinition>)

Initializes a new instance of the LivePipeline class.

LivePipeline()

Initializes a new instance of the LivePipeline class.

public LivePipeline ();
Public Sub New ()

Applies to

LivePipeline(String, Int32, String, String, String, SystemData, String, LivePipelineState, IList<ParameterDefinition>)

Initializes a new instance of the LivePipeline class.

public LivePipeline (string topologyName, int bitrateKbps, string id = default, string name = default, string type = default, Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData systemData = default, string description = default, Microsoft.Azure.Management.VideoAnalyzer.Models.LivePipelineState state = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDefinition> parameters = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.LivePipeline : string * int * string * string * string * Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData * string * Microsoft.Azure.Management.VideoAnalyzer.Models.LivePipelineState * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDefinition> -> Microsoft.Azure.Management.VideoAnalyzer.Models.LivePipeline
Public Sub New (topologyName As String, bitrateKbps As Integer, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional systemData As SystemData = Nothing, Optional description As String = Nothing, Optional state As LivePipelineState = Nothing, Optional parameters As IList(Of ParameterDefinition) = Nothing)

Parameters

topologyName
String

The reference to an existing pipeline topology defined for real-time content processing. When activated, this live pipeline will process content according to the pipeline topology definition.

bitrateKbps
Int32

Maximum bitrate capacity in Kbps reserved for the live pipeline. The allowed range is from 500 to 3000 Kbps in increments of 100 Kbps. If the RTSP camera exceeds this capacity, then the service will disconnect temporarily from the camera. It will retry to re-establish connection (with exponential backoff), checking to see if the camera bitrate is now below the reserved capacity. Doing so will ensure that one 'noisy neighbor' does not affect other live pipelines in your account.

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

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

systemData
SystemData

Azure Resource Manager metadata containing createdBy and modifiedBy information.

description
String

An optional description for the pipeline.

state
LivePipelineState

Current state of the pipeline (read-only). Possible values include: 'Inactive', 'Activating', 'Active', 'Deactivating'

parameters
IList<ParameterDefinition>

List of the instance level parameter values for the user-defined topology parameters. A pipeline can only define or override parameters values for parameters which have been declared in the referenced topology. Topology parameters without a default value must be defined. Topology parameters with a default value can be optionally be overridden.

Applies to