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:

Applicable Reservations.

NameDatatypeDescription
idstringIdentifier of the applied reservations
namestringName of resource
propertiesobjectProperties for applied reservations returned
typestringType of resource. "Microsoft.Capacity/AppliedReservations"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionIdGet 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
subscriptionIdstringId of the subscription

SELECT examples

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

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