Skip to content

Commit 49c9646

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent b5d53b3 commit 49c9646

2 files changed

Lines changed: 2 additions & 269 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 1 addition & 144 deletions
Original file line numberDiff line numberDiff line change
@@ -895,14 +895,6 @@ type AllowedResourceGroupsPayload
895895
items: [String!]!
896896
}
897897

898-
"""Added in 25.16.0. App configuration data."""
899-
type AppConfig
900-
@join__type(graph: STRAWBERRY)
901-
{
902-
"""Additional configuration data."""
903-
extraConfig: JSON!
904-
}
905-
906898
"""
907899
Added in 24.09.0. Input for approving an artifact revision.
908900

@@ -4443,23 +4435,6 @@ type DeleteDomain
44434435
msg: String
44444436
}
44454437

4446-
"""Added in 25.16.0. Input for deleting domain-level app configuration"""
4447-
input DeleteDomainConfigInput
4448-
@join__type(graph: STRAWBERRY)
4449-
{
4450-
domainName: String!
4451-
}
4452-
4453-
"""
4454-
Added in 25.16.0. Payload returned after deleting domain-level app configuration. Indicates whether the deletion was successful.
4455-
"""
4456-
type DeleteDomainConfigPayload
4457-
@join__type(graph: STRAWBERRY)
4458-
{
4459-
"""Whether the deletion was successful."""
4460-
deleted: Boolean!
4461-
}
4462-
44634438
"""Added in 26.4.2. Payload for domain deletion mutation."""
44644439
type DeleteDomainPayloadGQL
44654440
@join__type(graph: STRAWBERRY)
@@ -4777,26 +4752,6 @@ type DeleteUser
47774752
msg: String
47784753
}
47794754

4780-
"""
4781-
Added in 24.09.0. Input for deleting user-level app configuration.
4782-
If user_id is not provided, the current user's configuration will be deleted.
4783-
"""
4784-
input DeleteUserConfigInput
4785-
@join__type(graph: STRAWBERRY)
4786-
{
4787-
userId: ID = null
4788-
}
4789-
4790-
"""
4791-
Added in 25.16.0. Payload returned after deleting user-level app configuration. Indicates whether the deletion was successful.
4792-
"""
4793-
type DeleteUserConfigPayload
4794-
@join__type(graph: STRAWBERRY)
4795-
{
4796-
"""Whether the deletion was successful."""
4797-
deleted: Boolean!
4798-
}
4799-
48004755
type DeleteUserResourcePolicy
48014756
@join__type(graph: GRAPHENE)
48024757
{
@@ -6354,15 +6309,14 @@ union EntityNode
63546309
@join__unionMember(graph: STRAWBERRY, member: "SessionV2")
63556310
@join__unionMember(graph: STRAWBERRY, member: "Artifact")
63566311
@join__unionMember(graph: STRAWBERRY, member: "ArtifactRegistry")
6357-
@join__unionMember(graph: STRAWBERRY, member: "AppConfig")
63586312
@join__unionMember(graph: STRAWBERRY, member: "NotificationChannel")
63596313
@join__unionMember(graph: STRAWBERRY, member: "NotificationRule")
63606314
@join__unionMember(graph: STRAWBERRY, member: "ModelDeployment")
63616315
@join__unionMember(graph: STRAWBERRY, member: "ResourceGroup")
63626316
@join__unionMember(graph: STRAWBERRY, member: "ContainerRegistryV2")
63636317
@join__unionMember(graph: STRAWBERRY, member: "ArtifactRevision")
63646318
@join__unionMember(graph: STRAWBERRY, member: "Role")
6365-
= UserV2 | ProjectV2 | DomainV2 | VirtualFolderNode | ImageV2 | ComputeSessionNode | SessionV2 | Artifact | ArtifactRegistry | AppConfig | NotificationChannel | NotificationRule | ModelDeployment | ResourceGroup | ContainerRegistryV2 | ArtifactRevision | Role
6319+
= UserV2 | ProjectV2 | DomainV2 | VirtualFolderNode | ImageV2 | ComputeSessionNode | SessionV2 | Artifact | ArtifactRegistry | NotificationChannel | NotificationRule | ModelDeployment | ResourceGroup | ContainerRegistryV2 | ArtifactRevision | Role
63666320

63676321
"""Added in 26.4.2. Valid entity-operation combination for RBAC actions."""
63686322
type EntityOperationCombination
@@ -10458,16 +10412,6 @@ type Mutation
1045810412
"""
1045910413
importArtifacts(input: ImportArtifactsInput!): ImportArtifactsPayload! @join__field(graph: STRAWBERRY)
1046010414

10461-
"""
10462-
Added in 25.16.0. Create or update user-level app configuration. The provided extra_config object will completely replace the existing configuration; existing keys not present in the new extra_config will be removed. These settings will override domain-level settings when configurations are merged for this user. If user_id is not provided, the current user's configuration will be updated. Users can only modify their own configuration, but admins can modify any user's configuration
10463-
"""
10464-
upsertUserAppConfig(input: UpsertUserConfigInput!): UpsertUserConfigPayload! @join__field(graph: STRAWBERRY)
10465-
10466-
"""
10467-
Added in 25.16.0. Delete user-level app configuration. After deletion, the user will still receive domain-level configuration values when configurations are merged, as domain settings remain unaffected. If user_id is not provided, the current user's configuration will be deleted. Users can only delete their own configuration, but admins can delete any user's configuration
10468-
"""
10469-
deleteUserAppConfig(input: DeleteUserConfigInput!): DeleteUserConfigPayload! @join__field(graph: STRAWBERRY)
10470-
1047110415
"""
1047210416
Added in 25.15.0. Triggers artifact scanning on a remote reservoir registry. This mutation instructs a reservoir-type registry to initiate a scan of artifacts from its associated remote reservoir registry source. The scan process will discover and catalog artifacts available in the remote reservoir, making them accessible through the local reservoir registry. Requirements: - The delegator registry must be of type 'reservoir' - The delegator reservoir registry must have a valid remote registry configuration
1047310417
"""
@@ -10563,16 +10507,6 @@ type Mutation
1056310507
"""Added in 26.4.2. Validate a notification rule (admin only)"""
1056410508
adminValidateNotificationRule(input: ValidateNotificationRuleInput!): ValidateNotificationRulePayload! @join__field(graph: STRAWBERRY)
1056510509

10566-
"""
10567-
Added in 26.2.0. Create or update domain-level app configuration (admin only). The provided extra_config object will completely replace the existing configuration; existing keys not present in the new extra_config will be removed. All users in this domain will be affected by these settings when their configurations are merged, unless they have user-level configurations that override specific keys
10568-
"""
10569-
adminUpsertDomainAppConfig(input: UpsertDomainConfigInput!): UpsertDomainConfigPayload! @join__field(graph: STRAWBERRY)
10570-
10571-
"""
10572-
Added in 26.2.0. Delete domain-level app configuration (admin only). All users in this domain may be affected by this deletion. After deletion, users will only receive their user-level configurations when configurations are merged, with no domain-level defaults
10573-
"""
10574-
adminDeleteDomainAppConfig(input: DeleteDomainConfigInput!): DeleteDomainConfigPayload! @join__field(graph: STRAWBERRY)
10575-
1057610510
"""Added in 26.4.2. Create a new notification channel"""
1057710511
createNotificationChannel(input: CreateNotificationChannelInput!): CreateNotificationChannelPayload! @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_create_notification_channel instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
1057810512

@@ -10597,16 +10531,6 @@ type Mutation
1059710531
"""Added in 26.4.2. Validate a notification rule"""
1059810532
validateNotificationRule(input: ValidateNotificationRuleInput!): ValidateNotificationRulePayload! @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_validate_notification_rule instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
1059910533

10600-
"""
10601-
Added in 25.16.0. Create or update domain-level app configuration. The provided extra_config object will completely replace the existing configuration; existing keys not present in the new extra_config will be removed. All users in this domain will be affected by these settings when their configurations are merged, unless they have user-level configurations that override specific keys. Requires admin privileges
10602-
"""
10603-
upsertDomainAppConfig(input: UpsertDomainConfigInput!): UpsertDomainConfigPayload! @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_upsert_domain_app_config instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
10604-
10605-
"""
10606-
Added in 25.16.0. Delete domain-level app configuration. All users in this domain may be affected by this deletion. After deletion, users will only receive their user-level configurations when configurations are merged, with no domain-level defaults. Requires admin privileges
10607-
"""
10608-
deleteDomainAppConfig(input: DeleteDomainConfigInput!): DeleteDomainConfigPayload! @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_delete_domain_app_config instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
10609-
1061010534
"""Added in 25.14.0. Create an object storage."""
1061110535
createObjectStorage(input: CreateObjectStorageInput!): CreateObjectStoragePayload! @join__field(graph: STRAWBERRY)
1061210536

@@ -13245,16 +13169,6 @@ type Query
1324513169
"""
1324613170
artifactRevisions(filter: ArtifactRevisionFilter = null, orderBy: [ArtifactRevisionOrderBy!] = null, before: String = null, after: String = null, first: Int = null, last: Int = null, limit: Int = null, offset: Int = null): ArtifactRevisionConnection @join__field(graph: STRAWBERRY)
1324713171

13248-
"""
13249-
Added in 25.16.0. Retrieve user-level app configuration. Returns only the configuration set specifically for the user, without merging with domain config. This query is useful for checking what values are configured at the user level when you want to modify domain or user configurations separately. For actual configuration values to be applied, use mergedAppConfig instead. If user_id is not provided, returns the current user's configuration. Users can only access their own configuration, but admins can access any user's configuration.
13250-
"""
13251-
userAppConfig(userId: ID = null): AppConfig @join__field(graph: STRAWBERRY)
13252-
13253-
"""
13254-
Added in 25.16.0. Retrieve merged app configuration for the current user. The result combines domain-level and user-level configurations, where user settings override domain settings for the same keys. This query should be used when working with user app configurations to get the actual configuration values that will be applied.
13255-
"""
13256-
mergedAppConfig: AppConfig! @join__field(graph: STRAWBERRY)
13257-
1325813172
"""Added in 25.16.0. Get a specific deployment by ID."""
1325913173
deployment(id: ID!): ModelDeployment @join__field(graph: STRAWBERRY)
1326013174

@@ -13377,11 +13291,6 @@ type Query
1337713291
"""Added in 26.4.2. List notification rules (admin only)"""
1337813292
adminNotificationRules(filter: NotificationRuleFilter = null, orderBy: [NotificationRuleOrderBy!] = null, before: String = null, after: String = null, first: Int = null, last: Int = null, limit: Int = null, offset: Int = null): NotificationRuleConnection @join__field(graph: STRAWBERRY)
1337913293

13380-
"""
13381-
Added in 26.2.0. Retrieve domain-level app configuration (admin only). Returns only the configuration set specifically for the domain, without merging. This query is useful for checking what values are configured at the domain level when you want to modify domain or user configurations separately. For actual configuration values to be applied, use mergedAppConfig instead.
13382-
"""
13383-
adminDomainAppConfig(domainName: String!): AppConfig @join__field(graph: STRAWBERRY)
13384-
1338513294
"""Added in 26.2.0. Get domain fair share data (admin only)."""
1338613295
adminDomainFairShare(resourceGroupName: String!, domainName: String!): DomainFairShare @join__field(graph: STRAWBERRY)
1338713296

@@ -13633,11 +13542,6 @@ type Query
1363313542
"""Added in 26.2.0. List resource groups"""
1363413543
resourceGroups(filter: ResourceGroupFilter = null, orderBy: [ResourceGroupOrderBy!] = null, before: String = null, after: String = null, first: Int = null, last: Int = null, limit: Int = null, offset: Int = null): ResourceGroupConnection @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_resource_groups instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
1363513544

13636-
"""
13637-
Added in 25.16.0. Retrieve domain-level app configuration. Returns only the configuration set specifically for the domain, without merging. This query is useful for checking what values are configured at the domain level when you want to modify domain or user configurations separately. For actual configuration values to be applied, use mergedAppConfig instead. Requires admin privileges.
13638-
"""
13639-
domainAppConfig(domainName: String!): AppConfig @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_domain_app_config instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
13640-
1364113545
"""Added in 26.1.0. Get domain fair share data (superadmin only)."""
1364213546
domainFairShare(resourceGroupName: String!, domainName: String!): DomainFairShare @join__field(graph: STRAWBERRY) @deprecated(reason: "Use admin_domain_fair_share instead. This API will be removed after v26.3.0. See BEP-1041 for migration guide.")
1364313547

@@ -18412,29 +18316,6 @@ type UpdateVFSStoragePayload
1841218316
vfsStorage: VFSStorage!
1841318317
}
1841418318

18415-
"""
18416-
Added in 24.09.0. Input for creating or updating domain-level app configuration.
18417-
The provided extra_config object will completely replace the existing configuration;
18418-
existing keys not present in the new extra_config will be removed.
18419-
All users in this domain will be affected by these settings when their configurations are merged.
18420-
"""
18421-
input UpsertDomainConfigInput
18422-
@join__type(graph: STRAWBERRY)
18423-
{
18424-
domainName: String!
18425-
extraConfig: JSON!
18426-
}
18427-
18428-
"""
18429-
Added in 25.16.0. Payload returned after upserting domain-level app configuration. Contains the resulting configuration that was stored.
18430-
"""
18431-
type UpsertDomainConfigPayload
18432-
@join__type(graph: STRAWBERRY)
18433-
{
18434-
"""The resulting app configuration"""
18435-
appConfig: AppConfig!
18436-
}
18437-
1843818319
"""
1843918320
Added in 26.1.0. Input for upserting domain fair share weight. The weight parameter affects scheduling priority - higher weight = higher priority. Set weight to null to use resource group's default_weight.
1844018321
"""
@@ -18492,30 +18373,6 @@ type UpsertProjectFairShareWeightPayload
1849218373
projectFairShare: ProjectFairShare!
1849318374
}
1849418375

18495-
"""
18496-
Added in 24.09.0. Input for creating or updating user-level app configuration.
18497-
The provided extra_config object will completely replace the existing configuration;
18498-
existing keys not present in the new extra_config will be removed.
18499-
These settings will override domain-level settings when configurations are merged for this user.
18500-
If user_id is not provided, the current user's configuration will be updated.
18501-
"""
18502-
input UpsertUserConfigInput
18503-
@join__type(graph: STRAWBERRY)
18504-
{
18505-
extraConfig: JSON!
18506-
userId: ID = null
18507-
}
18508-
18509-
"""
18510-
Added in 25.16.0. Payload returned after upserting user-level app configuration. Contains the resulting configuration that was stored.
18511-
"""
18512-
type UpsertUserConfigPayload
18513-
@join__type(graph: STRAWBERRY)
18514-
{
18515-
"""The resulting app configuration"""
18516-
appConfig: AppConfig!
18517-
}
18518-
1851918376
"""
1852018377
Added in 26.1.0. Input for upserting user fair share weight. The weight parameter affects scheduling priority - higher weight = higher priority. Set weight to null to use resource group's default_weight.
1852118378
"""

0 commit comments

Comments
 (0)