pmcf 3.4.4 → 3.4.6
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 +1 -1
- package/src/base.mjs +25 -28
- package/src/services/bind.mjs +1 -1
- package/src/types.mjs +2 -2
- package/types/base.d.mts +1 -14
- package/types/cluster.d.mts +2 -28
- package/types/extra-source-service.d.mts +1 -14
- package/types/host.d.mts +1 -14
- package/types/location.d.mts +2 -28
- package/types/network-interfaces/ethernet.d.mts +2 -28
- package/types/network-interfaces/loopback.d.mts +2 -28
- package/types/network-interfaces/network-interface.d.mts +2 -28
- package/types/network-interfaces/wireguard.d.mts +2 -28
- package/types/network-interfaces/wlan.d.mts +3 -42
- package/types/network.d.mts +1 -14
- package/types/owner.d.mts +1 -14
- package/types/root.d.mts +2 -28
- package/types/service.d.mts +2 -28
- package/types/services/bind.d.mts +3 -29
- package/types/services/chrony.d.mts +2 -28
- package/types/services/influxdb.d.mts +2 -28
- package/types/services/kea.d.mts +2 -28
- package/types/services/mosquitto.d.mts +2 -28
- package/types/services/openldap.d.mts +2 -28
- package/types/services/systemd-journal-remote.d.mts +2 -28
- package/types/services/systemd-journal-upload.d.mts +2 -28
- package/types/services/systemd-journal.d.mts +2 -28
- package/types/services/systemd-resolved.d.mts +2 -28
- package/types/services/systemd-timesyncd.d.mts +2 -28
package/package.json
CHANGED
package/src/base.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
string_collection_attribute,
|
|
8
8
|
number_attribute,
|
|
9
9
|
description_attribute,
|
|
10
|
-
|
|
10
|
+
boolean_attribute_writeable_false
|
|
11
11
|
} from "pacc";
|
|
12
12
|
import { addType, primitives, typeFactory } from "./types.mjs";
|
|
13
13
|
import { asArray } from "./utils.mjs";
|
|
@@ -26,11 +26,7 @@ const BaseTypeDefinition = {
|
|
|
26
26
|
priority: { ...number_attribute, writable: true },
|
|
27
27
|
directory: { ...string_attribute, writable: false },
|
|
28
28
|
packaging: { ...string_attribute, writable: true },
|
|
29
|
-
disabled:
|
|
30
|
-
...boolean_attribute,
|
|
31
|
-
writable: true,
|
|
32
|
-
default: false
|
|
33
|
-
},
|
|
29
|
+
disabled: boolean_attribute_writeable_false,
|
|
34
30
|
tags: { ...string_collection_attribute, writable: true }
|
|
35
31
|
}
|
|
36
32
|
};
|
|
@@ -101,20 +97,20 @@ export class Base {
|
|
|
101
97
|
}
|
|
102
98
|
|
|
103
99
|
read(data, type) {
|
|
104
|
-
const assign = (property, value) => {
|
|
100
|
+
const assign = (name, property, value) => {
|
|
105
101
|
if (value !== undefined) {
|
|
106
102
|
if (property.values) {
|
|
107
103
|
if (property.values.indexOf(value) < 0) {
|
|
108
|
-
this.error(
|
|
104
|
+
this.error(name, "unknown value", value, property.values);
|
|
109
105
|
}
|
|
110
106
|
}
|
|
111
107
|
|
|
112
108
|
if (property.collection) {
|
|
113
|
-
const current = this[
|
|
109
|
+
const current = this[name];
|
|
114
110
|
|
|
115
111
|
switch (typeof current) {
|
|
116
112
|
case "undefined":
|
|
117
|
-
this[
|
|
113
|
+
this[name] = asArray(value);
|
|
118
114
|
break;
|
|
119
115
|
case "object":
|
|
120
116
|
if (Array.isArray(current)) {
|
|
@@ -122,12 +118,12 @@ export class Base {
|
|
|
122
118
|
} else {
|
|
123
119
|
if (current instanceof Set) {
|
|
124
120
|
// TODO
|
|
125
|
-
this[
|
|
121
|
+
this[name] = value;
|
|
126
122
|
} else if (current instanceof Map) {
|
|
127
123
|
// TODO
|
|
128
|
-
this[
|
|
124
|
+
this[name] = value;
|
|
129
125
|
} else {
|
|
130
|
-
this.error("Unknown collection type",
|
|
126
|
+
this.error("Unknown collection type", name, current);
|
|
131
127
|
}
|
|
132
128
|
}
|
|
133
129
|
break;
|
|
@@ -135,19 +131,19 @@ export class Base {
|
|
|
135
131
|
if (value instanceof Base) {
|
|
136
132
|
this.addObject(value);
|
|
137
133
|
} else {
|
|
138
|
-
this.error("Unknown collection type",
|
|
134
|
+
this.error("Unknown collection type", name, current);
|
|
139
135
|
}
|
|
140
136
|
break;
|
|
141
137
|
}
|
|
142
138
|
} else {
|
|
143
|
-
this[
|
|
139
|
+
this[name] = value ?? property.default;
|
|
144
140
|
}
|
|
145
141
|
}
|
|
146
142
|
};
|
|
147
143
|
|
|
148
|
-
const instantiateAndAssign = (property, value) => {
|
|
144
|
+
const instantiateAndAssign = (name, property, value) => {
|
|
149
145
|
if (primitives.has(property.type[0])) {
|
|
150
|
-
assign(property, value);
|
|
146
|
+
assign(name, property, value);
|
|
151
147
|
return;
|
|
152
148
|
}
|
|
153
149
|
|
|
@@ -155,7 +151,7 @@ export class Base {
|
|
|
155
151
|
case "undefined":
|
|
156
152
|
return;
|
|
157
153
|
case "function":
|
|
158
|
-
this.error("Invalid value",
|
|
154
|
+
this.error("Invalid value", name, value);
|
|
159
155
|
break;
|
|
160
156
|
|
|
161
157
|
case "boolean":
|
|
@@ -173,7 +169,7 @@ export class Base {
|
|
|
173
169
|
}
|
|
174
170
|
|
|
175
171
|
if (object) {
|
|
176
|
-
assign(property, object);
|
|
172
|
+
assign(name, property, object);
|
|
177
173
|
} else {
|
|
178
174
|
if (property.type[0].constructWithIdentifierOnly) {
|
|
179
175
|
object = new property.type[0].clazz(
|
|
@@ -192,14 +188,14 @@ export class Base {
|
|
|
192
188
|
this.root.typeNamed(type.name, value); // TODO
|
|
193
189
|
|
|
194
190
|
if (object) {
|
|
195
|
-
assign(property, object);
|
|
191
|
+
assign(name, property, object);
|
|
196
192
|
return;
|
|
197
193
|
}
|
|
198
194
|
}
|
|
199
195
|
|
|
200
196
|
this.error(
|
|
201
197
|
"Not found",
|
|
202
|
-
|
|
198
|
+
name,
|
|
203
199
|
property.type.map(t => t.name),
|
|
204
200
|
value
|
|
205
201
|
);
|
|
@@ -210,9 +206,10 @@ export class Base {
|
|
|
210
206
|
break;
|
|
211
207
|
case "object":
|
|
212
208
|
if (value instanceof property.type[0].clazz) {
|
|
213
|
-
assign(property, value);
|
|
209
|
+
assign(name, property, value);
|
|
214
210
|
} else {
|
|
215
211
|
assign(
|
|
212
|
+
name,
|
|
216
213
|
property,
|
|
217
214
|
typeFactory(
|
|
218
215
|
property.type[0],
|
|
@@ -229,32 +226,32 @@ export class Base {
|
|
|
229
226
|
this._properties = data.properties;
|
|
230
227
|
}
|
|
231
228
|
|
|
232
|
-
for (const property of Object.
|
|
229
|
+
for (const [name, property] of Object.entries(type.properties)) {
|
|
233
230
|
if (property.writable) {
|
|
234
|
-
const value = this.expand(data[
|
|
231
|
+
const value = this.expand(data[name]);
|
|
235
232
|
|
|
236
233
|
if (property.collection) {
|
|
237
234
|
if (typeof value === "object") {
|
|
238
235
|
if (Array.isArray(value)) {
|
|
239
236
|
for (const v of value) {
|
|
240
|
-
instantiateAndAssign(property, v);
|
|
237
|
+
instantiateAndAssign(name, property, v);
|
|
241
238
|
}
|
|
242
239
|
} else {
|
|
243
240
|
if (value instanceof Base) {
|
|
244
|
-
assign(property, value);
|
|
241
|
+
assign(name, property, value);
|
|
245
242
|
} else {
|
|
246
243
|
for (const [objectName, objectData] of Object.entries(value)) {
|
|
247
244
|
if (typeof objectData === "object") {
|
|
248
245
|
objectData[type.identifier.name] = objectName;
|
|
249
246
|
}
|
|
250
|
-
instantiateAndAssign(property, objectData);
|
|
247
|
+
instantiateAndAssign(name, property, objectData);
|
|
251
248
|
}
|
|
252
249
|
}
|
|
253
250
|
}
|
|
254
251
|
continue;
|
|
255
252
|
}
|
|
256
253
|
}
|
|
257
|
-
instantiateAndAssign(property, value);
|
|
254
|
+
instantiateAndAssign(name, property, value);
|
|
258
255
|
}
|
|
259
256
|
}
|
|
260
257
|
}
|
package/src/services/bind.mjs
CHANGED
|
@@ -106,7 +106,7 @@ export class BindService extends ExtraSourceService {
|
|
|
106
106
|
recordTTL = "1W";
|
|
107
107
|
hasSVRRecords = true;
|
|
108
108
|
hasCatalog = true;
|
|
109
|
-
hasLinkLocalAdresses =
|
|
109
|
+
hasLinkLocalAdresses = BindServiceTypeDefinition.properties.hasLinkLocalAdresses.default;
|
|
110
110
|
hasLocationRecord = true;
|
|
111
111
|
notify = true;
|
|
112
112
|
_addresses = [];
|
package/src/types.mjs
CHANGED
|
@@ -48,7 +48,7 @@ export function resolveTypeLinks() {
|
|
|
48
48
|
"Unknown type",
|
|
49
49
|
property.type,
|
|
50
50
|
type.name,
|
|
51
|
-
|
|
51
|
+
name
|
|
52
52
|
);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -69,7 +69,7 @@ export function resolveTypeLinks() {
|
|
|
69
69
|
"Unknown type",
|
|
70
70
|
property.type,
|
|
71
71
|
type.name,
|
|
72
|
-
|
|
72
|
+
name
|
|
73
73
|
);
|
|
74
74
|
}
|
|
75
75
|
}
|
package/types/base.d.mts
CHANGED
|
@@ -84,20 +84,7 @@ export class Base {
|
|
|
84
84
|
get?: Function;
|
|
85
85
|
env?: string[] | string;
|
|
86
86
|
};
|
|
87
|
-
disabled:
|
|
88
|
-
writable: boolean;
|
|
89
|
-
default: boolean;
|
|
90
|
-
type: string;
|
|
91
|
-
isKey: boolean;
|
|
92
|
-
mandatory: boolean;
|
|
93
|
-
collection: boolean;
|
|
94
|
-
private?: boolean;
|
|
95
|
-
depends?: string;
|
|
96
|
-
description?: string;
|
|
97
|
-
set?: Function;
|
|
98
|
-
get?: Function;
|
|
99
|
-
env?: string[] | string;
|
|
100
|
-
};
|
|
87
|
+
disabled: import("pacc").AttributeDefinition;
|
|
101
88
|
tags: {
|
|
102
89
|
writable: boolean;
|
|
103
90
|
collection: boolean;
|
package/types/cluster.d.mts
CHANGED
|
@@ -85,20 +85,7 @@ export class Cluster extends Host {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -361,20 +348,7 @@ export class Cluster extends Host {
|
|
|
361
348
|
get?: Function;
|
|
362
349
|
env?: string[] | string;
|
|
363
350
|
};
|
|
364
|
-
disabled:
|
|
365
|
-
writable: boolean;
|
|
366
|
-
default: boolean;
|
|
367
|
-
type: string;
|
|
368
|
-
isKey: boolean;
|
|
369
|
-
mandatory: boolean;
|
|
370
|
-
collection: boolean;
|
|
371
|
-
private?: boolean;
|
|
372
|
-
depends?: string;
|
|
373
|
-
description?: string;
|
|
374
|
-
set?: Function;
|
|
375
|
-
get?: Function;
|
|
376
|
-
env?: string[] | string;
|
|
377
|
-
};
|
|
351
|
+
disabled: import("pacc").AttributeDefinition;
|
|
378
352
|
tags: {
|
|
379
353
|
writable: boolean;
|
|
380
354
|
collection: boolean;
|
|
@@ -99,20 +99,7 @@ export class ExtraSourceService extends Service {
|
|
|
99
99
|
get?: Function;
|
|
100
100
|
env?: string[] | string;
|
|
101
101
|
};
|
|
102
|
-
disabled:
|
|
103
|
-
writable: boolean;
|
|
104
|
-
default: boolean;
|
|
105
|
-
type: string;
|
|
106
|
-
isKey: boolean;
|
|
107
|
-
mandatory: boolean;
|
|
108
|
-
collection: boolean;
|
|
109
|
-
private?: boolean;
|
|
110
|
-
depends?: string;
|
|
111
|
-
description?: string;
|
|
112
|
-
set?: Function;
|
|
113
|
-
get?: Function;
|
|
114
|
-
env?: string[] | string;
|
|
115
|
-
};
|
|
102
|
+
disabled: import("pacc").AttributeDefinition;
|
|
116
103
|
tags: {
|
|
117
104
|
writable: boolean;
|
|
118
105
|
collection: boolean;
|
package/types/host.d.mts
CHANGED
|
@@ -83,20 +83,7 @@ export class Host extends ServiceOwner {
|
|
|
83
83
|
get?: Function;
|
|
84
84
|
env?: string[] | string;
|
|
85
85
|
};
|
|
86
|
-
disabled:
|
|
87
|
-
writable: boolean;
|
|
88
|
-
default: boolean;
|
|
89
|
-
type: string;
|
|
90
|
-
isKey: boolean;
|
|
91
|
-
mandatory: boolean;
|
|
92
|
-
collection: boolean;
|
|
93
|
-
private?: boolean;
|
|
94
|
-
depends?: string;
|
|
95
|
-
description?: string;
|
|
96
|
-
set?: Function;
|
|
97
|
-
get?: Function;
|
|
98
|
-
env?: string[] | string;
|
|
99
|
-
};
|
|
86
|
+
disabled: import("pacc").AttributeDefinition;
|
|
100
87
|
tags: {
|
|
101
88
|
writable: boolean;
|
|
102
89
|
collection: boolean;
|
package/types/location.d.mts
CHANGED
|
@@ -85,20 +85,7 @@ export class Location extends Owner {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -361,20 +348,7 @@ export class Location extends Owner {
|
|
|
361
348
|
get?: Function;
|
|
362
349
|
env?: string[] | string;
|
|
363
350
|
};
|
|
364
|
-
disabled:
|
|
365
|
-
writable: boolean;
|
|
366
|
-
default: boolean;
|
|
367
|
-
type: string;
|
|
368
|
-
isKey: boolean;
|
|
369
|
-
mandatory: boolean;
|
|
370
|
-
collection: boolean;
|
|
371
|
-
private?: boolean;
|
|
372
|
-
depends?: string;
|
|
373
|
-
description?: string;
|
|
374
|
-
set?: Function;
|
|
375
|
-
get?: Function;
|
|
376
|
-
env?: string[] | string;
|
|
377
|
-
};
|
|
351
|
+
disabled: import("pacc").AttributeDefinition;
|
|
378
352
|
tags: {
|
|
379
353
|
writable: boolean;
|
|
380
354
|
collection: boolean;
|
|
@@ -99,20 +99,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
99
99
|
get?: Function;
|
|
100
100
|
env?: string[] | string;
|
|
101
101
|
};
|
|
102
|
-
disabled:
|
|
103
|
-
writable: boolean;
|
|
104
|
-
default: boolean;
|
|
105
|
-
type: string;
|
|
106
|
-
isKey: boolean;
|
|
107
|
-
mandatory: boolean;
|
|
108
|
-
collection: boolean;
|
|
109
|
-
private?: boolean;
|
|
110
|
-
depends?: string;
|
|
111
|
-
description?: string;
|
|
112
|
-
set?: Function;
|
|
113
|
-
get?: Function;
|
|
114
|
-
env?: string[] | string;
|
|
115
|
-
};
|
|
102
|
+
disabled: import("pacc").AttributeDefinition;
|
|
116
103
|
tags: {
|
|
117
104
|
writable: boolean;
|
|
118
105
|
collection: boolean;
|
|
@@ -461,20 +448,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
461
448
|
get?: Function;
|
|
462
449
|
env?: string[] | string;
|
|
463
450
|
};
|
|
464
|
-
disabled:
|
|
465
|
-
writable: boolean;
|
|
466
|
-
default: boolean;
|
|
467
|
-
type: string;
|
|
468
|
-
isKey: boolean;
|
|
469
|
-
mandatory: boolean;
|
|
470
|
-
collection: boolean;
|
|
471
|
-
private?: boolean;
|
|
472
|
-
depends?: string;
|
|
473
|
-
description?: string;
|
|
474
|
-
set?: Function;
|
|
475
|
-
get?: Function;
|
|
476
|
-
env?: string[] | string;
|
|
477
|
-
};
|
|
451
|
+
disabled: import("pacc").AttributeDefinition;
|
|
478
452
|
tags: {
|
|
479
453
|
writable: boolean;
|
|
480
454
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -447,20 +434,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
447
434
|
get?: Function;
|
|
448
435
|
env?: string[] | string;
|
|
449
436
|
};
|
|
450
|
-
disabled:
|
|
451
|
-
writable: boolean;
|
|
452
|
-
default: boolean;
|
|
453
|
-
type: string;
|
|
454
|
-
isKey: boolean;
|
|
455
|
-
mandatory: boolean;
|
|
456
|
-
collection: boolean;
|
|
457
|
-
private?: boolean;
|
|
458
|
-
depends?: string;
|
|
459
|
-
description?: string;
|
|
460
|
-
set?: Function;
|
|
461
|
-
get?: Function;
|
|
462
|
-
env?: string[] | string;
|
|
463
|
-
};
|
|
437
|
+
disabled: import("pacc").AttributeDefinition;
|
|
464
438
|
tags: {
|
|
465
439
|
writable: boolean;
|
|
466
440
|
collection: boolean;
|
|
@@ -82,20 +82,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
82
82
|
get?: Function;
|
|
83
83
|
env?: string[] | string;
|
|
84
84
|
};
|
|
85
|
-
disabled:
|
|
86
|
-
writable: boolean;
|
|
87
|
-
default: boolean;
|
|
88
|
-
type: string;
|
|
89
|
-
isKey: boolean;
|
|
90
|
-
mandatory: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
private?: boolean;
|
|
93
|
-
depends?: string;
|
|
94
|
-
description?: string;
|
|
95
|
-
set?: Function;
|
|
96
|
-
get?: Function;
|
|
97
|
-
env?: string[] | string;
|
|
98
|
-
};
|
|
85
|
+
disabled: import("pacc").AttributeDefinition;
|
|
99
86
|
tags: {
|
|
100
87
|
writable: boolean;
|
|
101
88
|
collection: boolean;
|
|
@@ -445,20 +432,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
445
432
|
get?: Function;
|
|
446
433
|
env?: string[] | string;
|
|
447
434
|
};
|
|
448
|
-
disabled:
|
|
449
|
-
writable: boolean;
|
|
450
|
-
default: boolean;
|
|
451
|
-
type: string;
|
|
452
|
-
isKey: boolean;
|
|
453
|
-
mandatory: boolean;
|
|
454
|
-
collection: boolean;
|
|
455
|
-
private?: boolean;
|
|
456
|
-
depends?: string;
|
|
457
|
-
description?: string;
|
|
458
|
-
set?: Function;
|
|
459
|
-
get?: Function;
|
|
460
|
-
env?: string[] | string;
|
|
461
|
-
};
|
|
435
|
+
disabled: import("pacc").AttributeDefinition;
|
|
462
436
|
tags: {
|
|
463
437
|
writable: boolean;
|
|
464
438
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -447,20 +434,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
447
434
|
get?: Function;
|
|
448
435
|
env?: string[] | string;
|
|
449
436
|
};
|
|
450
|
-
disabled:
|
|
451
|
-
writable: boolean;
|
|
452
|
-
default: boolean;
|
|
453
|
-
type: string;
|
|
454
|
-
isKey: boolean;
|
|
455
|
-
mandatory: boolean;
|
|
456
|
-
collection: boolean;
|
|
457
|
-
private?: boolean;
|
|
458
|
-
depends?: string;
|
|
459
|
-
description?: string;
|
|
460
|
-
set?: Function;
|
|
461
|
-
get?: Function;
|
|
462
|
-
env?: string[] | string;
|
|
463
|
-
};
|
|
437
|
+
disabled: import("pacc").AttributeDefinition;
|
|
464
438
|
tags: {
|
|
465
439
|
writable: boolean;
|
|
466
440
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -449,20 +436,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
449
436
|
get?: Function;
|
|
450
437
|
env?: string[] | string;
|
|
451
438
|
};
|
|
452
|
-
disabled:
|
|
453
|
-
writable: boolean;
|
|
454
|
-
default: boolean;
|
|
455
|
-
type: string;
|
|
456
|
-
isKey: boolean;
|
|
457
|
-
mandatory: boolean;
|
|
458
|
-
collection: boolean;
|
|
459
|
-
private?: boolean;
|
|
460
|
-
depends?: string;
|
|
461
|
-
description?: string;
|
|
462
|
-
set?: Function;
|
|
463
|
-
get?: Function;
|
|
464
|
-
env?: string[] | string;
|
|
465
|
-
};
|
|
439
|
+
disabled: import("pacc").AttributeDefinition;
|
|
466
440
|
tags: {
|
|
467
441
|
writable: boolean;
|
|
468
442
|
collection: boolean;
|
|
@@ -811,20 +785,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
811
785
|
get?: Function;
|
|
812
786
|
env?: string[] | string;
|
|
813
787
|
};
|
|
814
|
-
disabled:
|
|
815
|
-
writable: boolean;
|
|
816
|
-
default: boolean;
|
|
817
|
-
type: string;
|
|
818
|
-
isKey: boolean;
|
|
819
|
-
mandatory: boolean;
|
|
820
|
-
collection: boolean;
|
|
821
|
-
private?: boolean;
|
|
822
|
-
depends?: string;
|
|
823
|
-
description?: string;
|
|
824
|
-
set?: Function;
|
|
825
|
-
get?: Function;
|
|
826
|
-
env?: string[] | string;
|
|
827
|
-
};
|
|
788
|
+
disabled: import("pacc").AttributeDefinition;
|
|
828
789
|
tags: {
|
|
829
790
|
writable: boolean;
|
|
830
791
|
collection: boolean;
|
package/types/network.d.mts
CHANGED
|
@@ -87,20 +87,7 @@ export class Network extends Owner {
|
|
|
87
87
|
get?: Function;
|
|
88
88
|
env?: string[] | string;
|
|
89
89
|
};
|
|
90
|
-
disabled:
|
|
91
|
-
writable: boolean;
|
|
92
|
-
default: boolean;
|
|
93
|
-
type: string;
|
|
94
|
-
isKey: boolean;
|
|
95
|
-
mandatory: boolean;
|
|
96
|
-
collection: boolean;
|
|
97
|
-
private?: boolean;
|
|
98
|
-
depends?: string;
|
|
99
|
-
description?: string;
|
|
100
|
-
set?: Function;
|
|
101
|
-
get?: Function;
|
|
102
|
-
env?: string[] | string;
|
|
103
|
-
};
|
|
90
|
+
disabled: import("pacc").AttributeDefinition;
|
|
104
91
|
tags: {
|
|
105
92
|
writable: boolean;
|
|
106
93
|
collection: boolean;
|
package/types/owner.d.mts
CHANGED
|
@@ -83,20 +83,7 @@ export class Owner extends Base {
|
|
|
83
83
|
get?: Function;
|
|
84
84
|
env?: string[] | string;
|
|
85
85
|
};
|
|
86
|
-
disabled:
|
|
87
|
-
writable: boolean;
|
|
88
|
-
default: boolean;
|
|
89
|
-
type: string;
|
|
90
|
-
isKey: boolean;
|
|
91
|
-
mandatory: boolean;
|
|
92
|
-
collection: boolean;
|
|
93
|
-
private?: boolean;
|
|
94
|
-
depends?: string;
|
|
95
|
-
description?: string;
|
|
96
|
-
set?: Function;
|
|
97
|
-
get?: Function;
|
|
98
|
-
env?: string[] | string;
|
|
99
|
-
};
|
|
86
|
+
disabled: import("pacc").AttributeDefinition;
|
|
100
87
|
tags: {
|
|
101
88
|
writable: boolean;
|
|
102
89
|
collection: boolean;
|
package/types/root.d.mts
CHANGED
|
@@ -89,20 +89,7 @@ export class Root extends Location {
|
|
|
89
89
|
get?: Function;
|
|
90
90
|
env?: string[] | string;
|
|
91
91
|
};
|
|
92
|
-
disabled:
|
|
93
|
-
writable: boolean;
|
|
94
|
-
default: boolean;
|
|
95
|
-
type: string;
|
|
96
|
-
isKey: boolean;
|
|
97
|
-
mandatory: boolean;
|
|
98
|
-
collection: boolean;
|
|
99
|
-
private?: boolean;
|
|
100
|
-
depends?: string;
|
|
101
|
-
description?: string;
|
|
102
|
-
set?: Function;
|
|
103
|
-
get?: Function;
|
|
104
|
-
env?: string[] | string;
|
|
105
|
-
};
|
|
92
|
+
disabled: import("pacc").AttributeDefinition;
|
|
106
93
|
tags: {
|
|
107
94
|
writable: boolean;
|
|
108
95
|
collection: boolean;
|
|
@@ -365,20 +352,7 @@ export class Root extends Location {
|
|
|
365
352
|
get?: Function;
|
|
366
353
|
env?: string[] | string;
|
|
367
354
|
};
|
|
368
|
-
disabled:
|
|
369
|
-
writable: boolean;
|
|
370
|
-
default: boolean;
|
|
371
|
-
type: string;
|
|
372
|
-
isKey: boolean;
|
|
373
|
-
mandatory: boolean;
|
|
374
|
-
collection: boolean;
|
|
375
|
-
private?: boolean;
|
|
376
|
-
depends?: string;
|
|
377
|
-
description?: string;
|
|
378
|
-
set?: Function;
|
|
379
|
-
get?: Function;
|
|
380
|
-
env?: string[] | string;
|
|
381
|
-
};
|
|
355
|
+
disabled: import("pacc").AttributeDefinition;
|
|
382
356
|
tags: {
|
|
383
357
|
writable: boolean;
|
|
384
358
|
collection: boolean;
|
package/types/service.d.mts
CHANGED
|
@@ -157,20 +157,7 @@ export namespace ServiceTypeDefinition {
|
|
|
157
157
|
get?: Function;
|
|
158
158
|
env?: string[] | string;
|
|
159
159
|
};
|
|
160
|
-
disabled:
|
|
161
|
-
writable: boolean;
|
|
162
|
-
default: boolean;
|
|
163
|
-
type: string;
|
|
164
|
-
isKey: boolean;
|
|
165
|
-
mandatory: boolean;
|
|
166
|
-
collection: boolean;
|
|
167
|
-
private?: boolean;
|
|
168
|
-
depends?: string;
|
|
169
|
-
description?: string;
|
|
170
|
-
set?: Function;
|
|
171
|
-
get?: Function;
|
|
172
|
-
env?: string[] | string;
|
|
173
|
-
};
|
|
160
|
+
disabled: import("pacc").AttributeDefinition;
|
|
174
161
|
tags: {
|
|
175
162
|
writable: boolean;
|
|
176
163
|
collection: boolean;
|
|
@@ -436,20 +423,7 @@ export class Service extends Base {
|
|
|
436
423
|
get?: Function;
|
|
437
424
|
env?: string[] | string;
|
|
438
425
|
};
|
|
439
|
-
disabled:
|
|
440
|
-
writable: boolean;
|
|
441
|
-
default: boolean;
|
|
442
|
-
type: string;
|
|
443
|
-
isKey: boolean;
|
|
444
|
-
mandatory: boolean;
|
|
445
|
-
collection: boolean;
|
|
446
|
-
private?: boolean;
|
|
447
|
-
depends?: string;
|
|
448
|
-
description?: string;
|
|
449
|
-
set?: Function;
|
|
450
|
-
get?: Function;
|
|
451
|
-
env?: string[] | string;
|
|
452
|
-
};
|
|
426
|
+
disabled: import("pacc").AttributeDefinition;
|
|
453
427
|
tags: {
|
|
454
428
|
writable: boolean;
|
|
455
429
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class BindService extends ExtraSourceService {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -365,20 +352,7 @@ export class BindService extends ExtraSourceService {
|
|
|
365
352
|
get?: Function;
|
|
366
353
|
env?: string[] | string;
|
|
367
354
|
};
|
|
368
|
-
disabled:
|
|
369
|
-
writable: boolean;
|
|
370
|
-
default: boolean;
|
|
371
|
-
type: string;
|
|
372
|
-
isKey: boolean;
|
|
373
|
-
mandatory: boolean;
|
|
374
|
-
collection: boolean;
|
|
375
|
-
private?: boolean;
|
|
376
|
-
depends?: string;
|
|
377
|
-
description?: string;
|
|
378
|
-
set?: Function;
|
|
379
|
-
get?: Function;
|
|
380
|
-
env?: string[] | string;
|
|
381
|
-
};
|
|
355
|
+
disabled: import("pacc").AttributeDefinition;
|
|
382
356
|
tags: {
|
|
383
357
|
writable: boolean;
|
|
384
358
|
collection: boolean;
|
|
@@ -739,7 +713,7 @@ export class BindService extends ExtraSourceService {
|
|
|
739
713
|
recordTTL: string;
|
|
740
714
|
hasSVRRecords: boolean;
|
|
741
715
|
hasCatalog: boolean;
|
|
742
|
-
hasLinkLocalAdresses:
|
|
716
|
+
hasLinkLocalAdresses: any;
|
|
743
717
|
hasLocationRecord: boolean;
|
|
744
718
|
notify: boolean;
|
|
745
719
|
_addresses: any[];
|
|
@@ -85,20 +85,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -365,20 +352,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
365
352
|
get?: Function;
|
|
366
353
|
env?: string[] | string;
|
|
367
354
|
};
|
|
368
|
-
disabled:
|
|
369
|
-
writable: boolean;
|
|
370
|
-
default: boolean;
|
|
371
|
-
type: string;
|
|
372
|
-
isKey: boolean;
|
|
373
|
-
mandatory: boolean;
|
|
374
|
-
collection: boolean;
|
|
375
|
-
private?: boolean;
|
|
376
|
-
depends?: string;
|
|
377
|
-
description?: string;
|
|
378
|
-
set?: Function;
|
|
379
|
-
get?: Function;
|
|
380
|
-
env?: string[] | string;
|
|
381
|
-
};
|
|
355
|
+
disabled: import("pacc").AttributeDefinition;
|
|
382
356
|
tags: {
|
|
383
357
|
writable: boolean;
|
|
384
358
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class InfluxdbService extends Service {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class InfluxdbService extends Service {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
package/types/services/kea.d.mts
CHANGED
|
@@ -86,20 +86,7 @@ export class KeaService extends Service {
|
|
|
86
86
|
get?: Function;
|
|
87
87
|
env?: string[] | string;
|
|
88
88
|
};
|
|
89
|
-
disabled:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
default: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
collection: boolean;
|
|
96
|
-
private?: boolean;
|
|
97
|
-
depends?: string;
|
|
98
|
-
description?: string;
|
|
99
|
-
set?: Function;
|
|
100
|
-
get?: Function;
|
|
101
|
-
env?: string[] | string;
|
|
102
|
-
};
|
|
89
|
+
disabled: import("pacc").AttributeDefinition;
|
|
103
90
|
tags: {
|
|
104
91
|
writable: boolean;
|
|
105
92
|
collection: boolean;
|
|
@@ -363,20 +350,7 @@ export class KeaService extends Service {
|
|
|
363
350
|
get?: Function;
|
|
364
351
|
env?: string[] | string;
|
|
365
352
|
};
|
|
366
|
-
disabled:
|
|
367
|
-
writable: boolean;
|
|
368
|
-
default: boolean;
|
|
369
|
-
type: string;
|
|
370
|
-
isKey: boolean;
|
|
371
|
-
mandatory: boolean;
|
|
372
|
-
collection: boolean;
|
|
373
|
-
private?: boolean;
|
|
374
|
-
depends?: string;
|
|
375
|
-
description?: string;
|
|
376
|
-
set?: Function;
|
|
377
|
-
get?: Function;
|
|
378
|
-
env?: string[] | string;
|
|
379
|
-
};
|
|
353
|
+
disabled: import("pacc").AttributeDefinition;
|
|
380
354
|
tags: {
|
|
381
355
|
writable: boolean;
|
|
382
356
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class MosquittoService extends Service {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class MosquittoService extends Service {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class OpenLDAPService extends Service {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class OpenLDAPService extends Service {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class SystemdJournalService extends Service {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class SystemdJournalService extends Service {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|
|
@@ -85,20 +85,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
85
85
|
get?: Function;
|
|
86
86
|
env?: string[] | string;
|
|
87
87
|
};
|
|
88
|
-
disabled:
|
|
89
|
-
writable: boolean;
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
mandatory: boolean;
|
|
94
|
-
collection: boolean;
|
|
95
|
-
private?: boolean;
|
|
96
|
-
depends?: string;
|
|
97
|
-
description?: string;
|
|
98
|
-
set?: Function;
|
|
99
|
-
get?: Function;
|
|
100
|
-
env?: string[] | string;
|
|
101
|
-
};
|
|
88
|
+
disabled: import("pacc").AttributeDefinition;
|
|
102
89
|
tags: {
|
|
103
90
|
writable: boolean;
|
|
104
91
|
collection: boolean;
|
|
@@ -362,20 +349,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
362
349
|
get?: Function;
|
|
363
350
|
env?: string[] | string;
|
|
364
351
|
};
|
|
365
|
-
disabled:
|
|
366
|
-
writable: boolean;
|
|
367
|
-
default: boolean;
|
|
368
|
-
type: string;
|
|
369
|
-
isKey: boolean;
|
|
370
|
-
mandatory: boolean;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
private?: boolean;
|
|
373
|
-
depends?: string;
|
|
374
|
-
description?: string;
|
|
375
|
-
set?: Function;
|
|
376
|
-
get?: Function;
|
|
377
|
-
env?: string[] | string;
|
|
378
|
-
};
|
|
352
|
+
disabled: import("pacc").AttributeDefinition;
|
|
379
353
|
tags: {
|
|
380
354
|
writable: boolean;
|
|
381
355
|
collection: boolean;
|