Skip to content

Commit c4b9e91

Browse files
authored
Mention local capabilities in CryptographyClient documentation (Azure#15859)
1 parent 6a108ae commit c4b9e91

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

sdk/keyvault/azure-keyvault-keys/azure/keyvault/keys/crypto/_client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
class CryptographyClient(KeyVaultClientBase):
2929
"""Performs cryptographic operations using Azure Key Vault keys.
3030
31+
This client will perform operations locally when it's intialized with the necessary key material or is able to get
32+
that material from Key Vault. When the required key material is unavailable, cryptographic operations are performed
33+
by the Key Vault service.
34+
3135
:param key:
3236
Either a :class:`~azure.keyvault.keys.KeyVaultKey` instance as returned by
3337
:func:`~azure.keyvault.keys.KeyClient.get_key`, or a string.

sdk/keyvault/azure-keyvault-keys/azure/keyvault/keys/crypto/aio/_client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
class CryptographyClient(AsyncKeyVaultClientBase):
2828
"""Performs cryptographic operations using Azure Key Vault keys.
2929
30+
This client will perform operations locally when it's intialized with the necessary key material or is able to get
31+
that material from Key Vault. When the required key material is unavailable, cryptographic operations are performed
32+
by the Key Vault service.
33+
3034
:param key:
3135
Either a :class:`~azure.keyvault.keys.KeyVaultKey` instance as returned by
3236
:func:`~azure.keyvault.keys.aio.KeyClient.get_key`, or a string.

0 commit comments

Comments
 (0)