AccessPolicyEntry Class
An identity that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.keyvault._serialization.ModelAccessPolicyEntry
Constructor
AccessPolicyEntry(*, tenant_id: str, object_id: str, permissions: _models.Permissions, application_id: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
tenant_id
|
The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault. Required. |
object_id
|
The object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies. Required. |
application_id
|
Application ID of the client making request on behalf of a principal. |
permissions
|
Permissions the identity has for keys, secrets and certificates. Required. |
Variables
Name | Description |
---|---|
tenant_id
|
The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault. Required. |
object_id
|
The object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies. Required. |
application_id
|
Application ID of the client making request on behalf of a principal. |
permissions
|
Permissions the identity has for keys, secrets and certificates. Required. |
Azure SDK for Python