pmcf 3.0.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/base.mjs +9 -9
- package/src/cluster.mjs +5 -5
- package/src/extra-source-service.mjs +1 -1
- package/src/host.mjs +19 -19
- package/src/location.mjs +1 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/network-interface.mjs +6 -6
- package/src/network-support.mjs +14 -14
- package/src/network.mjs +2 -2
- package/src/owner.mjs +11 -11
- package/src/service.mjs +7 -7
- package/src/services/bind.mjs +18 -18
- package/src/services/chrony.mjs +0 -1
- package/src/services/kea.mjs +47 -6
- package/src/services/openldap.mjs +3 -3
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +2 -2
- package/types/base.d.mts +8 -14
- package/types/cluster.d.mts +58 -95
- package/types/extra-source-service.d.mts +22 -37
- package/types/host.d.mts +32 -56
- package/types/location.d.mts +43 -70
- package/types/network-interfaces/ethernet.d.mts +56 -96
- package/types/network-interfaces/loopback.d.mts +54 -94
- package/types/network-interfaces/network-interface.d.mts +54 -94
- package/types/network-interfaces/wireguard.d.mts +54 -94
- package/types/network-interfaces/wlan.d.mts +82 -142
- package/types/network-support.d.mts +16 -27
- package/types/network.d.mts +31 -50
- package/types/owner.d.mts +21 -34
- package/types/root.d.mts +43 -70
- package/types/service.d.mts +44 -77
- package/types/services/bind.d.mts +59 -101
- package/types/services/chrony.d.mts +41 -71
- package/types/services/influxdb.d.mts +40 -70
- package/types/services/kea.d.mts +122 -71
- package/types/services/mosquitto.d.mts +40 -70
- package/types/services/openldap.d.mts +43 -76
- package/types/services/systemd-journal-remote.d.mts +40 -70
- package/types/services/systemd-journal-upload.d.mts +41 -72
- package/types/services/systemd-journal.d.mts +40 -70
- package/types/services/systemd-resolved.d.mts +40 -70
- package/types/services/systemd-timesyncd.d.mts +40 -70
- package/types/subnet.d.mts +2 -2
|
@@ -7,7 +7,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
7
7
|
namespace source {
|
|
8
8
|
let type: string;
|
|
9
9
|
let collection: boolean;
|
|
10
|
-
let
|
|
10
|
+
let writable: boolean;
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -26,14 +26,13 @@ export class ExtraSourceService extends Service {
|
|
|
26
26
|
owner: {
|
|
27
27
|
type: string;
|
|
28
28
|
collection: boolean;
|
|
29
|
-
|
|
29
|
+
writable: boolean;
|
|
30
30
|
};
|
|
31
31
|
type: import("pacc").AttributeDefinition;
|
|
32
32
|
name: {
|
|
33
33
|
isKey: boolean;
|
|
34
|
-
writeable: boolean;
|
|
35
|
-
type: string;
|
|
36
34
|
writable: boolean;
|
|
35
|
+
type: string;
|
|
37
36
|
mandatory: boolean;
|
|
38
37
|
collection: boolean;
|
|
39
38
|
private?: boolean;
|
|
@@ -46,10 +45,9 @@ export class ExtraSourceService extends Service {
|
|
|
46
45
|
env?: string[] | string;
|
|
47
46
|
};
|
|
48
47
|
description: {
|
|
49
|
-
|
|
48
|
+
writable: boolean;
|
|
50
49
|
type: string;
|
|
51
50
|
isKey: boolean;
|
|
52
|
-
writable: boolean;
|
|
53
51
|
mandatory: boolean;
|
|
54
52
|
collection: boolean;
|
|
55
53
|
private?: boolean;
|
|
@@ -64,13 +62,12 @@ export class ExtraSourceService extends Service {
|
|
|
64
62
|
priority: {
|
|
65
63
|
type: string;
|
|
66
64
|
collection: boolean;
|
|
67
|
-
|
|
65
|
+
writable: boolean;
|
|
68
66
|
};
|
|
69
67
|
directory: {
|
|
70
|
-
|
|
68
|
+
writable: boolean;
|
|
71
69
|
type: string;
|
|
72
70
|
isKey: boolean;
|
|
73
|
-
writable: boolean;
|
|
74
71
|
mandatory: boolean;
|
|
75
72
|
collection: boolean;
|
|
76
73
|
private?: boolean;
|
|
@@ -83,10 +80,9 @@ export class ExtraSourceService extends Service {
|
|
|
83
80
|
env?: string[] | string;
|
|
84
81
|
};
|
|
85
82
|
packaging: {
|
|
86
|
-
|
|
83
|
+
writable: boolean;
|
|
87
84
|
type: string;
|
|
88
85
|
isKey: boolean;
|
|
89
|
-
writable: boolean;
|
|
90
86
|
mandatory: boolean;
|
|
91
87
|
collection: boolean;
|
|
92
88
|
private?: boolean;
|
|
@@ -99,11 +95,10 @@ export class ExtraSourceService extends Service {
|
|
|
99
95
|
env?: string[] | string;
|
|
100
96
|
};
|
|
101
97
|
disabled: {
|
|
102
|
-
|
|
98
|
+
writable: boolean;
|
|
103
99
|
default: boolean;
|
|
104
100
|
type: string;
|
|
105
101
|
isKey: boolean;
|
|
106
|
-
writable: boolean;
|
|
107
102
|
mandatory: boolean;
|
|
108
103
|
collection: boolean;
|
|
109
104
|
private?: boolean;
|
|
@@ -116,10 +111,9 @@ export class ExtraSourceService extends Service {
|
|
|
116
111
|
};
|
|
117
112
|
tags: {
|
|
118
113
|
collection: boolean;
|
|
119
|
-
|
|
114
|
+
writable: boolean;
|
|
120
115
|
type: string;
|
|
121
116
|
isKey: boolean;
|
|
122
|
-
writable: boolean;
|
|
123
117
|
mandatory: boolean;
|
|
124
118
|
private?: boolean;
|
|
125
119
|
depends?: string;
|
|
@@ -136,10 +130,9 @@ export class ExtraSourceService extends Service {
|
|
|
136
130
|
factoryFor(owner: any, value: any): any;
|
|
137
131
|
properties: {
|
|
138
132
|
alias: {
|
|
139
|
-
|
|
133
|
+
writable: boolean;
|
|
140
134
|
type: string;
|
|
141
135
|
isKey: boolean;
|
|
142
|
-
writable: boolean;
|
|
143
136
|
mandatory: boolean;
|
|
144
137
|
collection: boolean;
|
|
145
138
|
private?: boolean;
|
|
@@ -154,25 +147,24 @@ export class ExtraSourceService extends Service {
|
|
|
154
147
|
weight: {
|
|
155
148
|
type: string;
|
|
156
149
|
collection: boolean;
|
|
157
|
-
|
|
150
|
+
writable: boolean;
|
|
158
151
|
default: number;
|
|
159
152
|
};
|
|
160
153
|
systemd: {
|
|
161
154
|
type: string;
|
|
162
155
|
collection: boolean;
|
|
163
|
-
|
|
156
|
+
writable: boolean;
|
|
164
157
|
};
|
|
165
158
|
port: {
|
|
166
159
|
type: string;
|
|
167
160
|
collection: boolean;
|
|
168
|
-
|
|
161
|
+
writable: boolean;
|
|
169
162
|
};
|
|
170
163
|
protocol: {
|
|
171
|
-
|
|
164
|
+
writable: boolean;
|
|
172
165
|
values: string[];
|
|
173
166
|
type: string;
|
|
174
167
|
isKey: boolean;
|
|
175
|
-
writable: boolean;
|
|
176
168
|
mandatory: boolean;
|
|
177
169
|
collection: boolean;
|
|
178
170
|
private?: boolean;
|
|
@@ -185,10 +177,9 @@ export class ExtraSourceService extends Service {
|
|
|
185
177
|
env?: string[] | string;
|
|
186
178
|
};
|
|
187
179
|
type: {
|
|
188
|
-
|
|
180
|
+
writable: boolean;
|
|
189
181
|
type: string;
|
|
190
182
|
isKey: boolean;
|
|
191
|
-
writable: boolean;
|
|
192
183
|
mandatory: boolean;
|
|
193
184
|
collection: boolean;
|
|
194
185
|
private?: boolean;
|
|
@@ -216,10 +207,9 @@ export class ExtraSourceService extends Service {
|
|
|
216
207
|
env?: string[] | string;
|
|
217
208
|
};
|
|
218
209
|
tls: {
|
|
219
|
-
|
|
210
|
+
writable: boolean;
|
|
220
211
|
type: string;
|
|
221
212
|
isKey: boolean;
|
|
222
|
-
writable: boolean;
|
|
223
213
|
mandatory: boolean;
|
|
224
214
|
collection: boolean;
|
|
225
215
|
private?: boolean;
|
|
@@ -232,10 +222,9 @@ export class ExtraSourceService extends Service {
|
|
|
232
222
|
env?: string[] | string;
|
|
233
223
|
};
|
|
234
224
|
hostName: {
|
|
235
|
-
|
|
225
|
+
writable: boolean;
|
|
236
226
|
type: string;
|
|
237
227
|
isKey: boolean;
|
|
238
|
-
writable: boolean;
|
|
239
228
|
mandatory: boolean;
|
|
240
229
|
collection: boolean;
|
|
241
230
|
private?: boolean;
|
|
@@ -249,10 +238,9 @@ export class ExtraSourceService extends Service {
|
|
|
249
238
|
};
|
|
250
239
|
cidrAddresses: {
|
|
251
240
|
collection: boolean;
|
|
252
|
-
|
|
241
|
+
writable: boolean;
|
|
253
242
|
type: string;
|
|
254
243
|
isKey: boolean;
|
|
255
|
-
writable: boolean;
|
|
256
244
|
mandatory: boolean;
|
|
257
245
|
private?: boolean;
|
|
258
246
|
depends?: string;
|
|
@@ -264,10 +252,9 @@ export class ExtraSourceService extends Service {
|
|
|
264
252
|
env?: string[] | string;
|
|
265
253
|
};
|
|
266
254
|
cidrAddress: {
|
|
267
|
-
|
|
255
|
+
writable: boolean;
|
|
268
256
|
type: string;
|
|
269
257
|
isKey: boolean;
|
|
270
|
-
writable: boolean;
|
|
271
258
|
mandatory: boolean;
|
|
272
259
|
collection: boolean;
|
|
273
260
|
private?: boolean;
|
|
@@ -281,10 +268,9 @@ export class ExtraSourceService extends Service {
|
|
|
281
268
|
};
|
|
282
269
|
addresses: {
|
|
283
270
|
collection: boolean;
|
|
284
|
-
|
|
271
|
+
writable: boolean;
|
|
285
272
|
type: string;
|
|
286
273
|
isKey: boolean;
|
|
287
|
-
writable: boolean;
|
|
288
274
|
mandatory: boolean;
|
|
289
275
|
private?: boolean;
|
|
290
276
|
depends?: string;
|
|
@@ -296,10 +282,9 @@ export class ExtraSourceService extends Service {
|
|
|
296
282
|
env?: string[] | string;
|
|
297
283
|
};
|
|
298
284
|
address: {
|
|
299
|
-
|
|
285
|
+
writable: boolean;
|
|
300
286
|
type: string;
|
|
301
287
|
isKey: boolean;
|
|
302
|
-
writable: boolean;
|
|
303
288
|
mandatory: boolean;
|
|
304
289
|
collection: boolean;
|
|
305
290
|
private?: boolean;
|
|
@@ -318,7 +303,7 @@ export class ExtraSourceService extends Service {
|
|
|
318
303
|
source: {
|
|
319
304
|
type: string;
|
|
320
305
|
collection: boolean;
|
|
321
|
-
|
|
306
|
+
writable: boolean;
|
|
322
307
|
};
|
|
323
308
|
};
|
|
324
309
|
};
|
package/types/host.d.mts
CHANGED
|
@@ -10,14 +10,13 @@ export class Host extends ServiceOwner {
|
|
|
10
10
|
owner: {
|
|
11
11
|
type: string;
|
|
12
12
|
collection: boolean;
|
|
13
|
-
|
|
13
|
+
writable: boolean;
|
|
14
14
|
};
|
|
15
15
|
type: import("pacc").AttributeDefinition;
|
|
16
16
|
name: {
|
|
17
17
|
isKey: boolean;
|
|
18
|
-
writeable: boolean;
|
|
19
|
-
type: string;
|
|
20
18
|
writable: boolean;
|
|
19
|
+
type: string;
|
|
21
20
|
mandatory: boolean;
|
|
22
21
|
collection: boolean;
|
|
23
22
|
private?: boolean;
|
|
@@ -30,10 +29,9 @@ export class Host extends ServiceOwner {
|
|
|
30
29
|
env?: string[] | string;
|
|
31
30
|
};
|
|
32
31
|
description: {
|
|
33
|
-
|
|
32
|
+
writable: boolean;
|
|
34
33
|
type: string;
|
|
35
34
|
isKey: boolean;
|
|
36
|
-
writable: boolean;
|
|
37
35
|
mandatory: boolean;
|
|
38
36
|
collection: boolean;
|
|
39
37
|
private?: boolean;
|
|
@@ -48,13 +46,12 @@ export class Host extends ServiceOwner {
|
|
|
48
46
|
priority: {
|
|
49
47
|
type: string;
|
|
50
48
|
collection: boolean;
|
|
51
|
-
|
|
49
|
+
writable: boolean;
|
|
52
50
|
};
|
|
53
51
|
directory: {
|
|
54
|
-
|
|
52
|
+
writable: boolean;
|
|
55
53
|
type: string;
|
|
56
54
|
isKey: boolean;
|
|
57
|
-
writable: boolean;
|
|
58
55
|
mandatory: boolean;
|
|
59
56
|
collection: boolean;
|
|
60
57
|
private?: boolean;
|
|
@@ -67,10 +64,9 @@ export class Host extends ServiceOwner {
|
|
|
67
64
|
env?: string[] | string;
|
|
68
65
|
};
|
|
69
66
|
packaging: {
|
|
70
|
-
|
|
67
|
+
writable: boolean;
|
|
71
68
|
type: string;
|
|
72
69
|
isKey: boolean;
|
|
73
|
-
writable: boolean;
|
|
74
70
|
mandatory: boolean;
|
|
75
71
|
collection: boolean;
|
|
76
72
|
private?: boolean;
|
|
@@ -83,11 +79,10 @@ export class Host extends ServiceOwner {
|
|
|
83
79
|
env?: string[] | string;
|
|
84
80
|
};
|
|
85
81
|
disabled: {
|
|
86
|
-
|
|
82
|
+
writable: boolean;
|
|
87
83
|
default: boolean;
|
|
88
84
|
type: string;
|
|
89
85
|
isKey: boolean;
|
|
90
|
-
writable: boolean;
|
|
91
86
|
mandatory: boolean;
|
|
92
87
|
collection: boolean;
|
|
93
88
|
private?: boolean;
|
|
@@ -100,10 +95,9 @@ export class Host extends ServiceOwner {
|
|
|
100
95
|
};
|
|
101
96
|
tags: {
|
|
102
97
|
collection: boolean;
|
|
103
|
-
|
|
98
|
+
writable: boolean;
|
|
104
99
|
type: string;
|
|
105
100
|
isKey: boolean;
|
|
106
|
-
writable: boolean;
|
|
107
101
|
mandatory: boolean;
|
|
108
102
|
private?: boolean;
|
|
109
103
|
depends?: string;
|
|
@@ -120,24 +114,23 @@ export class Host extends ServiceOwner {
|
|
|
120
114
|
networkInterfaces: {
|
|
121
115
|
type: string;
|
|
122
116
|
collection: boolean;
|
|
123
|
-
|
|
117
|
+
writable: boolean;
|
|
124
118
|
};
|
|
125
119
|
services: {
|
|
126
120
|
type: string;
|
|
127
121
|
collection: boolean;
|
|
128
|
-
|
|
122
|
+
writable: boolean;
|
|
129
123
|
};
|
|
130
124
|
aliases: {
|
|
131
125
|
type: string;
|
|
132
126
|
collection: boolean;
|
|
133
|
-
|
|
127
|
+
writable: boolean;
|
|
134
128
|
};
|
|
135
129
|
os: {
|
|
136
|
-
|
|
130
|
+
writable: boolean;
|
|
137
131
|
values: string[];
|
|
138
132
|
type: string;
|
|
139
133
|
isKey: boolean;
|
|
140
|
-
writable: boolean;
|
|
141
134
|
mandatory: boolean;
|
|
142
135
|
collection: boolean;
|
|
143
136
|
private?: boolean;
|
|
@@ -150,10 +143,9 @@ export class Host extends ServiceOwner {
|
|
|
150
143
|
env?: string[] | string;
|
|
151
144
|
};
|
|
152
145
|
"machine-id": {
|
|
153
|
-
|
|
146
|
+
writable: boolean;
|
|
154
147
|
type: string;
|
|
155
148
|
isKey: boolean;
|
|
156
|
-
writable: boolean;
|
|
157
149
|
mandatory: boolean;
|
|
158
150
|
collection: boolean;
|
|
159
151
|
private?: boolean;
|
|
@@ -166,10 +158,9 @@ export class Host extends ServiceOwner {
|
|
|
166
158
|
env?: string[] | string;
|
|
167
159
|
};
|
|
168
160
|
distribution: {
|
|
169
|
-
|
|
161
|
+
writable: boolean;
|
|
170
162
|
type: string;
|
|
171
163
|
isKey: boolean;
|
|
172
|
-
writable: boolean;
|
|
173
164
|
mandatory: boolean;
|
|
174
165
|
collection: boolean;
|
|
175
166
|
private?: boolean;
|
|
@@ -182,11 +173,10 @@ export class Host extends ServiceOwner {
|
|
|
182
173
|
env?: string[] | string;
|
|
183
174
|
};
|
|
184
175
|
deployment: {
|
|
185
|
-
|
|
176
|
+
writable: boolean;
|
|
186
177
|
values: string[];
|
|
187
178
|
type: string;
|
|
188
179
|
isKey: boolean;
|
|
189
|
-
writable: boolean;
|
|
190
180
|
mandatory: boolean;
|
|
191
181
|
collection: boolean;
|
|
192
182
|
private?: boolean;
|
|
@@ -201,13 +191,12 @@ export class Host extends ServiceOwner {
|
|
|
201
191
|
weight: {
|
|
202
192
|
type: string;
|
|
203
193
|
collection: boolean;
|
|
204
|
-
|
|
194
|
+
writable: boolean;
|
|
205
195
|
};
|
|
206
196
|
serial: {
|
|
207
|
-
|
|
197
|
+
writable: boolean;
|
|
208
198
|
type: string;
|
|
209
199
|
isKey: boolean;
|
|
210
|
-
writable: boolean;
|
|
211
200
|
mandatory: boolean;
|
|
212
201
|
collection: boolean;
|
|
213
202
|
private?: boolean;
|
|
@@ -220,10 +209,9 @@ export class Host extends ServiceOwner {
|
|
|
220
209
|
env?: string[] | string;
|
|
221
210
|
};
|
|
222
211
|
vendor: {
|
|
223
|
-
|
|
212
|
+
writable: boolean;
|
|
224
213
|
type: string;
|
|
225
214
|
isKey: boolean;
|
|
226
|
-
writable: boolean;
|
|
227
215
|
mandatory: boolean;
|
|
228
216
|
collection: boolean;
|
|
229
217
|
private?: boolean;
|
|
@@ -236,10 +224,9 @@ export class Host extends ServiceOwner {
|
|
|
236
224
|
env?: string[] | string;
|
|
237
225
|
};
|
|
238
226
|
keymap: {
|
|
239
|
-
|
|
227
|
+
writable: boolean;
|
|
240
228
|
type: string;
|
|
241
229
|
isKey: boolean;
|
|
242
|
-
writable: boolean;
|
|
243
230
|
mandatory: boolean;
|
|
244
231
|
collection: boolean;
|
|
245
232
|
private?: boolean;
|
|
@@ -252,11 +239,10 @@ export class Host extends ServiceOwner {
|
|
|
252
239
|
env?: string[] | string;
|
|
253
240
|
};
|
|
254
241
|
chassis: {
|
|
255
|
-
|
|
242
|
+
writable: boolean;
|
|
256
243
|
values: string[];
|
|
257
244
|
type: string;
|
|
258
245
|
isKey: boolean;
|
|
259
|
-
writable: boolean;
|
|
260
246
|
mandatory: boolean;
|
|
261
247
|
collection: boolean;
|
|
262
248
|
private?: boolean;
|
|
@@ -269,11 +255,10 @@ export class Host extends ServiceOwner {
|
|
|
269
255
|
env?: string[] | string;
|
|
270
256
|
};
|
|
271
257
|
architecture: {
|
|
272
|
-
|
|
258
|
+
writable: boolean;
|
|
273
259
|
values: string[];
|
|
274
260
|
type: string;
|
|
275
261
|
isKey: boolean;
|
|
276
|
-
writable: boolean;
|
|
277
262
|
mandatory: boolean;
|
|
278
263
|
collection: boolean;
|
|
279
264
|
private?: boolean;
|
|
@@ -287,10 +272,9 @@ export class Host extends ServiceOwner {
|
|
|
287
272
|
};
|
|
288
273
|
replaces: {
|
|
289
274
|
collection: boolean;
|
|
290
|
-
|
|
275
|
+
writable: boolean;
|
|
291
276
|
type: string;
|
|
292
277
|
isKey: boolean;
|
|
293
|
-
writable: boolean;
|
|
294
278
|
mandatory: boolean;
|
|
295
279
|
private?: boolean;
|
|
296
280
|
depends?: string;
|
|
@@ -303,10 +287,9 @@ export class Host extends ServiceOwner {
|
|
|
303
287
|
};
|
|
304
288
|
depends: {
|
|
305
289
|
collection: boolean;
|
|
306
|
-
|
|
290
|
+
writable: boolean;
|
|
307
291
|
type: string;
|
|
308
292
|
isKey: boolean;
|
|
309
|
-
writable: boolean;
|
|
310
293
|
mandatory: boolean;
|
|
311
294
|
private?: boolean;
|
|
312
295
|
depends?: string;
|
|
@@ -319,10 +302,9 @@ export class Host extends ServiceOwner {
|
|
|
319
302
|
};
|
|
320
303
|
provides: {
|
|
321
304
|
collection: boolean;
|
|
322
|
-
|
|
305
|
+
writable: boolean;
|
|
323
306
|
type: string;
|
|
324
307
|
isKey: boolean;
|
|
325
|
-
writable: boolean;
|
|
326
308
|
mandatory: boolean;
|
|
327
309
|
private?: boolean;
|
|
328
310
|
depends?: string;
|
|
@@ -336,14 +318,13 @@ export class Host extends ServiceOwner {
|
|
|
336
318
|
extends: {
|
|
337
319
|
type: string;
|
|
338
320
|
collection: boolean;
|
|
339
|
-
|
|
321
|
+
writable: boolean;
|
|
340
322
|
};
|
|
341
323
|
model: {
|
|
342
324
|
collection: boolean;
|
|
343
|
-
|
|
325
|
+
writable: boolean;
|
|
344
326
|
type: string;
|
|
345
327
|
isKey: boolean;
|
|
346
|
-
writable: boolean;
|
|
347
328
|
mandatory: boolean;
|
|
348
329
|
private?: boolean;
|
|
349
330
|
depends?: string;
|
|
@@ -357,13 +338,12 @@ export class Host extends ServiceOwner {
|
|
|
357
338
|
isModel: {
|
|
358
339
|
type: string;
|
|
359
340
|
collection: boolean;
|
|
360
|
-
|
|
341
|
+
writable: boolean;
|
|
361
342
|
};
|
|
362
343
|
hostName: {
|
|
363
|
-
|
|
344
|
+
writable: boolean;
|
|
364
345
|
type: string;
|
|
365
346
|
isKey: boolean;
|
|
366
|
-
writable: boolean;
|
|
367
347
|
mandatory: boolean;
|
|
368
348
|
collection: boolean;
|
|
369
349
|
private?: boolean;
|
|
@@ -377,10 +357,9 @@ export class Host extends ServiceOwner {
|
|
|
377
357
|
};
|
|
378
358
|
cidrAddresses: {
|
|
379
359
|
collection: boolean;
|
|
380
|
-
|
|
360
|
+
writable: boolean;
|
|
381
361
|
type: string;
|
|
382
362
|
isKey: boolean;
|
|
383
|
-
writable: boolean;
|
|
384
363
|
mandatory: boolean;
|
|
385
364
|
private?: boolean;
|
|
386
365
|
depends?: string;
|
|
@@ -392,10 +371,9 @@ export class Host extends ServiceOwner {
|
|
|
392
371
|
env?: string[] | string;
|
|
393
372
|
};
|
|
394
373
|
cidrAddress: {
|
|
395
|
-
|
|
374
|
+
writable: boolean;
|
|
396
375
|
type: string;
|
|
397
376
|
isKey: boolean;
|
|
398
|
-
writable: boolean;
|
|
399
377
|
mandatory: boolean;
|
|
400
378
|
collection: boolean;
|
|
401
379
|
private?: boolean;
|
|
@@ -409,10 +387,9 @@ export class Host extends ServiceOwner {
|
|
|
409
387
|
};
|
|
410
388
|
addresses: {
|
|
411
389
|
collection: boolean;
|
|
412
|
-
|
|
390
|
+
writable: boolean;
|
|
413
391
|
type: string;
|
|
414
392
|
isKey: boolean;
|
|
415
|
-
writable: boolean;
|
|
416
393
|
mandatory: boolean;
|
|
417
394
|
private?: boolean;
|
|
418
395
|
depends?: string;
|
|
@@ -424,10 +401,9 @@ export class Host extends ServiceOwner {
|
|
|
424
401
|
env?: string[] | string;
|
|
425
402
|
};
|
|
426
403
|
address: {
|
|
427
|
-
|
|
404
|
+
writable: boolean;
|
|
428
405
|
type: string;
|
|
429
406
|
isKey: boolean;
|
|
430
|
-
writable: boolean;
|
|
431
407
|
mandatory: boolean;
|
|
432
408
|
collection: boolean;
|
|
433
409
|
private?: boolean;
|