reservation_revisions
Creates, updates, deletes, gets or lists a reservation_revisions
resource.
Overview
Name | reservation_revisions |
Type | Resource |
Id | azure.reservations.reservation_revisions |
Fields
The following fields are returned by SELECT
queries:
- list
List of all the revisions for the Reservation
.
Name | Datatype | Description |
---|---|---|
etag | integer (int32) | |
kind | string | Resource Provider type to be reserved. |
location | string | The Azure region where the reserved resource lives. |
properties | object | The properties associated to this reservation |
sku | object | The name of sku |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | reservationOrderId , reservationId | List of all the revisions for the Reservation . |
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 |
---|---|---|
reservationId | string | Id of the reservation item |
reservationOrderId | string | Order Id of the reservation |
SELECT
examples
- list
List of all the revisions for the Reservation
.
SELECT
etag,
kind,
location,
properties,
sku
FROM azure.reservations.reservation_revisions
WHERE reservationOrderId = '{{ reservationOrderId }}' -- required
AND reservationId = '{{ reservationId }}' -- required
;