File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from aiohasupervisor .models .addons import (
4
4
AddonBoot ,
5
+ AddonBootConfig ,
5
6
AddonsConfigValidate ,
6
7
AddonsOptions ,
7
8
AddonsSecurityOptions ,
42
43
"AvailableUpdate" ,
43
44
"AddonStage" ,
44
45
"AddonBoot" ,
46
+ "AddonBootConfig" ,
45
47
"CpuArch" ,
46
48
"Capability" ,
47
49
"AppArmor" ,
Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ class AddonStage(StrEnum):
20
20
DEPRECATED = "deprecated"
21
21
22
22
23
+ class AddonBootConfig (StrEnum ):
24
+ """AddonBootConfig type."""
25
+
26
+ AUTO = "auto"
27
+ MANUAL = "manual"
28
+ MANUAL_ONLY = "manual_only"
29
+
30
+
23
31
class AddonBoot (StrEnum ):
24
32
"""AddonBoot type."""
25
33
@@ -197,6 +205,7 @@ class InstalledAddonComplete(
197
205
dns : list [str ]
198
206
protected : bool
199
207
boot : AddonBoot
208
+ boot_config : AddonBootConfig
200
209
options : dict [str , Any ]
201
210
schema : list [dict [str , Any ]] | None
202
211
machine : list [str ]
Original file line number Diff line number Diff line change 14
14
"protected" : true ,
15
15
"rating" : 7 ,
16
16
"boot" : " auto" ,
17
+ "boot_config" : " auto" ,
17
18
"options" : {
18
19
"authorized_keys" : [],
19
20
"password" : " " ,
You can’t perform that action at this time.
0 commit comments