reservation_orders
Creates, updates, deletes, gets or lists a reservation_orders
resource.
Overview
Name | reservation_orders |
Type | Resource |
Id | azure.billing.reservation_orders |
Fields
- vw_reservation_orders
- reservation_orders
Name | Datatype | Description |
---|---|---|
benefit_start_time | text | field from the properties object |
billingAccountName | text | field from the properties object |
billing_account_id | text | field from the properties object |
billing_plan | text | field from the properties object |
billing_profile_id | text | field from the properties object |
created_date_time | text | field from the properties object |
customer_id | text | field from the properties object |
display_name | text | field from the properties object |
enrollment_id | text | field from the properties object |
etag | integer | field from the properties object |
expiry_date | text | field from the properties object |
expiry_date_time | text | field from the properties object |
extended_status_info | text | field from the properties object |
original_quantity | text | field from the properties object |
plan_information | text | field from the properties object |
product_code | text | field from the properties object |
provisioning_state | text | field from the properties object |
request_date_time | text | field from the properties object |
reservationOrderId | text | field from the properties object |
reservations | text | field from the properties object |
review_date_time | text | field from the properties object |
tags | text | Resource Tags |
term | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
etag | integer | |
properties | object | Properties of a reservation order. |
tags | object | Resource Tags |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_billing_account | SELECT | billingAccountName, reservationOrderId | Get the details of the ReservationOrder in the billing account. |
list_by_billing_account | SELECT | billingAccountName | List all the `ReservationOrders in the billing account. |
SELECT
examples
List all the `ReservationOrders in the billing account.
- vw_reservation_orders
- reservation_orders
SELECT
benefit_start_time,
billingAccountName,
billing_account_id,
billing_plan,
billing_profile_id,
created_date_time,
customer_id,
display_name,
enrollment_id,
etag,
expiry_date,
expiry_date_time,
extended_status_info,
original_quantity,
plan_information,
product_code,
provisioning_state,
request_date_time,
reservationOrderId,
reservations,
review_date_time,
tags,
term
FROM azure.billing.vw_reservation_orders
WHERE billingAccountName = '{{ billingAccountName }}';
SELECT
etag,
properties,
tags
FROM azure.billing.reservation_orders
WHERE billingAccountName = '{{ billingAccountName }}';