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

QuotaProperties 构造函数

定义

重载

QuotaProperties()

初始化 QuotaProperties 类的新实例。

QuotaProperties(LimitJsonObject, String, ResourceName, String, String, Nullable<Boolean>, Object)

初始化 QuotaProperties 类的新实例。

QuotaProperties()

初始化 QuotaProperties 类的新实例。

public QuotaProperties ();
Public Sub New ()

适用于

QuotaProperties(LimitJsonObject, String, ResourceName, String, String, Nullable<Boolean>, Object)

初始化 QuotaProperties 类的新实例。

public QuotaProperties (Microsoft.Azure.Management.Quota.Models.LimitJsonObject limit = default, string unit = default, Microsoft.Azure.Management.Quota.Models.ResourceName name = default, string resourceType = default, string quotaPeriod = default, bool? isQuotaApplicable = default, object properties = default);
new Microsoft.Azure.Management.Quota.Models.QuotaProperties : Microsoft.Azure.Management.Quota.Models.LimitJsonObject * string * Microsoft.Azure.Management.Quota.Models.ResourceName * string * string * Nullable<bool> * obj -> Microsoft.Azure.Management.Quota.Models.QuotaProperties
Public Sub New (Optional limit As LimitJsonObject = Nothing, Optional unit As String = Nothing, Optional name As ResourceName = Nothing, Optional resourceType As String = Nothing, Optional quotaPeriod As String = Nothing, Optional isQuotaApplicable As Nullable(Of Boolean) = Nothing, Optional properties As Object = Nothing)

参数

limit
LimitJsonObject

资源配额限制属性。

unit
String

配额单位,例如 Count 和 Bytes。 请求配额时,请在 PUT 操作的请求正文中使用 GET 响应中返回的 单位 值。

name
ResourceName

资源提供程序提供的资源名称。 请求配额时,请使用此属性名称。

resourceType
String

资源类型名称。

quotaPeriod
String

汇总配额使用情况值的时间段。 例如:*P1D (/天) *PT1M (/1 分钟) *PT1S (/秒) 。 此参数是可选的,因为对于某些资源(如计算),期间无关紧要。

isQuotaApplicable
Nullable<Boolean>

声明是否可以请求此资源的配额。

properties
Object

特定资源提供程序的其他属性。

适用于