你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
PipelineTopology 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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 资源管理器元数据。
- description
- String
管道拓扑的可选说明。 建议在此处描述拓扑的预期用法。
- parameters
- IList<ParameterDeclaration>
拓扑参数声明的列表。 此处声明的参数可以通过使用“${PARAMETER_NAME}”字符串模式在整个拓扑节点中引用。 参数可以具有可选的默认值,以后可以在管道的单个实例中定义。
- processors
- IList<ProcessorNodeBase>
拓扑处理器节点的列表。 处理器节点允许分析、处理或转换管道数据。