Skip to main content

orders

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

Overview

Nameorders
TypeResource
Idazure_extras.edge_order.orders

Fields

NameDatatypeDescription
current_stagetextfield from the properties object
locationtextfield from the properties object
orderNametextfield from the properties object
order_item_idstextfield from the properties object
order_modetextfield from the properties object
order_stage_historytextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, orderName, resourceGroupName, subscriptionIdGet an order.
list_by_resource_groupSELECTresourceGroupName, subscriptionIdList orders at resource group level.
list_by_subscriptionSELECTsubscriptionIdList orders at subscription level.

SELECT examples

List orders at subscription level.

SELECT
current_stage,
location,
orderName,
order_item_ids,
order_mode,
order_stage_history,
resourceGroupName,
subscriptionId
FROM azure_extras.edge_order.vw_orders
WHERE subscriptionId = '{{ subscriptionId }}';