best_practices_versions
Creates, updates, deletes, gets or lists a best_practices_versions
resource.
Overview
Name | best_practices_versions |
Type | Resource |
Id | azure.automanage.best_practices_versions |
Fields
- vw_best_practices_versions
- best_practices_versions
Name | Datatype | Description |
---|---|---|
id | text | The fully qualified ID for the best practice. For example, /providers/Microsoft.Automanage/bestPractices/azureBestPracticesProduction |
name | text | The name of the best practice. For example, azureBestPracticesProduction |
bestPracticeName | text | field from the properties object |
configuration | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. For example, Microsoft.Automanage/bestPractices |
versionName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified ID for the best practice. For example, /providers/Microsoft.Automanage/bestPractices/azureBestPracticesProduction |
name | string | The name of the best practice. For example, azureBestPracticesProduction |
properties | object | Automanage configuration profile properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. For example, Microsoft.Automanage/bestPractices |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | bestPracticeName, versionName | Get information about a Automanage best practice version |
list_by_tenant | SELECT | bestPracticeName | Retrieve a list of Automanage best practices versions |
SELECT
examples
Retrieve a list of Automanage best practices versions
- vw_best_practices_versions
- best_practices_versions
SELECT
id,
name,
bestPracticeName,
configuration,
system_data,
type,
versionName
FROM azure.automanage.vw_best_practices_versions
WHERE bestPracticeName = '{{ bestPracticeName }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.automanage.best_practices_versions
WHERE bestPracticeName = '{{ bestPracticeName }}';