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
Applicable Reservation
s.
Name | Datatype | Description |
---|---|---|
id | string | Identifier of the applied reservations |
name | string | Name of resource |
properties | object | Properties for applied reservations returned |
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 | select | subscriptionId | Get applicable Reservation s 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 |
---|---|---|
subscriptionId | string | Id of the subscription |
SELECT
examples
- get
Get applicable Reservation
s 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
;