Skip to main content

scores

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

Overview

Namescores
TypeResource
Idazure.advisor.scores

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
propertiesobjectThe Advisor score data.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, nameGets the advisor score.
listselectsubscriptionIdGets 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.

NameDatatypeDescription
namestringThe scope of Advisor score entity.
subscriptionIdstringThe Azure subscription ID.

SELECT examples

Gets the advisor score.

SELECT
properties
FROM azure.advisor.scores
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND name = '{{ name }}' -- required
;