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

AutoscaleProfile 构造函数

定义

重载

AutoscaleProfile()

初始化 AutoscaleProfile 类的新实例。

AutoscaleProfile(String, ScaleCapacity, IList<ScaleRule>, TimeWindow, Recurrence)

初始化 AutoscaleProfile 类的新实例。

AutoscaleProfile()

初始化 AutoscaleProfile 类的新实例。

public AutoscaleProfile ();
Public Sub New ()

适用于

AutoscaleProfile(String, ScaleCapacity, IList<ScaleRule>, TimeWindow, Recurrence)

初始化 AutoscaleProfile 类的新实例。

public AutoscaleProfile (string name, Microsoft.Azure.Management.Monitor.Models.ScaleCapacity capacity, System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.ScaleRule> rules, Microsoft.Azure.Management.Monitor.Models.TimeWindow fixedDate = default, Microsoft.Azure.Management.Monitor.Models.Recurrence recurrence = default);
new Microsoft.Azure.Management.Monitor.Models.AutoscaleProfile : string * Microsoft.Azure.Management.Monitor.Models.ScaleCapacity * System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.ScaleRule> * Microsoft.Azure.Management.Monitor.Models.TimeWindow * Microsoft.Azure.Management.Monitor.Models.Recurrence -> Microsoft.Azure.Management.Monitor.Models.AutoscaleProfile
Public Sub New (name As String, capacity As ScaleCapacity, rules As IList(Of ScaleRule), Optional fixedDate As TimeWindow = Nothing, Optional recurrence As Recurrence = Nothing)

参数

name
String

配置文件的名称。

capacity
ScaleCapacity

在此配置文件期间可以使用的实例数。

rules
IList<ScaleRule>

为缩放操作提供触发器和参数的规则集合。 最多可指定 10 个规则。

fixedDate
TimeWindow

配置文件的特定日期时间。 使用 Recurrence 元素时,不使用此元素。

recurrence
Recurrence

此配置文件开始的重复时间。 使用 FixedDate 元素时,不使用此元素。

适用于