Skip to content

Commit

Permalink
Regen API versions < 7.2-preview (#16680)
Browse files Browse the repository at this point in the history
  • Loading branch information
mccoyp authored Feb 10, 2021
1 parent e0c2149 commit f8356b1
Show file tree
Hide file tree
Showing 29 changed files with 4,762 additions and 3,967 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
class KeyVaultClient(KeyVaultClientOperationsMixin):
"""The key vault client performs cryptographic key operations and vault operations against the Key Vault service.
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
"""

def __init__(
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from ._key_vault_client_async import KeyVaultClient
from ._key_vault_client import KeyVaultClient
__all__ = ['KeyVaultClient']
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@
from azure.core import AsyncPipelineClient
from msrest import Deserializer, Serializer

from ._configuration_async import KeyVaultClientConfiguration
from .operations_async import KeyVaultClientOperationsMixin
from ._configuration import KeyVaultClientConfiguration
from .operations import KeyVaultClientOperationsMixin
from .. import models


class KeyVaultClient(KeyVaultClientOperationsMixin):
"""The key vault client performs cryptographic key operations and vault operations against the Key Vault service.
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
"""

def __init__(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from ._key_vault_client_operations_async import KeyVaultClientOperationsMixin
from ._key_vault_client_operations import KeyVaultClientOperationsMixin

__all__ = [
'KeyVaultClientOperationsMixin',
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,31 @@ class DeletionRecoveryLevel(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum))
the system can purge the key, at the end of the retention interval.
"""

PURGEABLE = "Purgeable" #: Soft-delete is not enabled for this vault. A DELETE operation results in immediate and irreversible data loss.
RECOVERABLE_PURGEABLE = "Recoverable+Purgeable" #: Soft-delete is enabled for this vault; A privileged user may trigger an immediate, irreversible deletion(purge) of a deleted entity.
RECOVERABLE = "Recoverable" #: Soft-delete is enabled for this vault and purge has been disabled. A deleted entity will remain in this state until recovered, or the end of the retention interval.
RECOVERABLE_PROTECTED_SUBSCRIPTION = "Recoverable+ProtectedSubscription" #: Soft-delete is enabled for this vault, and the subscription is protected against immediate deletion.
#: Soft-delete is not enabled for this vault. A DELETE operation results in immediate and
#: irreversible data loss.
PURGEABLE = "Purgeable"
#: Soft-delete is enabled for this vault; A privileged user may trigger an immediate, irreversible
#: deletion(purge) of a deleted entity.
RECOVERABLE_PURGEABLE = "Recoverable+Purgeable"
#: Soft-delete is enabled for this vault and purge has been disabled. A deleted entity will remain
#: in this state until recovered, or the end of the retention interval.
RECOVERABLE = "Recoverable"
#: Soft-delete is enabled for this vault, and the subscription is protected against immediate
#: deletion.
RECOVERABLE_PROTECTED_SUBSCRIPTION = "Recoverable+ProtectedSubscription"

class JsonWebKeyCurveName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
"""Elliptic curve name. For valid values, see JsonWebKeyCurveName.
"""

P256 = "P-256" #: The NIST P-256 elliptic curve, AKA SECG curve SECP256R1.
P384 = "P-384" #: The NIST P-384 elliptic curve, AKA SECG curve SECP384R1.
P521 = "P-521" #: The NIST P-521 elliptic curve, AKA SECG curve SECP521R1.
SECP256_K1 = "SECP256K1" #: The SECG SECP256K1 elliptic curve.
#: The NIST P-256 elliptic curve, AKA SECG curve SECP256R1.
P256 = "P-256"
#: The NIST P-384 elliptic curve, AKA SECG curve SECP384R1.
P384 = "P-384"
#: The NIST P-521 elliptic curve, AKA SECG curve SECP521R1.
P521 = "P-521"
#: The SECG SECP256K1 elliptic curve.
SECP256_K1 = "SECP256K1"

class JsonWebKeyEncryptionAlgorithm(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
"""algorithm identifier
Expand Down
Loading

0 comments on commit f8356b1

Please sign in to comment.