Skip to main content

products_and_configurations_configurations

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

Overview

Nameproducts_and_configurations_configurations
TypeResource
Idazure_extras.edge_order.products_and_configurations_configurations

Fields

The following fields are returned by SELECT queries:

The list of configurations for the given product family, product line and product for the given subscription.

NameDatatypeDescription
propertiesobjectProperties of configuration.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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