@@ -128,7 +128,7 @@ type Query {
128128 """Added in 24.03.1"""
129129 id : String
130130 reference : String
131- architecture : String = " x86_64 "
131+ architecture : String = " aarch64 "
132132 ): Image
133133 images (
134134 """
@@ -608,7 +608,7 @@ type ImageNode implements Node @key(fields: "id") {
608608 type : ImageType
609609}
610610
611- type KVPair {
611+ type KVPair @shareable {
612612 key : String
613613 value : String
614614}
@@ -619,7 +619,7 @@ to support integers outside the range of a signed 32-bit integer.
619619"""
620620scalar BigInt
621621
622- type ResourceLimit {
622+ type ResourceLimit @shareable {
623623 key : String
624624 min : String
625625 max : String
@@ -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 = " x86_64 " , props : ModifyImageInput ! , target : String ! ): ModifyImage
2286+ modify_image (architecture : String = " aarch64 " , 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 = " x86_64 " , reference : String ! ): ForgetImage @deprecated (reason : " 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." )
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 = " x86_64 " , target : String ! ): AliasImage
2307+ alias_image (alias : String ! , architecture : String = " aarch64 " , 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."""
28772877input ClearImageCustomResourceLimitKey {
28782878 image_canonical : String !
2879- architecture : String ! = "x86_64 "
2879+ architecture : String ! = "aarch64 "
28802880}
28812881
28822882"""Added in 24.03.0."""
0 commit comments