Skip to main content

vaults_access_policies

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

Overview

Namevaults_access_policies
TypeResource
Idazure.key_vault.vaults_access_policies

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
updatereplaceresourceGroupName, vaultName, operationKind, subscriptionId, data__propertiesUpdate access policies in a key vault in the specified subscription.

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
operationKindstringName of the operation
resourceGroupNamestringThe name of the Resource Group to which the vault belongs.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
vaultNamestringName of the vault

REPLACE examples

Update access policies in a key vault in the specified subscription.

REPLACE azure.key_vault.vaults_access_policies
SET
data__properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND vaultName = '{{ vaultName }}' --required
AND operationKind = '{{ operationKind }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND data__properties = '{{ properties }}' --required
RETURNING
id,
name,
location,
properties,
type;