Conversation
|
(message created by the CI based on PR content) Installation instructionPackage azure-keyvault-secretsYou can install the package You can build a wheel to distribute for test using the following command: If you have a local clone of this repository, you can also do:
Or build a wheel file to distribute for testing:
Package azure-keyvault-keysYou can install the package You can build a wheel to distribute for test using the following command: If you have a local clone of this repository, you can also do:
Or build a wheel file to distribute for testing:
Direct downloadYour files can be directly downloaded here: |
| return self._client.get_deleted_keys( | ||
| self._vault_url, | ||
| maxresults=max_page_size, | ||
| cls=lambda objs: [DeletedKey._from_deleted_key_item(x) for x in objs], |
There was a problem hiding this comment.
I assume objs is a single page already received, so the comprehension doesn't entail additional I/O?
There was a problem hiding this comment.
correct, objs is a real list already in memory, from a single JSON
* KV with latest autorest * Make KV return ItemPaged from azure-core
The gives KV the support for "by_page()" and "continuation_token", while keeping the same type.
Based a regeneration based on this autorest PR:
Azure/autorest.python#106
Do not merge this one until the autorest one is approved and merged.