recommendation_metadata
Creates, updates, deletes, gets or lists a recommendation_metadata resource.
Overview
| Name | recommendation_metadata |
| Type | Resource |
| Id | azure.advisor.recommendation_metadata |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The resource Id of the metadata entity. |
name | string | The name of the metadata entity. |
applicableScenarios | array | The list of scenarios applicable to this metadata entity. |
dependsOn | array | The list of keys on which this entity depends on. |
displayName | string | The display name. |
supportedValues | array | The list of supported values. |
type | string | The type of the metadata entity. |
| Name | Datatype | Description |
|---|---|---|
id | string | The resource Id of the metadata entity. |
name | string | The name of the metadata entity. |
applicableScenarios | array | The list of scenarios applicable to this metadata entity. |
dependsOn | array | The list of keys on which this entity depends on. |
displayName | string | The display name. |
supportedValues | array | The list of supported values. |
type | string | The type of the metadata entity. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | name | Gets the metadata entity. Gets the metadata entity. | |
list | select | Gets 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.
| Name | Datatype | Description |
|---|---|---|
name | string | Name of metadata entity. Required. |
SELECT examples
- get
- list
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
;
Gets the list of metadata entities. Gets the list of metadata entities.
SELECT
id,
name,
applicableScenarios,
dependsOn,
displayName,
supportedValues,
type
FROM azure.advisor.recommendation_metadata
;