applied_reservation_lists
Creates, updates, deletes, gets or lists an applied_reservation_lists resource.
Overview
| Name | applied_reservation_lists |
| Type | Resource |
| Id | azure.reservations.applied_reservation_lists |
Fields
The following fields are returned by SELECT queries:
- get_applied_reservation_list
| Name | Datatype | Description |
|---|---|---|
id | string | Identifier of the applied reservations. |
name | string | Name of resource. |
reservationOrderIds | object | Paginated list of applied reservations. |
type | string | Type of resource. "Microsoft.Capacity/AppliedReservations". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_applied_reservation_list | select | subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string | The ID of the target subscription. The value must be an UUID. Required. |
SELECT examples
- get_applied_reservation_list
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
;