File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 22
33from aiohasupervisor .models .addons import (
44 AddonBoot ,
5+ AddonBootConfig ,
56 AddonsConfigValidate ,
67 AddonsOptions ,
78 AddonsSecurityOptions ,
4243 "AvailableUpdate" ,
4344 "AddonStage" ,
4445 "AddonBoot" ,
46+ "AddonBootConfig" ,
4547 "CpuArch" ,
4648 "Capability" ,
4749 "AppArmor" ,
Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ class AddonStage(StrEnum):
2020 DEPRECATED = "deprecated"
2121
2222
23+ class AddonBootConfig (StrEnum ):
24+ """AddonBootConfig type."""
25+
26+ AUTO = "auto"
27+ MANUAL = "manual"
28+ MANUAL_ONLY = "manual_only"
29+
30+
2331class AddonBoot (StrEnum ):
2432 """AddonBoot type."""
2533
@@ -197,6 +205,7 @@ class InstalledAddonComplete(
197205 dns : list [str ]
198206 protected : bool
199207 boot : AddonBoot
208+ boot_config : AddonBootConfig
200209 options : dict [str , Any ]
201210 schema : list [dict [str , Any ]] | None
202211 machine : list [str ]
Original file line number Diff line number Diff line change 1414 "protected" : true ,
1515 "rating" : 7 ,
1616 "boot" : " auto" ,
17+ "boot_config" : " auto" ,
1718 "options" : {
1819 "authorized_keys" : [],
1920 "password" : " " ,
You can’t perform that action at this time.
0 commit comments