pmcf 3.14.0 → 3.14.2
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 +6 -6
- package/src/base.mjs +10 -12
- package/src/services/bind.mjs +3 -4
- package/types/base.d.mts +30 -31
- package/types/cluster.d.mts +2 -64
- package/types/extra-source-service.d.mts +6 -192
- package/types/host.d.mts +2 -32
- package/types/location.d.mts +2 -64
- package/types/network-interfaces/ethernet.d.mts +4 -128
- package/types/network-interfaces/loopback.d.mts +4 -128
- package/types/network-interfaces/network-interface.d.mts +5 -128
- package/types/network-interfaces/tun.d.mts +4 -128
- package/types/network-interfaces/wireguard.d.mts +4 -128
- package/types/network-interfaces/wlan.d.mts +6 -192
- package/types/network.d.mts +2 -64
- package/types/owner.d.mts +1 -32
- package/types/root.d.mts +2 -64
- package/types/service.d.mts +4 -128
- package/types/services/bind.d.mts +8 -256
- package/types/services/chrony.d.mts +8 -256
- package/types/services/headscale.d.mts +5 -160
- package/types/services/influxdb.d.mts +5 -160
- package/types/services/kea.d.mts +5 -160
- package/types/services/mosquitto.d.mts +5 -160
- package/types/services/openldap.d.mts +5 -160
- package/types/services/systemd-journal-remote.d.mts +5 -160
- package/types/services/systemd-journal-upload.d.mts +5 -160
- package/types/services/systemd-journal.d.mts +5 -160
- package/types/services/systemd-resolved.d.mts +8 -256
- package/types/services/systemd-timesyncd.d.mts +8 -256
- package/types/services/tailscale.d.mts +5 -162
|
@@ -6,38 +6,7 @@ export class InfluxdbService extends Service {
|
|
|
6
6
|
owners: (string | {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: string[];
|
|
9
|
-
extends:
|
|
10
|
-
name: string;
|
|
11
|
-
key: string;
|
|
12
|
-
attributes: {
|
|
13
|
-
owner: {
|
|
14
|
-
type: string;
|
|
15
|
-
isKey: boolean;
|
|
16
|
-
writable: boolean;
|
|
17
|
-
mandatory: boolean;
|
|
18
|
-
collection: boolean;
|
|
19
|
-
private?: boolean;
|
|
20
|
-
depends?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
default?: any;
|
|
23
|
-
set?: Function;
|
|
24
|
-
get?: Function;
|
|
25
|
-
prepareValue?: Function;
|
|
26
|
-
values?: Set<any>;
|
|
27
|
-
externalName?: string;
|
|
28
|
-
env?: string[] | string;
|
|
29
|
-
additionalValues?: object;
|
|
30
|
-
};
|
|
31
|
-
type: import("pacc").AttributeDefinition;
|
|
32
|
-
name: import("pacc").AttributeDefinition;
|
|
33
|
-
description: import("pacc").AttributeDefinition;
|
|
34
|
-
priority: import("pacc").AttributeDefinition;
|
|
35
|
-
directory: import("pacc").AttributeDefinition;
|
|
36
|
-
packaging: import("pacc").AttributeDefinition;
|
|
37
|
-
disabled: import("pacc").AttributeDefinition;
|
|
38
|
-
tags: import("pacc").AttributeDefinition;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
9
|
+
extends: typeof import("pmcf").Base;
|
|
41
10
|
key: string;
|
|
42
11
|
attributes: {
|
|
43
12
|
networkInterfaces: {
|
|
@@ -202,38 +171,7 @@ export class InfluxdbService extends Service {
|
|
|
202
171
|
address: import("pacc").AttributeDefinition;
|
|
203
172
|
};
|
|
204
173
|
})[];
|
|
205
|
-
extends:
|
|
206
|
-
name: string;
|
|
207
|
-
key: string;
|
|
208
|
-
attributes: {
|
|
209
|
-
owner: {
|
|
210
|
-
type: string;
|
|
211
|
-
isKey: boolean;
|
|
212
|
-
writable: boolean;
|
|
213
|
-
mandatory: boolean;
|
|
214
|
-
collection: boolean;
|
|
215
|
-
private?: boolean;
|
|
216
|
-
depends?: string;
|
|
217
|
-
description?: string;
|
|
218
|
-
default?: any;
|
|
219
|
-
set?: Function;
|
|
220
|
-
get?: Function;
|
|
221
|
-
prepareValue?: Function;
|
|
222
|
-
values?: Set<any>;
|
|
223
|
-
externalName?: string;
|
|
224
|
-
env?: string[] | string;
|
|
225
|
-
additionalValues?: object;
|
|
226
|
-
};
|
|
227
|
-
type: import("pacc").AttributeDefinition;
|
|
228
|
-
name: import("pacc").AttributeDefinition;
|
|
229
|
-
description: import("pacc").AttributeDefinition;
|
|
230
|
-
priority: import("pacc").AttributeDefinition;
|
|
231
|
-
directory: import("pacc").AttributeDefinition;
|
|
232
|
-
packaging: import("pacc").AttributeDefinition;
|
|
233
|
-
disabled: import("pacc").AttributeDefinition;
|
|
234
|
-
tags: import("pacc").AttributeDefinition;
|
|
235
|
-
};
|
|
236
|
-
};
|
|
174
|
+
extends: typeof import("pmcf").Base;
|
|
237
175
|
specializations: {};
|
|
238
176
|
factoryFor(owner: any, value: any): any;
|
|
239
177
|
key: string;
|
|
@@ -309,38 +247,7 @@ export class InfluxdbService extends Service {
|
|
|
309
247
|
owners: (string | {
|
|
310
248
|
name: string;
|
|
311
249
|
owners: string[];
|
|
312
|
-
extends:
|
|
313
|
-
name: string;
|
|
314
|
-
key: string;
|
|
315
|
-
attributes: {
|
|
316
|
-
owner: {
|
|
317
|
-
type: string;
|
|
318
|
-
isKey: boolean;
|
|
319
|
-
writable: boolean;
|
|
320
|
-
mandatory: boolean;
|
|
321
|
-
collection: boolean;
|
|
322
|
-
private?: boolean;
|
|
323
|
-
depends?: string;
|
|
324
|
-
description?: string;
|
|
325
|
-
default?: any;
|
|
326
|
-
set?: Function;
|
|
327
|
-
get?: Function;
|
|
328
|
-
prepareValue?: Function;
|
|
329
|
-
values?: Set<any>;
|
|
330
|
-
externalName?: string;
|
|
331
|
-
env?: string[] | string;
|
|
332
|
-
additionalValues?: object;
|
|
333
|
-
};
|
|
334
|
-
type: import("pacc").AttributeDefinition;
|
|
335
|
-
name: import("pacc").AttributeDefinition;
|
|
336
|
-
description: import("pacc").AttributeDefinition;
|
|
337
|
-
priority: import("pacc").AttributeDefinition;
|
|
338
|
-
directory: import("pacc").AttributeDefinition;
|
|
339
|
-
packaging: import("pacc").AttributeDefinition;
|
|
340
|
-
disabled: import("pacc").AttributeDefinition;
|
|
341
|
-
tags: import("pacc").AttributeDefinition;
|
|
342
|
-
};
|
|
343
|
-
};
|
|
250
|
+
extends: typeof import("pmcf").Base;
|
|
344
251
|
key: string;
|
|
345
252
|
attributes: {
|
|
346
253
|
networkInterfaces: {
|
|
@@ -505,38 +412,7 @@ export class InfluxdbService extends Service {
|
|
|
505
412
|
address: import("pacc").AttributeDefinition;
|
|
506
413
|
};
|
|
507
414
|
})[];
|
|
508
|
-
extends:
|
|
509
|
-
name: string;
|
|
510
|
-
key: string;
|
|
511
|
-
attributes: {
|
|
512
|
-
owner: {
|
|
513
|
-
type: string;
|
|
514
|
-
isKey: boolean;
|
|
515
|
-
writable: boolean;
|
|
516
|
-
mandatory: boolean;
|
|
517
|
-
collection: boolean;
|
|
518
|
-
private?: boolean;
|
|
519
|
-
depends?: string;
|
|
520
|
-
description?: string;
|
|
521
|
-
default?: any;
|
|
522
|
-
set?: Function;
|
|
523
|
-
get?: Function;
|
|
524
|
-
prepareValue?: Function;
|
|
525
|
-
values?: Set<any>;
|
|
526
|
-
externalName?: string;
|
|
527
|
-
env?: string[] | string;
|
|
528
|
-
additionalValues?: object;
|
|
529
|
-
};
|
|
530
|
-
type: import("pacc").AttributeDefinition;
|
|
531
|
-
name: import("pacc").AttributeDefinition;
|
|
532
|
-
description: import("pacc").AttributeDefinition;
|
|
533
|
-
priority: import("pacc").AttributeDefinition;
|
|
534
|
-
directory: import("pacc").AttributeDefinition;
|
|
535
|
-
packaging: import("pacc").AttributeDefinition;
|
|
536
|
-
disabled: import("pacc").AttributeDefinition;
|
|
537
|
-
tags: import("pacc").AttributeDefinition;
|
|
538
|
-
};
|
|
539
|
-
};
|
|
415
|
+
extends: typeof import("pmcf").Base;
|
|
540
416
|
specializations: {};
|
|
541
417
|
factoryFor(owner: any, value: any): any;
|
|
542
418
|
key: string;
|
|
@@ -610,38 +486,7 @@ export class InfluxdbService extends Service {
|
|
|
610
486
|
owners: (string | {
|
|
611
487
|
name: string;
|
|
612
488
|
owners: string[];
|
|
613
|
-
extends:
|
|
614
|
-
name: string;
|
|
615
|
-
key: string;
|
|
616
|
-
attributes: {
|
|
617
|
-
owner: {
|
|
618
|
-
type: string;
|
|
619
|
-
isKey: boolean;
|
|
620
|
-
writable: boolean;
|
|
621
|
-
mandatory: boolean;
|
|
622
|
-
collection: boolean;
|
|
623
|
-
private?: boolean;
|
|
624
|
-
depends?: string;
|
|
625
|
-
description?: string;
|
|
626
|
-
default?: any;
|
|
627
|
-
set?: Function;
|
|
628
|
-
get?: Function;
|
|
629
|
-
prepareValue?: Function;
|
|
630
|
-
values?: Set<any>;
|
|
631
|
-
externalName?: string;
|
|
632
|
-
env?: string[] | string;
|
|
633
|
-
additionalValues?: object;
|
|
634
|
-
};
|
|
635
|
-
type: import("pacc").AttributeDefinition;
|
|
636
|
-
name: import("pacc").AttributeDefinition;
|
|
637
|
-
description: import("pacc").AttributeDefinition;
|
|
638
|
-
priority: import("pacc").AttributeDefinition;
|
|
639
|
-
directory: import("pacc").AttributeDefinition;
|
|
640
|
-
packaging: import("pacc").AttributeDefinition;
|
|
641
|
-
disabled: import("pacc").AttributeDefinition;
|
|
642
|
-
tags: import("pacc").AttributeDefinition;
|
|
643
|
-
};
|
|
644
|
-
};
|
|
489
|
+
extends: typeof import("pmcf").Base;
|
|
645
490
|
key: string;
|
|
646
491
|
attributes: {
|
|
647
492
|
networkInterfaces: {
|
package/types/services/kea.d.mts
CHANGED
|
@@ -6,38 +6,7 @@ export class KeaService extends Service {
|
|
|
6
6
|
owners: (string | {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: string[];
|
|
9
|
-
extends:
|
|
10
|
-
name: string;
|
|
11
|
-
key: string;
|
|
12
|
-
attributes: {
|
|
13
|
-
owner: {
|
|
14
|
-
type: string;
|
|
15
|
-
isKey: boolean;
|
|
16
|
-
writable: boolean;
|
|
17
|
-
mandatory: boolean;
|
|
18
|
-
collection: boolean;
|
|
19
|
-
private?: boolean;
|
|
20
|
-
depends?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
default?: any;
|
|
23
|
-
set?: Function;
|
|
24
|
-
get?: Function;
|
|
25
|
-
prepareValue?: Function;
|
|
26
|
-
values?: Set<any>;
|
|
27
|
-
externalName?: string;
|
|
28
|
-
env?: string[] | string;
|
|
29
|
-
additionalValues?: object;
|
|
30
|
-
};
|
|
31
|
-
type: import("pacc").AttributeDefinition;
|
|
32
|
-
name: import("pacc").AttributeDefinition;
|
|
33
|
-
description: import("pacc").AttributeDefinition;
|
|
34
|
-
priority: import("pacc").AttributeDefinition;
|
|
35
|
-
directory: import("pacc").AttributeDefinition;
|
|
36
|
-
packaging: import("pacc").AttributeDefinition;
|
|
37
|
-
disabled: import("pacc").AttributeDefinition;
|
|
38
|
-
tags: import("pacc").AttributeDefinition;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
9
|
+
extends: typeof import("pmcf").Base;
|
|
41
10
|
key: string;
|
|
42
11
|
attributes: {
|
|
43
12
|
networkInterfaces: {
|
|
@@ -202,38 +171,7 @@ export class KeaService extends Service {
|
|
|
202
171
|
address: import("pacc").AttributeDefinition;
|
|
203
172
|
};
|
|
204
173
|
})[];
|
|
205
|
-
extends:
|
|
206
|
-
name: string;
|
|
207
|
-
key: string;
|
|
208
|
-
attributes: {
|
|
209
|
-
owner: {
|
|
210
|
-
type: string;
|
|
211
|
-
isKey: boolean;
|
|
212
|
-
writable: boolean;
|
|
213
|
-
mandatory: boolean;
|
|
214
|
-
collection: boolean;
|
|
215
|
-
private?: boolean;
|
|
216
|
-
depends?: string;
|
|
217
|
-
description?: string;
|
|
218
|
-
default?: any;
|
|
219
|
-
set?: Function;
|
|
220
|
-
get?: Function;
|
|
221
|
-
prepareValue?: Function;
|
|
222
|
-
values?: Set<any>;
|
|
223
|
-
externalName?: string;
|
|
224
|
-
env?: string[] | string;
|
|
225
|
-
additionalValues?: object;
|
|
226
|
-
};
|
|
227
|
-
type: import("pacc").AttributeDefinition;
|
|
228
|
-
name: import("pacc").AttributeDefinition;
|
|
229
|
-
description: import("pacc").AttributeDefinition;
|
|
230
|
-
priority: import("pacc").AttributeDefinition;
|
|
231
|
-
directory: import("pacc").AttributeDefinition;
|
|
232
|
-
packaging: import("pacc").AttributeDefinition;
|
|
233
|
-
disabled: import("pacc").AttributeDefinition;
|
|
234
|
-
tags: import("pacc").AttributeDefinition;
|
|
235
|
-
};
|
|
236
|
-
};
|
|
174
|
+
extends: typeof import("pmcf").Base;
|
|
237
175
|
specializations: {};
|
|
238
176
|
factoryFor(owner: any, value: any): any;
|
|
239
177
|
key: string;
|
|
@@ -309,38 +247,7 @@ export class KeaService extends Service {
|
|
|
309
247
|
owners: (string | {
|
|
310
248
|
name: string;
|
|
311
249
|
owners: string[];
|
|
312
|
-
extends:
|
|
313
|
-
name: string;
|
|
314
|
-
key: string;
|
|
315
|
-
attributes: {
|
|
316
|
-
owner: {
|
|
317
|
-
type: string;
|
|
318
|
-
isKey: boolean;
|
|
319
|
-
writable: boolean;
|
|
320
|
-
mandatory: boolean;
|
|
321
|
-
collection: boolean;
|
|
322
|
-
private?: boolean;
|
|
323
|
-
depends?: string;
|
|
324
|
-
description?: string;
|
|
325
|
-
default?: any;
|
|
326
|
-
set?: Function;
|
|
327
|
-
get?: Function;
|
|
328
|
-
prepareValue?: Function;
|
|
329
|
-
values?: Set<any>;
|
|
330
|
-
externalName?: string;
|
|
331
|
-
env?: string[] | string;
|
|
332
|
-
additionalValues?: object;
|
|
333
|
-
};
|
|
334
|
-
type: import("pacc").AttributeDefinition;
|
|
335
|
-
name: import("pacc").AttributeDefinition;
|
|
336
|
-
description: import("pacc").AttributeDefinition;
|
|
337
|
-
priority: import("pacc").AttributeDefinition;
|
|
338
|
-
directory: import("pacc").AttributeDefinition;
|
|
339
|
-
packaging: import("pacc").AttributeDefinition;
|
|
340
|
-
disabled: import("pacc").AttributeDefinition;
|
|
341
|
-
tags: import("pacc").AttributeDefinition;
|
|
342
|
-
};
|
|
343
|
-
};
|
|
250
|
+
extends: typeof import("pmcf").Base;
|
|
344
251
|
key: string;
|
|
345
252
|
attributes: {
|
|
346
253
|
networkInterfaces: {
|
|
@@ -505,38 +412,7 @@ export class KeaService extends Service {
|
|
|
505
412
|
address: import("pacc").AttributeDefinition;
|
|
506
413
|
};
|
|
507
414
|
})[];
|
|
508
|
-
extends:
|
|
509
|
-
name: string;
|
|
510
|
-
key: string;
|
|
511
|
-
attributes: {
|
|
512
|
-
owner: {
|
|
513
|
-
type: string;
|
|
514
|
-
isKey: boolean;
|
|
515
|
-
writable: boolean;
|
|
516
|
-
mandatory: boolean;
|
|
517
|
-
collection: boolean;
|
|
518
|
-
private?: boolean;
|
|
519
|
-
depends?: string;
|
|
520
|
-
description?: string;
|
|
521
|
-
default?: any;
|
|
522
|
-
set?: Function;
|
|
523
|
-
get?: Function;
|
|
524
|
-
prepareValue?: Function;
|
|
525
|
-
values?: Set<any>;
|
|
526
|
-
externalName?: string;
|
|
527
|
-
env?: string[] | string;
|
|
528
|
-
additionalValues?: object;
|
|
529
|
-
};
|
|
530
|
-
type: import("pacc").AttributeDefinition;
|
|
531
|
-
name: import("pacc").AttributeDefinition;
|
|
532
|
-
description: import("pacc").AttributeDefinition;
|
|
533
|
-
priority: import("pacc").AttributeDefinition;
|
|
534
|
-
directory: import("pacc").AttributeDefinition;
|
|
535
|
-
packaging: import("pacc").AttributeDefinition;
|
|
536
|
-
disabled: import("pacc").AttributeDefinition;
|
|
537
|
-
tags: import("pacc").AttributeDefinition;
|
|
538
|
-
};
|
|
539
|
-
};
|
|
415
|
+
extends: typeof import("pmcf").Base;
|
|
540
416
|
specializations: {};
|
|
541
417
|
factoryFor(owner: any, value: any): any;
|
|
542
418
|
key: string;
|
|
@@ -610,38 +486,7 @@ export class KeaService extends Service {
|
|
|
610
486
|
owners: (string | {
|
|
611
487
|
name: string;
|
|
612
488
|
owners: string[];
|
|
613
|
-
extends:
|
|
614
|
-
name: string;
|
|
615
|
-
key: string;
|
|
616
|
-
attributes: {
|
|
617
|
-
owner: {
|
|
618
|
-
type: string;
|
|
619
|
-
isKey: boolean;
|
|
620
|
-
writable: boolean;
|
|
621
|
-
mandatory: boolean;
|
|
622
|
-
collection: boolean;
|
|
623
|
-
private?: boolean;
|
|
624
|
-
depends?: string;
|
|
625
|
-
description?: string;
|
|
626
|
-
default?: any;
|
|
627
|
-
set?: Function;
|
|
628
|
-
get?: Function;
|
|
629
|
-
prepareValue?: Function;
|
|
630
|
-
values?: Set<any>;
|
|
631
|
-
externalName?: string;
|
|
632
|
-
env?: string[] | string;
|
|
633
|
-
additionalValues?: object;
|
|
634
|
-
};
|
|
635
|
-
type: import("pacc").AttributeDefinition;
|
|
636
|
-
name: import("pacc").AttributeDefinition;
|
|
637
|
-
description: import("pacc").AttributeDefinition;
|
|
638
|
-
priority: import("pacc").AttributeDefinition;
|
|
639
|
-
directory: import("pacc").AttributeDefinition;
|
|
640
|
-
packaging: import("pacc").AttributeDefinition;
|
|
641
|
-
disabled: import("pacc").AttributeDefinition;
|
|
642
|
-
tags: import("pacc").AttributeDefinition;
|
|
643
|
-
};
|
|
644
|
-
};
|
|
489
|
+
extends: typeof import("pmcf").Base;
|
|
645
490
|
key: string;
|
|
646
491
|
attributes: {
|
|
647
492
|
networkInterfaces: {
|
|
@@ -6,38 +6,7 @@ export class MosquittoService extends Service {
|
|
|
6
6
|
owners: (string | {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: string[];
|
|
9
|
-
extends:
|
|
10
|
-
name: string;
|
|
11
|
-
key: string;
|
|
12
|
-
attributes: {
|
|
13
|
-
owner: {
|
|
14
|
-
type: string;
|
|
15
|
-
isKey: boolean;
|
|
16
|
-
writable: boolean;
|
|
17
|
-
mandatory: boolean;
|
|
18
|
-
collection: boolean;
|
|
19
|
-
private?: boolean;
|
|
20
|
-
depends?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
default?: any;
|
|
23
|
-
set?: Function;
|
|
24
|
-
get?: Function;
|
|
25
|
-
prepareValue?: Function;
|
|
26
|
-
values?: Set<any>;
|
|
27
|
-
externalName?: string;
|
|
28
|
-
env?: string[] | string;
|
|
29
|
-
additionalValues?: object;
|
|
30
|
-
};
|
|
31
|
-
type: import("pacc").AttributeDefinition;
|
|
32
|
-
name: import("pacc").AttributeDefinition;
|
|
33
|
-
description: import("pacc").AttributeDefinition;
|
|
34
|
-
priority: import("pacc").AttributeDefinition;
|
|
35
|
-
directory: import("pacc").AttributeDefinition;
|
|
36
|
-
packaging: import("pacc").AttributeDefinition;
|
|
37
|
-
disabled: import("pacc").AttributeDefinition;
|
|
38
|
-
tags: import("pacc").AttributeDefinition;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
9
|
+
extends: typeof import("pmcf").Base;
|
|
41
10
|
key: string;
|
|
42
11
|
attributes: {
|
|
43
12
|
networkInterfaces: {
|
|
@@ -202,38 +171,7 @@ export class MosquittoService extends Service {
|
|
|
202
171
|
address: import("pacc").AttributeDefinition;
|
|
203
172
|
};
|
|
204
173
|
})[];
|
|
205
|
-
extends:
|
|
206
|
-
name: string;
|
|
207
|
-
key: string;
|
|
208
|
-
attributes: {
|
|
209
|
-
owner: {
|
|
210
|
-
type: string;
|
|
211
|
-
isKey: boolean;
|
|
212
|
-
writable: boolean;
|
|
213
|
-
mandatory: boolean;
|
|
214
|
-
collection: boolean;
|
|
215
|
-
private?: boolean;
|
|
216
|
-
depends?: string;
|
|
217
|
-
description?: string;
|
|
218
|
-
default?: any;
|
|
219
|
-
set?: Function;
|
|
220
|
-
get?: Function;
|
|
221
|
-
prepareValue?: Function;
|
|
222
|
-
values?: Set<any>;
|
|
223
|
-
externalName?: string;
|
|
224
|
-
env?: string[] | string;
|
|
225
|
-
additionalValues?: object;
|
|
226
|
-
};
|
|
227
|
-
type: import("pacc").AttributeDefinition;
|
|
228
|
-
name: import("pacc").AttributeDefinition;
|
|
229
|
-
description: import("pacc").AttributeDefinition;
|
|
230
|
-
priority: import("pacc").AttributeDefinition;
|
|
231
|
-
directory: import("pacc").AttributeDefinition;
|
|
232
|
-
packaging: import("pacc").AttributeDefinition;
|
|
233
|
-
disabled: import("pacc").AttributeDefinition;
|
|
234
|
-
tags: import("pacc").AttributeDefinition;
|
|
235
|
-
};
|
|
236
|
-
};
|
|
174
|
+
extends: typeof import("pmcf").Base;
|
|
237
175
|
specializations: {};
|
|
238
176
|
factoryFor(owner: any, value: any): any;
|
|
239
177
|
key: string;
|
|
@@ -309,38 +247,7 @@ export class MosquittoService extends Service {
|
|
|
309
247
|
owners: (string | {
|
|
310
248
|
name: string;
|
|
311
249
|
owners: string[];
|
|
312
|
-
extends:
|
|
313
|
-
name: string;
|
|
314
|
-
key: string;
|
|
315
|
-
attributes: {
|
|
316
|
-
owner: {
|
|
317
|
-
type: string;
|
|
318
|
-
isKey: boolean;
|
|
319
|
-
writable: boolean;
|
|
320
|
-
mandatory: boolean;
|
|
321
|
-
collection: boolean;
|
|
322
|
-
private?: boolean;
|
|
323
|
-
depends?: string;
|
|
324
|
-
description?: string;
|
|
325
|
-
default?: any;
|
|
326
|
-
set?: Function;
|
|
327
|
-
get?: Function;
|
|
328
|
-
prepareValue?: Function;
|
|
329
|
-
values?: Set<any>;
|
|
330
|
-
externalName?: string;
|
|
331
|
-
env?: string[] | string;
|
|
332
|
-
additionalValues?: object;
|
|
333
|
-
};
|
|
334
|
-
type: import("pacc").AttributeDefinition;
|
|
335
|
-
name: import("pacc").AttributeDefinition;
|
|
336
|
-
description: import("pacc").AttributeDefinition;
|
|
337
|
-
priority: import("pacc").AttributeDefinition;
|
|
338
|
-
directory: import("pacc").AttributeDefinition;
|
|
339
|
-
packaging: import("pacc").AttributeDefinition;
|
|
340
|
-
disabled: import("pacc").AttributeDefinition;
|
|
341
|
-
tags: import("pacc").AttributeDefinition;
|
|
342
|
-
};
|
|
343
|
-
};
|
|
250
|
+
extends: typeof import("pmcf").Base;
|
|
344
251
|
key: string;
|
|
345
252
|
attributes: {
|
|
346
253
|
networkInterfaces: {
|
|
@@ -505,38 +412,7 @@ export class MosquittoService extends Service {
|
|
|
505
412
|
address: import("pacc").AttributeDefinition;
|
|
506
413
|
};
|
|
507
414
|
})[];
|
|
508
|
-
extends:
|
|
509
|
-
name: string;
|
|
510
|
-
key: string;
|
|
511
|
-
attributes: {
|
|
512
|
-
owner: {
|
|
513
|
-
type: string;
|
|
514
|
-
isKey: boolean;
|
|
515
|
-
writable: boolean;
|
|
516
|
-
mandatory: boolean;
|
|
517
|
-
collection: boolean;
|
|
518
|
-
private?: boolean;
|
|
519
|
-
depends?: string;
|
|
520
|
-
description?: string;
|
|
521
|
-
default?: any;
|
|
522
|
-
set?: Function;
|
|
523
|
-
get?: Function;
|
|
524
|
-
prepareValue?: Function;
|
|
525
|
-
values?: Set<any>;
|
|
526
|
-
externalName?: string;
|
|
527
|
-
env?: string[] | string;
|
|
528
|
-
additionalValues?: object;
|
|
529
|
-
};
|
|
530
|
-
type: import("pacc").AttributeDefinition;
|
|
531
|
-
name: import("pacc").AttributeDefinition;
|
|
532
|
-
description: import("pacc").AttributeDefinition;
|
|
533
|
-
priority: import("pacc").AttributeDefinition;
|
|
534
|
-
directory: import("pacc").AttributeDefinition;
|
|
535
|
-
packaging: import("pacc").AttributeDefinition;
|
|
536
|
-
disabled: import("pacc").AttributeDefinition;
|
|
537
|
-
tags: import("pacc").AttributeDefinition;
|
|
538
|
-
};
|
|
539
|
-
};
|
|
415
|
+
extends: typeof import("pmcf").Base;
|
|
540
416
|
specializations: {};
|
|
541
417
|
factoryFor(owner: any, value: any): any;
|
|
542
418
|
key: string;
|
|
@@ -610,38 +486,7 @@ export class MosquittoService extends Service {
|
|
|
610
486
|
owners: (string | {
|
|
611
487
|
name: string;
|
|
612
488
|
owners: string[];
|
|
613
|
-
extends:
|
|
614
|
-
name: string;
|
|
615
|
-
key: string;
|
|
616
|
-
attributes: {
|
|
617
|
-
owner: {
|
|
618
|
-
type: string;
|
|
619
|
-
isKey: boolean;
|
|
620
|
-
writable: boolean;
|
|
621
|
-
mandatory: boolean;
|
|
622
|
-
collection: boolean;
|
|
623
|
-
private?: boolean;
|
|
624
|
-
depends?: string;
|
|
625
|
-
description?: string;
|
|
626
|
-
default?: any;
|
|
627
|
-
set?: Function;
|
|
628
|
-
get?: Function;
|
|
629
|
-
prepareValue?: Function;
|
|
630
|
-
values?: Set<any>;
|
|
631
|
-
externalName?: string;
|
|
632
|
-
env?: string[] | string;
|
|
633
|
-
additionalValues?: object;
|
|
634
|
-
};
|
|
635
|
-
type: import("pacc").AttributeDefinition;
|
|
636
|
-
name: import("pacc").AttributeDefinition;
|
|
637
|
-
description: import("pacc").AttributeDefinition;
|
|
638
|
-
priority: import("pacc").AttributeDefinition;
|
|
639
|
-
directory: import("pacc").AttributeDefinition;
|
|
640
|
-
packaging: import("pacc").AttributeDefinition;
|
|
641
|
-
disabled: import("pacc").AttributeDefinition;
|
|
642
|
-
tags: import("pacc").AttributeDefinition;
|
|
643
|
-
};
|
|
644
|
-
};
|
|
489
|
+
extends: typeof import("pmcf").Base;
|
|
645
490
|
key: string;
|
|
646
491
|
attributes: {
|
|
647
492
|
networkInterfaces: {
|