Skip to content
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 services/kms/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
467fe4d305e48699c34835e45fd1c7b486be01d2
876a48fb56473c7c844baa697906d461c0675f47
3 changes: 2 additions & 1 deletion services/kms/src/stackit/kms/models/protection.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@

class Protection(str, Enum):
"""
The underlying system that is responsible for protecting the key material.
The underlying system that is responsible for protecting the key material. (\"hsm\" is a private preview feature).
"""

"""
allowed enum values
"""
SOFTWARE = "software"
HSM = "hsm"

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down
Loading