你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

PipelineTopologyUpdate 构造函数

定义

重载

PipelineTopologyUpdate()

初始化 PipelineTopologyUpdate 类的新实例。

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

初始化 PipelineTopologyUpdate 类的新实例。

PipelineTopologyUpdate()

初始化 PipelineTopologyUpdate 类的新实例。

public PipelineTopologyUpdate ();
Public Sub New ()

适用于

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

初始化 PipelineTopologyUpdate 类的新实例。

public PipelineTopologyUpdate (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.SourceNodeBase> sources = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ProcessorNodeBase> processors = default, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.SinkNodeBase> sinks = default, Microsoft.Azure.Management.VideoAnalyzer.Models.Kind? kind = default, Microsoft.Azure.Management.VideoAnalyzer.Models.Sku sku = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineTopologyUpdate : 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.SourceNodeBase> * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.ProcessorNodeBase> * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.SinkNodeBase> * Nullable<Microsoft.Azure.Management.VideoAnalyzer.Models.Kind> * Microsoft.Azure.Management.VideoAnalyzer.Models.Sku -> Microsoft.Azure.Management.VideoAnalyzer.Models.PipelineTopologyUpdate
Public Sub New (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 sources As IList(Of SourceNodeBase) = Nothing, Optional processors As IList(Of ProcessorNodeBase) = Nothing, Optional sinks As IList(Of SinkNodeBase) = Nothing, Optional kind As Nullable(Of Kind) = Nothing, Optional sku As Sku = Nothing)

参数

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}”字符串模式在整个拓扑节点中引用。 参数可以具有可选的默认值,以后可以在管道的单个实例中定义。

sources
IList<SourceNodeBase>

拓扑源节点的列表。 源节点允许管道引入外部数据。

processors
IList<ProcessorNodeBase>

拓扑处理器节点的列表。 处理器节点允许分析、处理或转换管道数据。

sinks
IList<SinkNodeBase>

拓扑接收器节点的列表。 接收器节点允许存储或导出管道数据。

kind
Nullable<Kind>

拓扑类型。 可能的值包括:“Live”、“Batch”

sku
Sku

描述 SKU 的属性。

适用于