Skip to main content

best_practices

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

Overview

Namebest_practices
TypeResource
Idazure.automanage.best_practices

Fields

The following fields are returned by SELECT queries:

OK. The Automanage best practice was returned successfully.

NameDatatypeDescription
idstringThe fully qualified ID for the best practice. For example, /providers/Microsoft.Automanage/bestPractices/azureBestPracticesProduction
namestringThe name of the best practice. For example, azureBestPracticesProduction
propertiesobjectProperties of the best practice. (title: Properties)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. For example, Microsoft.Automanage/bestPractices

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectbestPracticeNameGet information about a Automanage best practice
list_by_tenantselectRetrieve a list of Automanage best practices

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
bestPracticeNamestringThe Automanage best practice name.

SELECT examples

Get information about a Automanage best practice

SELECT
id,
name,
properties,
systemData,
type
FROM azure.automanage.best_practices
WHERE bestPracticeName = '{{ bestPracticeName }}' -- required
;