PipelineTopology Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PipelineTopology() |
Initializes a new instance of the PipelineTopology class. |
PipelineTopology(IList<SourceNodeBase>, IList<SinkNodeBase>, Kind, Sku, String, String, String, SystemData, String, IList<ParameterDeclaration>, IList<ProcessorNodeBase>) |
Initializes a new instance of the PipelineTopology class. |
PipelineTopology()
Initializes a new instance of the PipelineTopology class.
public PipelineTopology ();
Public Sub New ()
Applies to
PipelineTopology(IList<SourceNodeBase>, IList<SinkNodeBase>, Kind, Sku, String, String, String, SystemData, String, IList<ParameterDeclaration>, IList<ProcessorNodeBase>)
Initializes a new instance of the PipelineTopology class.
public PipelineTopology (System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.SourceNodeBase> sources, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.SinkNodeBase> sinks, Microsoft.Azure.Management.VideoAnalyzer.Models.Kind kind, Microsoft.Azure.Management.VideoAnalyzer.Models.Sku sku, string id = default, string name = default, string type = default, Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData systemData = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDeclaration> parameters = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ProcessorNodeBase> processors = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineTopology : System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.SourceNodeBase> * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.SinkNodeBase> * Microsoft.Azure.Management.VideoAnalyzer.Models.Kind * Microsoft.Azure.Management.VideoAnalyzer.Models.Sku * string * string * string * Microsoft.Azure.Management.VideoAnalyzer.Models.SystemData * string * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ParameterDeclaration> * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ProcessorNodeBase> -> Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineTopology
Public Sub New (sources As IList(Of SourceNodeBase), sinks As IList(Of SinkNodeBase), kind As Kind, sku As Sku, 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 parameters As IList(Of ParameterDeclaration) = Nothing, Optional processors As IList(Of ProcessorNodeBase) = Nothing)
Parameters
- sources
- IList<SourceNodeBase>
List of the topology source nodes. Source nodes enable external data to be ingested by the pipeline.
- sinks
- IList<SinkNodeBase>
List of the topology sink nodes. Sink nodes allow pipeline data to be stored or exported.
- kind
- Kind
Topology kind. Possible values include: 'Live', 'Batch'
- sku
- Sku
Describes the properties of a SKU.
- 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 of the pipeline topology. It is recommended that the expected use of the topology to be described here.
- parameters
- IList<ParameterDeclaration>
List of the topology parameter declarations. Parameters declared here can be referenced throughout the topology nodes through the use of "${PARAMETER_NAME}" string pattern. Parameters can have optional default values and can later be defined in individual instances of the pipeline.
- processors
- IList<ProcessorNodeBase>
List of the topology processor nodes. Processor nodes enable pipeline data to be analyzed, processed or transformed.
Applies to
Azure SDK for .NET