Skip to content

Commit 8f0f273

Browse files
Generate kms
1 parent 3d0e6a5 commit 8f0f273

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

services/kms/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
467fe4d305e48699c34835e45fd1c7b486be01d2

services/kms/src/stackit/kms/models/wrapping_key.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ class WrappingKey(BaseModel):
5151
description="The unique id of the key ring this wrapping key is assigned to.", alias="keyRingId"
5252
)
5353
protection: Protection
54-
public_key: StrictStr = Field(description="The public key of the wrapping key.", alias="publicKey")
54+
public_key: Optional[StrictStr] = Field(
55+
default=None, description="The public key of the wrapping key.", alias="publicKey"
56+
)
5557
purpose: WrappingPurpose
5658
state: StrictStr = Field(description="The current state of the wrapping key.")
5759
__properties: ClassVar[List[str]] = [

0 commit comments

Comments
 (0)