applied_reservation_lists
Creates, updates, deletes, gets or lists a applied_reservation_lists
resource.
Overview
Name | applied_reservation_lists |
Type | Resource |
Id | azure.reservations.applied_reservation_lists |
Fields
- vw_applied_reservation_lists
- applied_reservation_lists
Name | Datatype | Description |
---|---|---|
id | text | Identifier of the applied reservations |
name | text | Name of resource |
reservation_order_ids | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of resource. "Microsoft.Capacity/AppliedReservations" |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | subscriptionId | Get applicable Reservation s that are applied to this subscription or a resource group under this subscription. |
SELECT
examples
Get applicable Reservation
s that are applied to this subscription or a resource group under this subscription.
- vw_applied_reservation_lists
- applied_reservation_lists
SELECT
id,
name,
reservation_order_ids,
subscriptionId,
type
FROM azure.reservations.vw_applied_reservation_lists
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.reservations.applied_reservation_lists
WHERE subscriptionId = '{{ subscriptionId }}';