Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[KeyVault] Fix generated reference documentation for KeyVaultClient #2619

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-keyvault/azure/keyvault/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .custom import http_bearer_challenge_cache as HttpBearerChallengeCache
from .custom.http_bearer_challenge import HttpBearerChallenge
from .custom.http_challenge import HttpChallenge
from .custom.key_vault_client import CustomKeyVaultClient as KeyVaultClient
from .custom.key_vault_client import KeyVaultClient
from .custom.key_vault_id import (KeyVaultId,
KeyId,
SecretId,
Expand Down
4 changes: 2 additions & 2 deletions azure-keyvault/azure/keyvault/custom/key_vault_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from msrest.authentication import BasicTokenAuthentication


class CustomKeyVaultClient(KeyVaultClientBase):
class KeyVaultClient(KeyVaultClientBase):

def __init__(self, credentials):
"""The key vault client performs cryptographic key operations and vault operations against the Key Vault service.
Expand All @@ -32,7 +32,7 @@ def __init__(self, credentials):
# wrap the supplied credentials with a KeyVaultAuthentication instance. Use that for the credentials supplied to the base client
credentials = KeyVaultAuthentication(credentials=credentials)

super(CustomKeyVaultClient, self).__init__(credentials)
super(KeyVaultClient, self).__init__(credentials)

def get_pending_certificate_signing_request(self, vault_base_url, certificate_name, custom_headers=None, raw=False, **operation_config):
"""Gets the Base64 pending certificate signing request (PKCS-10).
Expand Down
7 changes: 0 additions & 7 deletions doc/ref/azure.keyvault.generated.models.rst

This file was deleted.

17 changes: 0 additions & 17 deletions doc/ref/azure.keyvault.generated.rst

This file was deleted.

10 changes: 0 additions & 10 deletions doc/ref/azure.keyvault.key_vault_id.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/ref/azure.keyvault.operations.rst

This file was deleted.

4 changes: 3 additions & 1 deletion doc/ref/azure.keyvault.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ Submodules
.. toctree::

azure.keyvault.models
azure.keyvault.operations

Module contents
---------------


.. automodule:: azure.keyvault
:members:
:undoc-members:
:show-inheritance:
:inherited-members: