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
@@ -199,6 +211,16 @@ export type GetDistributionsApiArg = {
199
211
*/
200
212
type?: string;
201
213
};
214
+
exporttypeGetDistributionApiResponse=
215
+
/** status 200 Distribution details */DistributionDetails;
216
+
exporttypeGetDistributionApiArg={
217
+
/** Name of the distribution */
218
+
distro: string;
219
+
/** Filter by image type. Multiple values can be specified. */
220
+
imageType?: string[];
221
+
/** Filter by architecture. Multiple values can be specified. */
222
+
architecture?: string[];
223
+
};
202
224
exporttypeGetArchitecturesApiResponse=
203
225
/** status 200 a list of available architectures and their associated image types */Architectures;
204
226
exporttypeGetArchitecturesApiArg={
@@ -369,6 +391,135 @@ export type DistributionsResponse = (
369
391
|BootcDistributionItem
370
392
)[];
371
393
exporttypeDistributionKind="bootc";
394
+
exporttypePartitionType="gpt"|"dos";
395
+
exporttypeMinsize=string;
396
+
exporttypeFilesystemTyped={
397
+
type?: "plain"|undefined;
398
+
/** The partition type GUID for GPT partitions. For DOS partitions, this field can be used to set the (2 hex digit) partition type. If not set, the type will be automatically set based on the mountpoint or the payload type.
399
+
*/
400
+
part_type?: string|undefined;
401
+
minsize?: Minsize|undefined;
402
+
mountpoint?: string|undefined;
403
+
label?: string|undefined;
404
+
/** The filesystem type. Swap partitions must have an empty mountpoint.
405
+
*/
406
+
fs_type: "ext4"|"xfs"|"vfat"|"swap";
407
+
};
408
+
exporttypeBtrfsSubvolume={
409
+
/** The name of the subvolume, which defines the location (path) on the root volume
410
+
*/
411
+
name: string;
412
+
/** Mountpoint for the subvolume
413
+
*/
414
+
mountpoint: string;
415
+
};
416
+
exporttypeBtrfsVolume={
417
+
type: "btrfs";
418
+
/** The partition type GUID for GPT partitions. For DOS partitions, this field can be used to set the (2 hex digit) partition type. If not set, the type will be automatically set based on the mountpoint or the payload type.
419
+
*/
420
+
part_type?: string|undefined;
421
+
minsize?: Minsize|undefined;
422
+
subvolumes: BtrfsSubvolume[];
423
+
};
424
+
exporttypeLogicalVolume={
425
+
name?: string|undefined;
426
+
minsize?: Minsize|undefined;
427
+
/** Mountpoint for the logical volume
428
+
*/
429
+
mountpoint?: string|undefined;
430
+
label?: string|undefined;
431
+
/** The filesystem type for the logical volume. Swap LVs must have an empty mountpoint.
432
+
*/
433
+
fs_type: "ext4"|"xfs"|"vfat"|"swap";
434
+
};
435
+
exporttypeVolumeGroup={
436
+
type: "lvm";
437
+
/** The partition type GUID for GPT partitions. For DOS partitions, this field can be used to set the (2 hex digit) partition type. If not set, the type will be automatically set based on the mountpoint or the payload type.
438
+
*/
439
+
part_type?: string|undefined;
440
+
/** Volume group name (will be automatically generated if omitted)
/** Package set names safe for custom packages via custom repos */
476
+
payload_package_sets?: string[]|undefined;
477
+
/** Names of stages that produce the build output */
478
+
exports?: string[]|undefined;
479
+
/** Customization options required by this image type */
480
+
required_blueprint_options?: string[]|undefined;
481
+
/** Customization options supported by this image type */
482
+
supported_blueprint_options?: string[]|undefined;
483
+
};
484
+
exporttypeArchitectureInfo={
485
+
/** Architecture name */
486
+
name: string;
487
+
/** Map of image type names to their details */
488
+
image_types?:
489
+
|{
490
+
[key: string]: ImageTypeInfo;
491
+
}
492
+
|undefined;
493
+
};
494
+
exporttypeDistributionDetails={
495
+
/** Name of the distribution */
496
+
name: string;
497
+
/** Codename of the distribution */
498
+
codename?: string|undefined;
499
+
/** Release version used in repo files */
500
+
releasever?: string|undefined;
501
+
/** Full OS version including minor version */
502
+
os_version?: string|undefined;
503
+
/** Module platform ID for DNF modularity */
504
+
module_platform_id?: string|undefined;
505
+
/** Product name */
506
+
product?: string|undefined;
507
+
/** Default OSTree reference template */
508
+
ostree_ref?: string|undefined;
509
+
/** Map of architecture names to their details */
510
+
architectures?:
511
+
|{
512
+
[key: string]: ArchitectureInfo;
513
+
}
514
+
|undefined;
515
+
};
516
+
exporttypeHttpError={
517
+
title: string;
518
+
detail: string;
519
+
};
520
+
exporttypeHttpErrorList={
521
+
errors: HttpError[];
522
+
};
372
523
exporttypeRepository={
373
524
/** An ID referring to a repository defined in content sources can be used instead of
374
525
'baseurl', 'mirrorlist' or 'metalink'.
@@ -393,13 +544,6 @@ export type ArchitectureItem = {
393
544
repositories: Repository[];
394
545
};
395
546
exporttypeArchitectures=ArchitectureItem[];
396
-
exporttypeHttpError={
397
-
title: string;
398
-
detail: string;
399
-
};
400
-
exporttypeHttpErrorList={
401
-
errors: HttpError[];
402
-
};
403
547
exporttypeDistributions=
404
548
|"rhel-8"
405
549
|"rhel-8-nightly"
@@ -697,65 +841,6 @@ export type Filesystem = {
697
841
/** size of the filesystem in bytes */
698
842
min_size: any;
699
843
};
700
-
exporttypeMinsize=string;
701
-
exporttypeFilesystemTyped={
702
-
type?: "plain"|undefined;
703
-
/** The partition type GUID for GPT partitions. For DOS partitions, this field can be used to set the (2 hex digit) partition type. If not set, the type will be automatically set based on the mountpoint or the payload type.
704
-
*/
705
-
part_type?: string|undefined;
706
-
minsize?: Minsize|undefined;
707
-
mountpoint?: string|undefined;
708
-
label?: string|undefined;
709
-
/** The filesystem type. Swap partitions must have an empty mountpoint.
710
-
*/
711
-
fs_type: "ext4"|"xfs"|"vfat"|"swap";
712
-
};
713
-
exporttypeBtrfsSubvolume={
714
-
/** The name of the subvolume, which defines the location (path) on the root volume
715
-
*/
716
-
name: string;
717
-
/** Mountpoint for the subvolume
718
-
*/
719
-
mountpoint: string;
720
-
};
721
-
exporttypeBtrfsVolume={
722
-
type: "btrfs";
723
-
/** The partition type GUID for GPT partitions. For DOS partitions, this field can be used to set the (2 hex digit) partition type. If not set, the type will be automatically set based on the mountpoint or the payload type.
724
-
*/
725
-
part_type?: string|undefined;
726
-
minsize?: Minsize|undefined;
727
-
subvolumes: BtrfsSubvolume[];
728
-
};
729
-
exporttypeLogicalVolume={
730
-
name?: string|undefined;
731
-
minsize?: Minsize|undefined;
732
-
/** Mountpoint for the logical volume
733
-
*/
734
-
mountpoint?: string|undefined;
735
-
label?: string|undefined;
736
-
/** The filesystem type for the logical volume. Swap LVs must have an empty mountpoint.
737
-
*/
738
-
fs_type: "ext4"|"xfs"|"vfat"|"swap";
739
-
};
740
-
exporttypeVolumeGroup={
741
-
type: "lvm";
742
-
/** The partition type GUID for GPT partitions. For DOS partitions, this field can be used to set the (2 hex digit) partition type. If not set, the type will be automatically set based on the mountpoint or the payload type.
743
-
*/
744
-
part_type?: string|undefined;
745
-
/** Volume group name (will be automatically generated if omitted)
0 commit comments