Skip to main content

recommendation_metadata

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

Overview

Namerecommendation_metadata
TypeResource
Idazure.advisor.recommendation_metadata

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource Id of the metadata entity.
namestringThe name of the metadata entity.
applicableScenariosarrayThe list of scenarios applicable to this metadata entity.
dependsOnarrayThe list of keys on which this entity depends on.
displayNamestringThe display name.
supportedValuesarrayThe list of supported values.
typestringThe type of the metadata entity.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectnameGets the metadata entity. Gets the metadata entity.
listselectGets the list of metadata entities. Gets the list of metadata entities.

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
namestringName of metadata entity. Required.

SELECT examples

Gets the metadata entity. Gets the metadata entity.

SELECT
id,
name,
applicableScenarios,
dependsOn,
displayName,
supportedValues,
type
FROM azure.advisor.recommendation_metadata
WHERE name = '{{ name }}' -- required
;