Skip to content

Commit

Permalink
ENG-486: restore balance argument for a backward compatibility reason (
Browse files Browse the repository at this point in the history
  • Loading branch information
parikls authored Dec 5, 2024
1 parent 8efddb4 commit 545deea
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions neuro_admin_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ async def create_cluster_user(
*,
with_user_info: Literal[True],
quota: Quota | None = None,
balance: Balance | None = None,
org_name: str | None = None,
) -> ClusterUserWithInfo: ...

Expand All @@ -219,6 +220,7 @@ async def create_cluster_user(
*,
with_user_info: Literal[False] = ...,
quota: Quota | None = None,
balance: Balance | None = None,
org_name: str | None = None,
) -> ClusterUser: ...

Expand All @@ -230,6 +232,7 @@ async def create_cluster_user(
role: ClusterUserRoleType,
*,
quota: Quota | None = None,
balance: Balance | None = None,
with_user_info: bool = False,
org_name: str | None = None,
) -> ClusterUser | ClusterUserWithInfo: ...
Expand Down Expand Up @@ -1219,6 +1222,7 @@ async def create_cluster_user(
*,
with_user_info: Literal[True],
quota: Quota | None = None,
balance: Balance | None = None,
org_name: str | None = None,
) -> ClusterUserWithInfo: ...

Expand All @@ -1231,6 +1235,7 @@ async def create_cluster_user(
*,
with_user_info: Literal[False] = ...,
quota: Quota | None = None,
balance: Balance | None = None,
org_name: str | None = None,
) -> ClusterUser: ...

Expand All @@ -1241,6 +1246,7 @@ async def create_cluster_user(
role: ClusterUserRoleType,
*,
quota: Quota | None = None,
balance: Balance | None = None,
with_user_info: bool = False,
org_name: str | None = None,
) -> ClusterUser | ClusterUserWithInfo:
Expand Down Expand Up @@ -2775,6 +2781,7 @@ async def create_cluster_user(
*,
with_user_info: Literal[True],
quota: Quota | None = None,
balance: Balance | None = None,
org_name: str | None = None,
) -> ClusterUserWithInfo: ...

Expand All @@ -2787,6 +2794,7 @@ async def create_cluster_user(
*,
with_user_info: Literal[False] = ...,
quota: Quota | None = None,
balance: Balance | None = None,
org_name: str | None = None,
) -> ClusterUser: ...

Expand All @@ -2797,6 +2805,7 @@ async def create_cluster_user(
role: ClusterUserRoleType,
*,
quota: Quota | None = None,
balance: Balance | None = None,
with_user_info: bool = False,
org_name: str | None = None,
) -> ClusterUser | ClusterUserWithInfo:
Expand Down

0 comments on commit 545deea

Please sign in to comment.