Skip to main content

reservation_revisions

Creates, updates, deletes, gets or lists a reservation_revisions resource.

Overview

Namereservation_revisions
TypeResource
Idazure.reservations.reservation_revisions

Fields

NameDatatypeDescription
etaginteger
kindstringResource Provider type to be reserved.
locationstringThe Azure region where the reserved resource lives.
propertiesobjectThe properties of the reservations
skuobjectThe name of sku

Methods

NameAccessible byRequired ParamsDescription
listSELECTreservationId, reservationOrderIdList of all the revisions for the Reservation.

SELECT examples

List of all the revisions for the Reservation.

SELECT
etag,
kind,
location,
properties,
sku
FROM azure.reservations.reservation_revisions
WHERE reservationId = '{{ reservationId }}'
AND reservationOrderId = '{{ reservationOrderId }}';