scores
Creates, updates, deletes, gets or lists a scores
resource.
Overview
Name | scores |
Type | Resource |
Id | azure.advisor.scores |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK.
Name | Datatype | Description |
---|---|---|
properties | object | The Advisor score data. |
OK.
Name | Datatype | Description |
---|---|---|
properties | object | The Advisor score data. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , name | Gets the advisor score. | |
list | select | subscriptionId | Gets the list of advisor scores. |
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 | The scope of Advisor score entity. |
subscriptionId | string | The Azure subscription ID. |
SELECT
examples
- get
- list
Gets the advisor score.
SELECT
properties
FROM azure.advisor.scores
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND name = '{{ name }}' -- required
;
Gets the list of advisor scores.
SELECT
properties
FROM azure.advisor.scores
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;