次の方法で共有


PipelineTopology コンストラクター

定義

オーバーロード

PipelineTopology()

PipelineTopology クラスの新しいインスタンスを初期化します。

PipelineTopology(IList<SourceNodeBase>, IList<SinkNodeBase>, Kind, Sku, String, String, String, SystemData, String, IList<ParameterDeclaration>, IList<ProcessorNodeBase>)

PipelineTopology クラスの新しいインスタンスを初期化します。

PipelineTopology()

PipelineTopology クラスの新しいインスタンスを初期化します。

public PipelineTopology();
Public Sub New ()

適用対象

PipelineTopology(IList<SourceNodeBase>, IList<SinkNodeBase>, Kind, Sku, String, String, String, SystemData, String, IList<ParameterDeclaration>, IList<ProcessorNodeBase>)

PipelineTopology クラスの新しいインスタンスを初期化します。

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)

パラメーター

sources
IList<SourceNodeBase>

トポロジ ソース ノードの一覧。 ソース ノードを使用すると、外部データをパイプラインによって取り込むことができます。

sinks
IList<SinkNodeBase>

トポロジ シンク ノードの一覧。 シンク ノードを使用すると、パイプライン データを格納またはエクスポートできます。

kind
Kind

トポロジの種類。 使用可能な値は、'Live'、'Batch' です。

sku
Sku

SKU のプロパティについて説明します。

id
String

リソースの完全修飾リソース ID。 例 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

リソースの名前

type
String

リソースの型。 例: "Microsoft.Compute/virtualMachines" または "Microsoft.Storage/storageAccounts"

systemData
SystemData

createdBy および modifiedBy 情報を含む Azure Resource Manager メタデータ。

description
String

パイプライン トポロジの説明 (省略可能)。 ここで説明するトポロジの予想される使用をお勧めします。

parameters
IList<ParameterDeclaration>

トポロジ パラメーター宣言の一覧。 ここで宣言されているパラメーターは、"${PARAMETER_NAME}" 文字列パターンを使用してトポロジ ノード全体で参照できます。 パラメーターには省略可能な既定値を指定でき、後でパイプラインの個々のインスタンスで定義できます。

processors
IList<ProcessorNodeBase>

トポロジ プロセッサ ノードの一覧。 プロセッサ ノードを使用すると、パイプライン データを分析、処理、または変換できます。

適用対象