api: update image-builder api

This commit is contained in:
Anna Vítová 2024-11-22 18:05:24 +02:00 committed by Klara Simickova
parent f48e1bfcb5
commit 5cfab75813
3 changed files with 7141 additions and 6985 deletions

File diff suppressed because it is too large Load diff

View file

@ -1081,6 +1081,7 @@ components:
required: required:
- parent_id - parent_id
- exported_at - exported_at
- is_on_prem
properties: properties:
parent_id: parent_id:
type: string type: string
@ -1088,6 +1089,9 @@ components:
nullable: true nullable: true
exported_at: exported_at:
type: string type: string
is_on_prem:
type: boolean
default: false
Distributions: Distributions:
type: string type: string
description: | description: |

View file

@ -728,6 +728,7 @@ export type Customizations = {
export type BlueprintMetadata = { export type BlueprintMetadata = {
parent_id: string | null; parent_id: string | null;
exported_at: string; exported_at: string;
is_on_prem: boolean;
}; };
export type CreateBlueprintRequest = { export type CreateBlueprintRequest = {
name: string; name: string;