Skip to content

Commit

Permalink
chore: update GraphQL schema dump
Browse files Browse the repository at this point in the history
Co-authored-by: octodog <[email protected]>
  • Loading branch information
fregataa and lablup-octodog committed Jan 3, 2025
1 parent d2140c7 commit f6442af
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,21 @@ type User implements Item {
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.
"""
main_access_key: String

"""
Added in 25.1.0. The user ID (UID) assigned to processes running inside the container.
"""
container_uid: Int

Check failure on line 836 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Field 'container_uid' was added to object type 'User'

New fields must include a description with a version number in the format "Added in XX.XX.X."

"""
Added in 25.1.0. The primary group ID (GID) assigned to processes running inside the container.
"""
container_main_gid: Int

Check failure on line 841 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Field 'container_main_gid' was added to object type 'User'

New fields must include a description with a version number in the format "Added in XX.XX.X."

"""
Added in 25.1.0. Supplementary group IDs assigned to processes running inside the container.
"""
container_supplementary_gids: [Int]

Check failure on line 846 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Field 'container_supplementary_gids' was added to object type 'User'

New fields must include a description with a version number in the format "Added in XX.XX.X."
groups: [UserGroup]
}

Expand Down Expand Up @@ -2047,6 +2062,21 @@ input UserInput {
totp_activated: Boolean = false
resource_policy: String = "default"
sudo_session_enabled: Boolean = false

"""
Added in 25.1.0. The user ID (UID) assigned to processes running inside the container.
"""
container_uid: Int

Check failure on line 2069 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Input field 'container_uid' was added to input object type 'UserInput'

New fields must include a description with a version number in the format "Added in XX.XX.X."

"""
Added in 25.1.0. The primary group ID (GID) assigned to processes running inside the container.
"""
container_main_gid: Int

Check failure on line 2074 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Input field 'container_main_gid' was added to input object type 'UserInput'

New fields must include a description with a version number in the format "Added in XX.XX.X."

"""
Added in 25.1.0. Supplementary group IDs assigned to processes running inside the container.
"""
container_supplementary_gids: [Int]

Check failure on line 2079 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Input field 'container_supplementary_gids' was added to input object type 'UserInput'

New fields must include a description with a version number in the format "Added in XX.XX.X."
}

type ModifyUser {
Expand All @@ -2071,6 +2101,21 @@ input ModifyUserInput {
resource_policy: String
sudo_session_enabled: Boolean
main_access_key: String

"""
Added in 25.1.0. The user ID (UID) assigned to processes running inside the container.
"""
container_uid: Int

Check failure on line 2108 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Input field 'container_uid' was added to input object type 'ModifyUserInput'

New fields must include a description with a version number in the format "Added in XX.XX.X."

"""
Added in 25.1.0. The primary group ID (GID) assigned to processes running inside the container.
"""
container_main_gid: Int

Check failure on line 2113 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Input field 'container_main_gid' was added to input object type 'ModifyUserInput'

New fields must include a description with a version number in the format "Added in XX.XX.X."

"""
Added in 25.1.0. Supplementary group IDs assigned to processes running inside the container.
"""
container_supplementary_gids: [Int]

Check failure on line 2118 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

New fields must include a description with a version number in the format "Added in XX.XX.X.", Input field 'container_supplementary_gids' was added to input object type 'ModifyUserInput'

New fields must include a description with a version number in the format "Added in XX.XX.X."
}

"""
Expand Down

0 comments on commit f6442af

Please sign in to comment.