orders
Creates, updates, deletes, gets or lists a orders
resource.
Overview
Name | orders |
Type | Resource |
Id | azure_extras.edge_order.orders |
Fields
- vw_orders
- orders
Name | Datatype | Description |
---|---|---|
current_stage | text | field from the properties object |
location | text | field from the properties object |
orderName | text | field from the properties object |
order_item_ids | text | field from the properties object |
order_mode | text | field from the properties object |
order_stage_history | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Represents order details. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, orderName, resourceGroupName, subscriptionId | Get an order. |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | List orders at resource group level. |
list_by_subscription | SELECT | subscriptionId | List orders at subscription level. |
SELECT
examples
List orders at subscription level.
- vw_orders
- orders
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 }}';
SELECT
properties
FROM azure_extras.edge_order.orders
WHERE subscriptionId = '{{ subscriptionId }}';