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

The following fields are returned by SELECT queries:

OK. The Automanage best practice version 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
getselectbestPracticeName, versionNameGet information about a Automanage best practice version
list_by_tenantselectbestPracticeNameRetrieve a list of Automanage best practices versions

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

SELECT examples

Get information about a Automanage best practice version

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