UsageAggregatesListNextOptionalParams interface
Optional Parameters.
- Extends
Properties
aggregation |
|
continuation |
Used when a continuation token string is provided in the response body of the previous call, enabling paging through a large result set. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in. |
show |
|
Inherited Properties
abort |
The signal which can be used to abort requests. |
custom |
User defined custom request headers that will be applied before the request is sent. |
on |
Callback which fires upon download progress. |
on |
Callback which fires upon upload progress. |
timeout | The number of milliseconds a request can take before automatically being terminated. |
Property Details
aggregationGranularity
Daily
(default) returns the data in daily granularity, Hourly
returns the data in hourly
granularity. Possible values include: 'Daily', 'Hourly'. Default value: 'Daily'.
aggregationGranularity?: AggregationGranularity
Property Value
continuationToken
Used when a continuation token string is provided in the response body of the previous call, enabling paging through a large result set. If not present, the data is retrieved from the beginning of the day/hour (based on the granularity) passed in.
continuationToken?: string
Property Value
string
showDetails
True
returns usage data in instance-level detail, false
causes server-side aggregation
with fewer details. For example, if you have 3 website instances, by default you will get 3
line items for website consumption. If you specify showDetails = false, the data will be
aggregated as a single line item for website consumption within the time period (for the given
subscriptionId, meterId, usageStartTime and usageEndTime).
showDetails?: boolean
Property Value
boolean
Inherited Property Details
abortSignal
The signal which can be used to abort requests.
abortSignal?: AbortSignalLike
Property Value
Inherited From msRest.RequestOptionsBase.abortSignal
customHeaders
User defined custom request headers that will be applied before the request is sent.
customHeaders?: {[key: string]: string}
Property Value
{[key: string]: string}
Inherited From msRest.RequestOptionsBase.customHeaders
onDownloadProgress
Callback which fires upon download progress.
onDownloadProgress?: (progress: TransferProgressEvent) => void
Property Value
(progress: TransferProgressEvent) => void
Inherited From msRest.RequestOptionsBase.onDownloadProgress
onUploadProgress
Callback which fires upon upload progress.
onUploadProgress?: (progress: TransferProgressEvent) => void
Property Value
(progress: TransferProgressEvent) => void
Inherited From msRest.RequestOptionsBase.onUploadProgress
timeout
The number of milliseconds a request can take before automatically being terminated.
timeout?: number
Property Value
number
Inherited From msRest.RequestOptionsBase.timeout