@@ -28,7 +28,6 @@ class ProtectionLevel(enum.IntEnum):
2828 SOFTWARE (int): Crypto operations are performed in software.
2929 HSM (int): Crypto operations are performed in a Hardware Security Module.
3030 """
31-
3231 PROTECTION_LEVEL_UNSPECIFIED = 0
3332 SOFTWARE = 1
3433 HSM = 2
@@ -50,7 +49,6 @@ class CryptoKeyPurpose(enum.IntEnum):
5049 ASYMMETRIC_DECRYPT (int): ``CryptoKeys`` with this purpose may be used with ``AsymmetricDecrypt``
5150 and ``GetPublicKey``.
5251 """
53-
5452 CRYPTO_KEY_PURPOSE_UNSPECIFIED = 0
5553 ENCRYPT_DECRYPT = 1
5654 ASYMMETRIC_SIGN = 5
@@ -104,7 +102,6 @@ class CryptoKeyVersionAlgorithm(enum.IntEnum):
104102 EC_SIGN_P256_SHA256 (int): ECDSA on the NIST P-256 curve with a SHA256 digest.
105103 EC_SIGN_P384_SHA384 (int): ECDSA on the NIST P-384 curve with a SHA384 digest.
106104 """
107-
108105 CRYPTO_KEY_VERSION_ALGORITHM_UNSPECIFIED = 0
109106 GOOGLE_SYMMETRIC_ENCRYPTION = 1
110107 RSA_SIGN_PSS_2048_SHA256 = 2
@@ -137,7 +134,6 @@ class CryptoKeyVersionState(enum.IntEnum):
137134 Call ``RestoreCryptoKeyVersion`` to put it back into the ``DISABLED``
138135 state.
139136 """
140-
141137 CRYPTO_KEY_VERSION_STATE_UNSPECIFIED = 0
142138 PENDING_GENERATION = 5
143139 ENABLED = 1
@@ -158,7 +154,6 @@ class CryptoKeyVersionView(enum.IntEnum):
158154 FULL (int): Provides all fields in each ``CryptoKeyVersion``, including the
159155 ``attestation``.
160156 """
161-
162157 CRYPTO_KEY_VERSION_VIEW_UNSPECIFIED = 0
163158 FULL = 1
164159
@@ -173,6 +168,5 @@ class AttestationFormat(enum.IntEnum):
173168 CAVIUM_V1_COMPRESSED (int): Cavium HSM attestation compressed with gzip. Note that this format is
174169 defined by Cavium and subject to change at any time.
175170 """
176-
177171 ATTESTATION_FORMAT_UNSPECIFIED = 0
178172 CAVIUM_V1_COMPRESSED = 3
0 commit comments