Skip to main content

subscriber_usage_aggregates

Creates, updates, deletes, gets or lists a subscriber_usage_aggregates resource.

Overview

Namesubscriber_usage_aggregates
TypeResource
Idazure_stack.commerce_admin.subscriber_usage_aggregates

Fields

NameDatatypeDescription
idstringURI of the resource.
namestringName of the resource.
locationstringLocation where resource is location.
propertiesobjectProperties for aggregate usage.
tagsobjectList of key-value pairs.
typestringType of resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTreportedEndTime, reportedStartTime, subscriptionIdGets a collection of SubscriberUsageAggregates, which are UsageAggregates from users.

SELECT examples

Gets a collection of SubscriberUsageAggregates, which are UsageAggregates from users.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.commerce_admin.subscriber_usage_aggregates
WHERE reportedEndTime = '{{ reportedEndTime }}'
AND reportedStartTime = '{{ reportedStartTime }}'
AND subscriptionId = '{{ subscriptionId }}';