Skip to main content

products_and_configurations_product_families_metadata

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

Overview

Nameproducts_and_configurations_product_families_metadata
TypeResource
Idazure_extras.edge_order.products_and_configurations_product_families_metadata

Fields

The following fields are returned by SELECT queries:

The list of available product families for the given subscription.

NameDatatypeDescription
propertiesobjectProduct family properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId$skipTokenList product families metadata 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.
$skipTokenstring$skipToken is supported on list of product families metadata, which provides the next page in the list of product families metadata.

SELECT examples

List product families metadata for the given subscription.

SELECT
properties
FROM azure_extras.edge_order.products_and_configurations_product_families_metadata
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND $skipToken = '{{ $skipToken }}'
;