Skip to main content

products_and_configurations_product_families

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

Overview

Nameproducts_and_configurations_product_families
TypeResource
Idazure_extras.edge_order.products_and_configurations_product_families

Fields

The following fields are returned by SELECT queries:

The list of available product families for the given subscription.

NameDatatypeDescription
propertiesobjectProperties of product family.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId$expand, $skipTokenList 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.

NameDatatypeDescription
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$expandstring$expand is supported on configurations parameter for product, which provides details on the configurations for the product.
$skipTokenstring$skipToken is supported on list of product families, which provides the next page in the list of product families.

SELECT examples

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 }}'
;