Skip to main content

product_families

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

Overview

Nameproduct_families
TypeResource
Idazure_extras.edgeorder.product_families

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
availabilityInformationobjectAvailability information of the product system.
costInformationobjectCost information for the product system.
descriptionobjectDescription related to the product system.
displayNamestringDisplay Name for the product system.
filterablePropertiesarraylist of filters supported for a product.
hierarchyInformationobjectHierarchy information of a product.
imageInformationarrayImage information for the product system.
productLinesarrayList of product lines supported in the product family.
resourceProviderDetailsarrayContains details related to resource provider.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_product_familiesselectsubscription_id$expand, $skipTokenThis method provides the list of 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
subscription_idstring
$expandstring$expand is supported on configurations parameter for product, which provides details on the configurations for the product. Default value is None.
$skipTokenstring$skipToken is supported on list of product families, which provides the next page in the list of product families. Default value is None.

SELECT examples

This method provides the list of product families for the given subscription.

SELECT
availabilityInformation,
costInformation,
description,
displayName,
filterableProperties,
hierarchyInformation,
imageInformation,
productLines,
resourceProviderDetails
FROM azure_extras.edgeorder.product_families
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $expand = '{{ $expand }}'
AND $skipToken = '{{ $skipToken }}'
;