DeletedKey Class
A deleted key's properties, cryptographic material and its deletion information.
If soft-delete is enabled, returns information about its recovery as well.
- Inheritance
-
azure.keyvault.keys._models.KeyVaultKeyDeletedKey
Constructor
DeletedKey(properties: KeyProperties, deleted_date: datetime | None = None, recovery_id: str | None = None, scheduled_purge_date: datetime | None = None, **kwargs: Any)
Parameters
Name | Description |
---|---|
properties
Required
|
Properties of the deleted key. |
deleted_date
|
When the key was deleted, in UTC. Default value: None
|
recovery_id
|
An identifier used to recover the deleted key. Returns Default value: None
|
scheduled_purge_date
|
When the key is scheduled to be purged, in UTC. Returns Default value: None
|
Attributes
deleted_date
When the key was deleted, in UTC.
Returns
Type | Description |
---|---|
When the key was deleted, in UTC. |
id
key
The JSON Web Key (JWK) for the key.
Returns
Type | Description |
---|---|
The JSON Web Key (JWK) for the key. |
key_operations
Permitted operations. See KeyOperation for possible values.
Returns
Type | Description |
---|---|
str]
|
Permitted operations. See KeyOperation for possible values. |
key_type
The key's type. See KeyType for possible values.
Returns
Type | Description |
---|---|
The key's type. See KeyType for possible values. |
name
properties
recovery_id
An identifier used to recover the deleted key. Returns None
if soft-delete is disabled.
Returns
Type | Description |
---|---|
str,
|
An identifier used to recover the deleted key. Returns |
scheduled_purge_date
Azure SDK for Python