Skip to content

Commit

Permalink
chore: update GraphQL schema dump
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine authored and github-actions[bot] committed Aug 4, 2024
1 parent fe6820e commit 88562c8
Showing 1 changed file with 57 additions and 9 deletions.
66 changes: 57 additions & 9 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,9 @@ type Mutations {
disassociate_all_scaling_groups_with_group(user_group: UUID!): DisassociateAllScalingGroupsWithGroup
set_quota_scope(props: QuotaScopeInput!, quota_scope_id: String!, storage_host_name: String!): SetQuotaScope
unset_quota_scope(quota_scope_id: String!, storage_host_name: String!): UnsetQuotaScope
create_container_registry(

"""Added in 24.09.0."""
create_container_registry_node(

Check notice on line 1257 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'create_container_registry_node' was added to object type 'Mutations'

Field 'create_container_registry_node' was added to object type 'Mutations'
"""Added in 24.09.0."""
is_global: Boolean

Expand All @@ -1278,8 +1280,10 @@ type Mutations {

"""Added in 24.09.0."""
username: String
): CreateContainerRegistry
modify_container_registry(
): CreateContainerRegistryNode

"""Added in 24.09.0."""
modify_container_registry_node(

Check notice on line 1286 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'modify_container_registry_node' was added to object type 'Mutations'

Field 'modify_container_registry_node' was added to object type 'Mutations'
"""Object id. Can be either global id or object id. Added in 24.09.0."""
id: String!

Expand Down Expand Up @@ -1308,11 +1312,16 @@ type Mutations {

"""Added in 24.09.0."""
username: String
): ModifyContainerRegistry
delete_container_registry(
): ModifyContainerRegistryNode

"""Added in 24.09.0."""
delete_container_registry_node(

Check notice on line 1318 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'delete_container_registry_node' was added to object type 'Mutations'

Field 'delete_container_registry_node' was added to object type 'Mutations'
"""Object id. Can be either global id or object id. Added in 24.09.0."""
id: String!
): DeleteContainerRegistry
): DeleteContainerRegistryNode
create_container_registry(hostname: String!, props: CreateContainerRegistryInput!): CreateContainerRegistry
modify_container_registry(hostname: String!, props: ModifyContainerRegistryInput!): ModifyContainerRegistry
delete_container_registry(hostname: String!): DeleteContainerRegistry
modify_endpoint(endpoint_id: UUID!, props: ModifyEndpointInput!): ModifyEndpoint
}

Expand Down Expand Up @@ -1916,18 +1925,57 @@ type UnsetQuotaScope {
quota_scope: QuotaScope
}

type CreateContainerRegistry {
"""Added in 24.09.0."""
type CreateContainerRegistryNode {

Check notice on line 1929 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'CreateContainerRegistryNode' was added

Type 'CreateContainerRegistryNode' was added
container_registry: ContainerRegistryNode
}

type ModifyContainerRegistry {
"""Added in 24.09.0."""
type ModifyContainerRegistryNode {

Check notice on line 1934 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'ModifyContainerRegistryNode' was added

Type 'ModifyContainerRegistryNode' was added
container_registry: ContainerRegistryNode
}

type DeleteContainerRegistry {
"""Added in 24.09.0."""
type DeleteContainerRegistryNode {

Check notice on line 1939 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'DeleteContainerRegistryNode' was added

Type 'DeleteContainerRegistryNode' was added
container_registry: ContainerRegistryNode
}

type CreateContainerRegistry {
container_registry: ContainerRegistry
}

input CreateContainerRegistryInput {
url: String!
type: String!
project: [String]
username: String
password: String
ssl_verify: Boolean

"""Added in 24.09.0."""
is_global: Boolean
}

type ModifyContainerRegistry {
container_registry: ContainerRegistry
}

input ModifyContainerRegistryInput {
url: String
type: String
project: [String]
username: String
password: String
ssl_verify: Boolean

"""Added in 24.09.0."""
is_global: Boolean
}

type DeleteContainerRegistry {
container_registry: ContainerRegistry
}

type ModifyEndpoint {
ok: Boolean
msg: String
Expand Down

0 comments on commit 88562c8

Please sign in to comment.