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

ClusterNodeTypeDescription(String, Int32, Int32, Boolean, Int32) 构造函数

定义

初始化 ClusterNodeTypeDescription 的新实例。

public ClusterNodeTypeDescription (string name, int clientConnectionEndpointPort, int httpGatewayEndpointPort, bool isPrimary, int vmInstanceCount);
new Azure.ResourceManager.ServiceFabric.Models.ClusterNodeTypeDescription : string * int * int * bool * int -> Azure.ResourceManager.ServiceFabric.Models.ClusterNodeTypeDescription
Public Sub New (name As String, clientConnectionEndpointPort As Integer, httpGatewayEndpointPort As Integer, isPrimary As Boolean, vmInstanceCount As Integer)

参数

name
String

节点类型的名称。

clientConnectionEndpointPort
Int32

TCP 群集管理终结点端口。

httpGatewayEndpointPort
Int32

HTTP 群集管理终结点端口。

isPrimary
Boolean

将运行系统服务的节点类型。 只能将一个节点类型标记为主节点。 无法删除或更改现有群集的主节点类型。

vmInstanceCount
Int32

VMInstanceCount 应为 1 到 n,其中 n 表示与此 nodeType 对应的 VM 实例数。 VMInstanceCount = 0 只能在以下情况下执行:NodeType 是辅助 nodeType。 Durability = Bronze 或 Durability >= Bronze and InfrastructureServiceManager = true。 如果 VMInstanceCount = 0,则表示此 nodeType 的 VM 将不用于初始群集大小计算。

例外

name 为 null。

适用于