products_and_configurations_configurations
Creates, updates, deletes, gets or lists a products_and_configurations_configurations
resource.
Overview
Name | products_and_configurations_configurations |
Type | Resource |
Id | azure_extras.edge_order.products_and_configurations_configurations |
Fields
The following fields are returned by SELECT
queries:
- list
The list of configurations for the given product family, product line and product for the given subscription.
Name | Datatype | Description |
---|---|---|
properties | object | Properties of configuration. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | $skipToken | List configurations for the given product family, product line and product for the given 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 |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$skipToken | string | $skipToken is supported on list of configurations, which provides the next page in the list of configurations. |
SELECT
examples
- list
List configurations for the given product family, product line and product for the given subscription.
SELECT
properties
FROM azure_extras.edge_order.products_and_configurations_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND $skipToken = '{{ $skipToken }}'
;