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
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
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
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
10473
10417
"""
@@ -10563,16 +10507,6 @@ type Mutation
10563
10507
"""Added in 26.4.2. Validate a notification rule (admin only)"""
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
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
"""Added in 26.4.2. Create a new notification channel"""
10577
10511
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.")
10578
10512
@@ -10597,16 +10531,6 @@ type Mutation
10597
10531
"""Added in 26.4.2. Validate a notification rule"""
10598
10532
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.")
10599
10533
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.")
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)
13247
13171
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.
"""Added in 26.4.2. List notification rules (admin only)"""
13378
13292
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)
13379
13293
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.
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.")
13635
13544
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
-
13641
13545
"""Added in 26.1.0. Get domain fair share data (superadmin only)."""
13642
13546
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.")
13643
13547
@@ -18412,29 +18316,6 @@ type UpdateVFSStoragePayload
18412
18316
vfsStorage: VFSStorage!
18413
18317
}
18414
18318
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
-
18438
18319
"""
18439
18320
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.
18440
18321
"""
@@ -18492,30 +18373,6 @@ type UpsertProjectFairShareWeightPayload
18492
18373
projectFairShare: ProjectFairShare!
18493
18374
}
18494
18375
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
-
18519
18376
"""
18520
18377
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.
0 commit comments