Skip to content
Closed
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
4 changes: 2 additions & 2 deletions isi_sdk_9_0_0/isi_sdk_9_0_0/models/auth_group_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ def dn(self, dn):
:param dn: The dn of this AuthGroupExtended. # noqa: E501
:type: str
"""
if dn is not None and len(dn) > 255:
raise ValueError("Invalid value for `dn`, length must be less than or equal to `255`") # noqa: E501
if dn is not None and len(dn) > 8192:
raise ValueError("Invalid value for `dn`, length must be less than or equal to `8192`") # noqa: E501
if dn is not None and len(dn) < 0:
raise ValueError("Invalid value for `dn`, length must be greater than or equal to `0`") # noqa: E501

Expand Down