Skip to content

Commit 87dd4b6

Browse files
chore: update GraphQL schema dump
Co-authored-by: octodog <[email protected]>
1 parent 2e76a36 commit 87dd4b6

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

src/ai/backend/manager/api/schema.graphql

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,21 @@ type User implements Item {
829829
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.
830830
"""
831831
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]
832847
groups: [UserGroup]
833848
}
834849

@@ -2047,6 +2062,21 @@ input UserInput {
20472062
totp_activated: Boolean = false
20482063
resource_policy: String = "default"
20492064
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]
20502080
}
20512081

20522082
type ModifyUser {
@@ -2071,6 +2101,21 @@ input ModifyUserInput {
20712101
resource_policy: String
20722102
sudo_session_enabled: Boolean
20732103
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.
2117+
"""
2118+
container_supplementary_gids: [Int]
20742119
}
20752120

20762121
"""

0 commit comments

Comments
 (0)