product_families_metadatas
Creates, updates, deletes, gets or lists a product_families_metadatas resource.
Overview
| Name | product_families_metadatas |
| Type | Resource |
| Id | azure_extras.edgeorder.product_families_metadatas |
Fields
The following fields are returned by SELECT queries:
- list_product_families_metadata
| Name | Datatype | Description |
|---|---|---|
availabilityInformation | object | Availability information of the product system. |
costInformation | object | Cost information for the product system. |
description | object | Description related to the product system. |
displayName | string | Display Name for the product system. |
filterableProperties | array | list of filters supported for a product. |
hierarchyInformation | object | Hierarchy information of a product. |
imageInformation | array | Image information for the product system. |
productLines | array | List of product lines supported in the product family. |
resourceProviderDetails | array | Contains details related to resource provider. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_product_families_metadata | select | subscription_id | $skipToken | This method provides the list of 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string | |
$skipToken | string | $skipToken is supported on list of product families metadata, which provides the next page in the list of product families metadata. Default value is None. |
SELECT examples
- list_product_families_metadata
This method provides the list of product families metadata for the given subscription.
SELECT
availabilityInformation,
costInformation,
description,
displayName,
filterableProperties,
hierarchyInformation,
imageInformation,
productLines,
resourceProviderDetails
FROM azure_extras.edgeorder.product_families_metadatas
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $skipToken = '{{ $skipToken }}'
;