File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4949 - ** Chore:** Bump minimum Python version to 3.10
5050 - ** Chore:** Update dependencies
5151- ` kms `
52+ - [ v0.12.0] ( services/kms/CHANGELOG.md#0120 )
53+ - ** Feature:** Add ` HSM ` as allowed value to ` Protection ` class.
5254 - [ v0.11.0] ( services/kms/CHANGELOG.md#0110 )
5355 - ** Chore:** Bump minimum Python version to 3.10
5456 - ** Chore:** Update dependencies
Original file line number Diff line number Diff line change 1+ ## v0.12.0
2+ - ** Feature:** Add ` HSM ` as allowed value to ` Protection ` class.
3+
14## v0.11.0
25- ** Chore:** Bump minimum Python version to 3.10
36- ** Chore:** Update dependencies
Original file line number Diff line number Diff line change 1- 467fe4d305e48699c34835e45fd1c7b486be01d2
1+ d5bd75f47f4b364fa6f71663efb4ba41ec703ac8
Original file line number Diff line number Diff line change 11[project ]
22name = " stackit-kms"
3- version = " v0.11 .0"
3+ version = " v0.12 .0"
44description = " STACKIT Key Management Service API"
55authors = [{ name = " STACKIT Developer Tools" , email = " developer-tools@stackit.cloud" }]
66requires-python = " >=3.10,<4.0"
Original file line number Diff line number Diff line change 2121
2222class Protection (str , Enum ):
2323 """
24- The underlying system that is responsible for protecting the key material.
24+ The underlying system that is responsible for protecting the key material. ( \" hsm \" is a private preview feature).
2525 """
2626
2727 """
2828 allowed enum values
2929 """
3030 SOFTWARE = "software"
31+ HSM = "hsm"
3132
3233 @classmethod
3334 def from_json (cls , json_str : str ) -> Self :
You can’t perform that action at this time.
0 commit comments