Package version:

Interface UsagesProperties

Usage properties for the specified resource.

interface UsagesProperties {
    isQuotaApplicable?: boolean;
    name?: ResourceName;
    properties?: any;
    quotaPeriod?: string;
    resourceType?: string;
    unit?: string;
    usages?: UsagesObject;
}

Properties

isQuotaApplicable?: boolean

States if quota can be requested for this resource.

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 for the summary of the quota usage values. For example: *P1D (per one day) *PT1M (per one minute) *PT1S (per one second). This parameter is optional because it is not relevant for all resources such as compute.

resourceType?: string

The name of the resource type. Optional field.

unit?: string

The units for the quota usage, 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.

usages?: UsagesObject

The quota limit properties for this resource.