Skip to content

Commit f723b85

Browse files
authored
Fix rotational group platform type enum value (#43)
* Fix rotational group platform type enum value The API returns 'rotationalgroup' (singular) but the enum was defined as 'rotationalGroups' (plural), causing validation errors when calling list_platforms(). Updated enum value to match API response. Fixes issue where list_platforms() failed with enum validation error for rotational group platforms. * Bump pyproject patch version
1 parent 93c0ddd commit f723b85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ark_sdk_python/models/services/pcloud/platforms/ark_pcloud_platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class ArkPCloudPlatformType(str, Enum):
1010
Regular = 'regular'
1111
Group = 'group'
12-
RotationalGroups = 'rotationalGroups'
12+
RotationalGroups = 'rotationalgroup'
1313
Dependent = 'dependent'
1414

1515

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ark-sdk-python"
3-
version = "2.0.13"
3+
version = "2.0.14"
44
description='Official Ark SDK / CLI for CyberArk Identity Security Platform'
55
authors = ["CyberArk <[email protected]>", "Ofir Iluz <[email protected]"]
66
readme = "README.md"

0 commit comments

Comments
 (0)