Skip to main content

policy_definition_versions

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

Overview

Namepolicy_definition_versions
TypeResource
Idazure.resource.policy_definition_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
descriptionstringThe policy definition description.
displayNamestringThe display name of the policy definition.
externalEvaluationEnforcementSettingsobjectThe details of the source of external evaluation results required by the policy during enforcement evaluation.
metadataobjectThe policy definition metadata. Metadata is an open ended object and is typically a collection of key value pairs.
modestringThe policy definition mode. Some examples are All, Indexed, Microsoft.KeyVault.Data.
parametersobjectThe parameter definitions for parameters used in the policy rule. The keys are the parameter names.
policyRuleobjectThe policy rule.
policyTypestringThe type of policy definition. Possible values are NotSpecified, BuiltIn, Custom, and Static. Known values are: "NotSpecified", "BuiltIn", "Custom", and "Static". (NotSpecified, BuiltIn, Custom, Static)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
versionstringThe policy definition version in #.#.# format.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectpolicy_definition_name, policy_definition_version, subscription_idThis operation retrieves the policy definition version in the given subscription with the given name.
get_at_management_groupselectmanagement_group_name, policy_definition_name, policy_definition_versionThis operation retrieves the policy definition version in the given management group with the given name.
listselectpolicy_definition_name, subscription_id$topThis operation retrieves a list of all the policy definition versions for the given policy definition.
list_by_management_groupselectmanagement_group_name, policy_definition_name$topThis operation retrieves a list of all the policy definition versions for the given policy definition in the given management group.
get_built_inselectpolicy_definition_name, policy_definition_versionThis operation retrieves the built-in policy definition version with the given name.
list_allselectsubscription_idLists all policy definition versions within a subscription. This operation lists all the policy definition versions for all policy definitions within a subscription.
list_built_inselectpolicy_definition_name$topThis operation retrieves a list of all the built-in policy definition versions for the given policy definition.
list_all_at_management_groupselectmanagement_group_nameLists all policy definition versions at management group scope. This operation lists all the policy definition versions for all policy definitions at the management group scope.
list_all_builtinsselectLists all built-in policy definition versions. This operation lists all the built-in policy definition versions for all built-in policy definitions.
create_or_updateinsertpolicy_definition_name, policy_definition_version, subscription_idThis operation creates or updates a policy definition in the given subscription with the given name.
create_or_update_at_management_groupinsertmanagement_group_name, policy_definition_name, policy_definition_versionThis operation creates or updates a policy definition version in the given management group with the given name.
create_or_updatereplacepolicy_definition_name, policy_definition_version, subscription_idThis operation creates or updates a policy definition in the given subscription with the given name.
create_or_update_at_management_groupreplacemanagement_group_name, policy_definition_name, policy_definition_versionThis operation creates or updates a policy definition version in the given management group with the given name.
deletedeletepolicy_definition_name, policy_definition_version, subscription_idThis operation deletes the policy definition version in the given subscription with the given name.
delete_at_management_groupdeletemanagement_group_name, policy_definition_name, policy_definition_versionThis operation deletes the policy definition in the given management group with the given name.

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
management_group_namestringThe name of the management group. The name is case insensitive. Required.
policy_definition_namestringThe name of the policy definition. Required.
policy_definition_versionstringThe policy definition version. The format is x.y.z where x is the major version number, y is the minor version number, and z is the patch number. Required.
subscription_idstring
$topintegerMaximum number of records to return. When the $top filter is not provided, it will return 500 records. Default value is None.

SELECT examples

This operation retrieves the policy definition version in the given subscription with the given name.

SELECT
id,
name,
description,
displayName,
externalEvaluationEnforcementSettings,
metadata,
mode,
parameters,
policyRule,
policyType,
systemData,
type,
version
FROM azure.resource.policy_definition_versions
WHERE policy_definition_name = '{{ policy_definition_name }}' -- required
AND policy_definition_version = '{{ policy_definition_version }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

This operation creates or updates a policy definition in the given subscription with the given name.

INSERT INTO azure.resource.policy_definition_versions (
properties,
policy_definition_name,
policy_definition_version,
subscription_id
)
SELECT
'{{ properties }}',
'{{ policy_definition_name }}',
'{{ policy_definition_version }}',
'{{ subscription_id }}'
RETURNING
id,
name,
properties,
systemData,
type
;

REPLACE examples

This operation creates or updates a policy definition in the given subscription with the given name.

REPLACE azure.resource.policy_definition_versions
SET
properties = '{{ properties }}'
WHERE
policy_definition_name = '{{ policy_definition_name }}' --required
AND policy_definition_version = '{{ policy_definition_version }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

DELETE examples

This operation deletes the policy definition version in the given subscription with the given name.

DELETE FROM azure.resource.policy_definition_versions
WHERE policy_definition_name = '{{ policy_definition_name }}' --required
AND policy_definition_version = '{{ policy_definition_version }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;