You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ai/backend/manager/api/schema.graphql
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -829,6 +829,21 @@ type User implements Item {
829
829
Added in 24.03.0. Used as the default authentication credential for password-based logins and sets the user's total resource usage limit. User's main_access_key cannot be deleted, and only super-admin can replace main_access_key.
830
830
"""
831
831
main_access_key: String
832
+
833
+
"""
834
+
Added in 25.1.0. The user ID (UID) assigned to processes running inside the container.
835
+
"""
836
+
container_uid: Int
837
+
838
+
"""
839
+
Added in 25.1.0. The primary group ID (GID) assigned to processes running inside the container.
840
+
"""
841
+
container_main_gid: Int
842
+
843
+
"""
844
+
Added in 25.1.0. Supplementary group IDs assigned to processes running inside the container.
845
+
"""
846
+
container_supplementary_gids: [Int]
832
847
groups: [UserGroup]
833
848
}
834
849
@@ -2047,6 +2062,21 @@ input UserInput {
2047
2062
totp_activated: Boolean = false
2048
2063
resource_policy: String = "default"
2049
2064
sudo_session_enabled: Boolean = false
2065
+
2066
+
"""
2067
+
Added in 25.1.0. The user ID (UID) assigned to processes running inside the container.
2068
+
"""
2069
+
container_uid: Int
2070
+
2071
+
"""
2072
+
Added in 25.1.0. The primary group ID (GID) assigned to processes running inside the container.
2073
+
"""
2074
+
container_main_gid: Int
2075
+
2076
+
"""
2077
+
Added in 25.1.0. Supplementary group IDs assigned to processes running inside the container.
2078
+
"""
2079
+
container_supplementary_gids: [Int]
2050
2080
}
2051
2081
2052
2082
typeModifyUser {
@@ -2071,6 +2101,21 @@ input ModifyUserInput {
2071
2101
resource_policy: String
2072
2102
sudo_session_enabled: Boolean
2073
2103
main_access_key: String
2104
+
2105
+
"""
2106
+
Added in 25.1.0. The user ID (UID) assigned to processes running inside the container.
2107
+
"""
2108
+
container_uid: Int
2109
+
2110
+
"""
2111
+
Added in 25.1.0. The primary group ID (GID) assigned to processes running inside the container.
2112
+
"""
2113
+
container_main_gid: Int
2114
+
2115
+
"""
2116
+
Added in 25.1.0. Supplementary group IDs assigned to processes running inside the container.
0 commit comments