Skip to main content

reservations_summaries

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

Overview

Namereservations_summaries
TypeResource
Idazure.consumption.reservations_summaries

Fields

NameDatatypeDescription
idstringThe full qualified ARM ID of an event.
namestringThe ID that uniquely identifies an event.
etagstringThe etag for the resource.
propertiesobjectThe properties of the reservation summary.
tagsobjectResource tags.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTgrain, resourceScopeLists the reservations summaries for the defined scope daily or monthly grain. Note: ARM has a payload size limit of 12MB, so currently callers get 400 when the response size exceeds the ARM limit. In such cases, API call should be made with smaller date ranges.
list_by_reservation_orderSELECTgrain, reservationOrderIdLists the reservations summaries for daily or monthly grain. Note: ARM has a payload size limit of 12MB, so currently callers get 400 when the response size exceeds the ARM limit. In such cases, API call should be made with smaller date ranges.
list_by_reservation_order_and_reservationSELECTgrain, reservationId, reservationOrderIdLists the reservations summaries for daily or monthly grain. Note: ARM has a payload size limit of 12MB, so currently callers get 400 when the response size exceeds the ARM limit. In such cases, API call should be made with smaller date ranges.

SELECT examples

Lists the reservations summaries for the defined scope daily or monthly grain. Note: ARM has a payload size limit of 12MB, so currently callers get 400 when the response size exceeds the ARM limit. In such cases, API call should be made with smaller date ranges.

SELECT
id,
name,
etag,
properties,
tags,
type
FROM azure.consumption.reservations_summaries
WHERE grain = '{{ grain }}'
AND resourceScope = '{{ resourceScope }}';