Class GetUsageAndQuotaCommandResponse
Response for Returns usage and quota in bytes.
public sealed class GetUsageAndQuotaCommandResponse : ICommandResponse<GetUsageAndQuotaCommandSettings>, ICommandResponse
- Inheritance
-
GetUsageAndQuotaCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
OverrideActive
Whether or not the origin has an active storage quota override
[JsonPropertyName("overrideActive")]
public bool OverrideActive { get; set; }
Property Value
Quota
Storage quota (bytes).
[JsonPropertyName("quota")]
public double Quota { get; set; }
Property Value
Usage
Storage usage (bytes).
[JsonPropertyName("usage")]
public double Usage { get; set; }
Property Value
UsageBreakdown
Storage usage per type (bytes).
[JsonPropertyName("usageBreakdown")]
public UsageForType[] UsageBreakdown { get; set; }