Skip to main content

configurations

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

Overview

Nameconfigurations
TypeResource
Idazure_extras.edgeorder.configurations

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.
dimensionsobjectDimensions of the configuration.
displayNamestringDisplay Name for the product system.
filterablePropertiesarraylist of filters supported for a product.
hierarchyInformationobjectHierarchy information of a product.
imageInformationarrayImage information for the product system.
specificationsarraySpecifications of the configuration.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_configurationsselectsubscription_id$skipTokenThis method provides the list of configurations for the given product family, product line and product under 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
$skipTokenstring$skipToken is supported on list of configurations, which provides the next page in the list of configurations. Default value is None.

SELECT examples

This method provides the list of configurations for the given product family, product line and product under subscription.

SELECT
availabilityInformation,
costInformation,
description,
dimensions,
displayName,
filterableProperties,
hierarchyInformation,
imageInformation,
specifications
FROM azure_extras.edgeorder.configurations
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $skipToken = '{{ $skipToken }}'
;