Package version:

Interface QuotaProperties

Quota properties for the specified resource.

interface QuotaProperties {
    isQuotaApplicable?: boolean;
    limit?: LimitJsonObjectUnion;
    name?: ResourceName;
    properties?: any;
    quotaPeriod?: string;
    resourceType?: string;
    unit?: string;
}

Properties

isQuotaApplicable?: boolean

States if quota can be requested for this resource.

Resource quota limit properties.

Resource name provided by the resource provider. Use this property name when requesting quota.

properties?: any

Additional properties for the specific resource provider.

quotaPeriod?: string

The time period over which the quota usage values are summarized. For example: *P1D (per one day) *PT1M (per one minute) *PT1S (per one second). This parameter is optional because, for some resources like compute, the period is irrelevant.

resourceType?: string

The name of the resource type. Optional field.

unit?: string

The quota units, such as Count and Bytes. When requesting quota, use the unit value returned in the GET response in the request body of your PUT operation.