We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d0e6a5 commit 8f0f273Copy full SHA for 8f0f273
2 files changed
services/kms/oas_commit
@@ -1 +1 @@
1
-0e64886dd0847341800d7191ed193b75413be998
+467fe4d305e48699c34835e45fd1c7b486be01d2
services/kms/src/stackit/kms/models/wrapping_key.py
@@ -51,7 +51,9 @@ class WrappingKey(BaseModel):
51
description="The unique id of the key ring this wrapping key is assigned to.", alias="keyRingId"
52
)
53
protection: Protection
54
- public_key: StrictStr = Field(description="The public key of the wrapping key.", alias="publicKey")
+ public_key: Optional[StrictStr] = Field(
55
+ default=None, description="The public key of the wrapping key.", alias="publicKey"
56
+ )
57
purpose: WrappingPurpose
58
state: StrictStr = Field(description="The current state of the wrapping key.")
59
__properties: ClassVar[List[str]] = [
0 commit comments