Skip to main content

best_practices_versions

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

Overview

Namebest_practices_versions
TypeResource
Idazure.automanage.best_practices_versions

Fields

NameDatatypeDescription
idtextThe fully qualified ID for the best practice. For example, /providers/Microsoft.Automanage/bestPractices/azureBestPracticesProduction
nametextThe name of the best practice. For example, azureBestPracticesProduction
bestPracticeNametextfield from the properties object
configurationtextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource. For example, Microsoft.Automanage/bestPractices
versionNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbestPracticeName, versionNameGet information about a Automanage best practice version
list_by_tenantSELECTbestPracticeNameRetrieve a list of Automanage best practices versions

SELECT examples

Retrieve a list of Automanage best practices versions

SELECT
id,
name,
bestPracticeName,
configuration,
system_data,
type,
versionName
FROM azure.automanage.vw_best_practices_versions
WHERE bestPracticeName = '{{ bestPracticeName }}';