subscriber_usage_aggregates
Creates, updates, deletes, gets or lists a subscriber_usage_aggregates
resource.
Overview
Name | subscriber_usage_aggregates |
Type | Resource |
Id | azure_stack.commerce_admin.subscriber_usage_aggregates |
Fields
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Location where resource is location. |
properties | object | Properties for aggregate usage. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | reportedEndTime, reportedStartTime, subscriptionId | Gets 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 }}';