Skip to content

Commit be3353f

Browse files
chore: update api schema dump
Co-authored-by: octodog <[email protected]>
1 parent 5b7bfd0 commit be3353f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/manager/graphql-reference/schema.graphql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ type Query {
128128
"""Added in 24.03.1"""
129129
id: String
130130
reference: String
131-
architecture: String = "aarch64"
131+
architecture: String = "x86_64"
132132
): Image
133133
images(
134134
"""
@@ -2283,7 +2283,7 @@ type Mutation {
22832283
): RescanImages
22842284
preload_image(references: [String]!, target_agents: [String]!): PreloadImage
22852285
unload_image(references: [String]!, target_agents: [String]!): UnloadImage
2286-
modify_image(architecture: String = "aarch64", props: ModifyImageInput!, target: String!): ModifyImage
2286+
modify_image(architecture: String = "x86_64", props: ModifyImageInput!, target: String!): ModifyImage
22872287

22882288
"""Added in 25.6.0"""
22892289
clear_image_custom_resource_limit(key: ClearImageCustomResourceLimitKey!): ClearImageCustomResourceLimitPayload
@@ -2292,7 +2292,7 @@ type Mutation {
22922292
forget_image_by_id(image_id: String!): ForgetImageById
22932293

22942294
"""Deprecated since 25.4.0. Use `forget_image_by_id` instead."""
2295-
forget_image(architecture: String = "aarch64", reference: String!): ForgetImage @deprecated(reason: "Deprecated since 25.4.0. Use `forget_image_by_id` instead.")
2295+
forget_image(architecture: String = "x86_64", reference: String!): ForgetImage @deprecated(reason: "Deprecated since 25.4.0. Use `forget_image_by_id` instead.")
22962296

22972297
"""Added in 25.4.0"""
22982298
purge_image_by_id(
@@ -2304,7 +2304,7 @@ type Mutation {
23042304

23052305
"""Added in 24.03.1"""
23062306
untag_image_from_registry(image_id: String!): UntagImageFromRegistry
2307-
alias_image(alias: String!, architecture: String = "aarch64", target: String!): AliasImage
2307+
alias_image(alias: String!, architecture: String = "x86_64", target: String!): AliasImage
23082308
dealias_image(alias: String!): DealiasImage
23092309
clear_images(registry: String): ClearImages
23102310

@@ -2876,7 +2876,7 @@ type ClearImageCustomResourceLimitPayload {
28762876
"""Added in 25.6.0."""
28772877
input ClearImageCustomResourceLimitKey {
28782878
image_canonical: String!
2879-
architecture: String! = "aarch64"
2879+
architecture: String! = "x86_64"
28802880
}
28812881

28822882
"""Added in 24.03.0."""

docs/manager/rest-reference/openapi.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4679,9 +4679,9 @@
46794679
"description": "\n**Preconditions:**\n* User privilege required.\n"
46804680
}
46814681
},
4682-
"//gql": {
4682+
"//gql/graphene": {
46834683
"post": {
4684-
"operationId": "root.handle_gql",
4684+
"operationId": "root.handle_gql_graphene",
46854685
"tags": [
46864686
"root"
46874687
],
@@ -4725,9 +4725,9 @@
47254725
"description": "\n**Preconditions:**\n* User privilege required.\n"
47264726
}
47274727
},
4728-
"//gql/v2": {
4728+
"//gql/strawberry": {
47294729
"post": {
4730-
"operationId": "root.handle_gql_v2",
4730+
"operationId": "root.handle_gql_strawberry",
47314731
"tags": [
47324732
"root"
47334733
],
@@ -4747,7 +4747,7 @@
47474747
},
47484748
"/spec/graphiql": {
47494749
"get": {
4750-
"operationId": "spec.render_graphiql_html",
4750+
"operationId": "spec.render_graphiql_graphene_html",
47514751
"tags": [
47524752
"spec"
47534753
],
@@ -4765,9 +4765,9 @@
47654765
"description": "\n**Preconditions:**\n* User privilege required.\n"
47664766
}
47674767
},
4768-
"/spec/graphiql/v2": {
4768+
"/spec/graphiql/strawberry": {
47694769
"get": {
4770-
"operationId": "spec.render_graphiql_v2_html",
4770+
"operationId": "spec.render_graphiql_strawberry_html",
47714771
"tags": [
47724772
"spec"
47734773
],

0 commit comments

Comments
 (0)