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