Skip to main content

applied_reservation_lists

Creates, updates, deletes, gets or lists an applied_reservation_lists resource.

Overview

Nameapplied_reservation_lists
TypeResource
Idazure.reservations.applied_reservation_lists

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringIdentifier of the applied reservations.
namestringName of resource.
reservationOrderIdsobjectPaginated list of applied reservations.
typestringType of resource. "Microsoft.Capacity/AppliedReservations".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_applied_reservation_listselectsubscription_idGet list of applicable Reservations. Get applicable Reservations that are applied to this subscription or a resource group under this subscription.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
subscription_idstringThe ID of the target subscription. The value must be an UUID. Required.

SELECT examples

Get list of applicable Reservations. Get applicable Reservations that are applied to this subscription or a resource group under this subscription.

SELECT
id,
name,
reservationOrderIds,
type
FROM azure.reservations.applied_reservation_lists
WHERE subscription_id = '{{ subscription_id }}' -- required
;