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

The following fields are returned by SELECT queries:

List of all the revisions for the Reservation.

NameDatatypeDescription
etaginteger (int32)
kindstringResource Provider type to be reserved.
locationstringThe Azure region where the reserved resource lives.
propertiesobjectThe properties associated to this reservation
skuobjectThe name of sku

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectreservationOrderId, reservationIdList 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.

NameDatatypeDescription
reservationIdstringId of the reservation item
reservationOrderIdstringOrder Id of the reservation

SELECT examples

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
;