configurations
Creates, updates, deletes, gets or lists a configurations resource.
Overview
| Name | configurations |
| Type | Resource |
| Id | azure_extras.edgeorder.configurations |
Fields
The following fields are returned by SELECT queries:
- list_configurations
| Name | Datatype | Description |
|---|---|---|
availabilityInformation | object | Availability information of the product system. |
costInformation | object | Cost information for the product system. |
description | object | Description related to the product system. |
dimensions | object | Dimensions of the configuration. |
displayName | string | Display Name for the product system. |
filterableProperties | array | list of filters supported for a product. |
hierarchyInformation | object | Hierarchy information of a product. |
imageInformation | array | Image information for the product system. |
specifications | array | Specifications of the configuration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_configurations | select | subscription_id | $skipToken | This method provides the list of configurations for the given product family, product line and product under subscription. |
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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string | |
$skipToken | string | $skipToken is supported on list of configurations, which provides the next page in the list of configurations. Default value is None. |
SELECT examples
- list_configurations
This method provides the list of configurations for the given product family, product line and product under subscription.
SELECT
availabilityInformation,
costInformation,
description,
dimensions,
displayName,
filterableProperties,
hierarchyInformation,
imageInformation,
specifications
FROM azure_extras.edgeorder.configurations
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $skipToken = '{{ $skipToken }}'
;