pmcf 3.10.0 → 3.10.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 +1 -1
- package/src/base.mjs +3 -3
- package/src/cluster.mjs +1 -1
- package/src/extra-source-service.mjs +1 -1
- package/src/filter.mjs +1 -1
- package/src/host.mjs +3 -8
- package/src/location.mjs +1 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/loopback.mjs +1 -1
- package/src/network-interfaces/network-interface.mjs +8 -8
- package/src/network-interfaces/tun.mjs +1 -1
- package/src/network-interfaces/wireguard.mjs +1 -1
- package/src/network-interfaces/wlan.mjs +1 -1
- package/src/network-support.mjs +2 -2
- package/src/network.mjs +3 -3
- package/src/owner.mjs +1 -1
- package/src/root.mjs +1 -1
- package/src/service.mjs +6 -6
- package/src/services/bind.mjs +25 -20
- package/src/services/chrony.mjs +1 -1
- package/src/services/headscale.mjs +1 -1
- package/src/services/influxdb.mjs +2 -2
- package/src/services/kea.mjs +2 -2
- package/src/services/mosquitto.mjs +3 -3
- package/src/services/openldap.mjs +4 -4
- package/src/services/systemd-journal-remote.mjs +1 -1
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/services/systemd-journal.mjs +1 -1
- package/src/services/systemd-resolved.mjs +1 -1
- package/src/services/systemd-timesyncd.mjs +1 -1
- package/src/subnet.mjs +1 -1
- package/src/types.mjs +8 -7
- package/types/base.d.mts +1 -1
- package/types/cluster.d.mts +6 -6
- package/types/extra-source-service.d.mts +4 -4
- package/types/host.d.mts +2 -2
- package/types/location.d.mts +7 -7
- package/types/network-interfaces/ethernet.d.mts +6 -6
- package/types/network-interfaces/loopback.d.mts +5 -5
- package/types/network-interfaces/network-interface.d.mts +4 -4
- package/types/network-interfaces/tun.d.mts +5 -5
- package/types/network-interfaces/wireguard.d.mts +5 -5
- package/types/network-interfaces/wlan.d.mts +8 -8
- package/types/network-support.d.mts +2 -2
- package/types/network.d.mts +4 -4
- package/types/owner.d.mts +3 -3
- package/types/root.d.mts +8 -8
- package/types/service.d.mts +6 -6
- package/types/services/bind.d.mts +11 -11
- package/types/services/chrony.d.mts +6 -6
- package/types/services/headscale.d.mts +6 -6
- package/types/services/influxdb.d.mts +5 -5
- package/types/services/kea.d.mts +5 -5
- package/types/services/mosquitto.d.mts +6 -6
- package/types/services/openldap.d.mts +6 -6
- package/types/services/systemd-journal-remote.d.mts +5 -5
- package/types/services/systemd-journal-upload.d.mts +5 -5
- package/types/services/systemd-journal.d.mts +5 -5
- package/types/services/systemd-resolved.d.mts +6 -6
- package/types/services/systemd-timesyncd.d.mts +6 -6
- package/types/subnet.d.mts +1 -1
|
@@ -8,7 +8,7 @@ export class BindService extends ExtraSourceService {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class BindService extends ExtraSourceService {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -210,7 +210,7 @@ export class BindService extends ExtraSourceService {
|
|
|
210
210
|
extends: {
|
|
211
211
|
name: string;
|
|
212
212
|
owners: any[];
|
|
213
|
-
|
|
213
|
+
attributes: {
|
|
214
214
|
owner: {
|
|
215
215
|
type: string;
|
|
216
216
|
collection: boolean;
|
|
@@ -254,7 +254,7 @@ export class BindService extends ExtraSourceService {
|
|
|
254
254
|
};
|
|
255
255
|
specializations: {};
|
|
256
256
|
factoryFor(owner: any, value: any): any;
|
|
257
|
-
|
|
257
|
+
attributes: {
|
|
258
258
|
alias: {
|
|
259
259
|
type: string;
|
|
260
260
|
isKey: boolean;
|
|
@@ -402,7 +402,7 @@ export class BindService extends ExtraSourceService {
|
|
|
402
402
|
};
|
|
403
403
|
};
|
|
404
404
|
priority: number;
|
|
405
|
-
|
|
405
|
+
attributes: {
|
|
406
406
|
source: {
|
|
407
407
|
type: string[];
|
|
408
408
|
collection: boolean;
|
|
@@ -411,8 +411,8 @@ export class BindService extends ExtraSourceService {
|
|
|
411
411
|
};
|
|
412
412
|
};
|
|
413
413
|
priority: number;
|
|
414
|
-
|
|
415
|
-
|
|
414
|
+
attributes: {
|
|
415
|
+
zones: {
|
|
416
416
|
type: string[];
|
|
417
417
|
collection: boolean;
|
|
418
418
|
writable: boolean;
|
|
@@ -586,7 +586,7 @@ export class BindService extends ExtraSourceService {
|
|
|
586
586
|
hasLinkLocalAdresses: any;
|
|
587
587
|
hasLocationRecord: boolean;
|
|
588
588
|
notify: boolean;
|
|
589
|
-
|
|
589
|
+
_zones: any[];
|
|
590
590
|
_trusted: any[];
|
|
591
591
|
_exclude: Set<any>;
|
|
592
592
|
_excludeInterfaceKinds: Set<any>;
|
|
@@ -598,8 +598,8 @@ export class BindService extends ExtraSourceService {
|
|
|
598
598
|
_systemd: string;
|
|
599
599
|
views: {};
|
|
600
600
|
get soaUpdates(): number[];
|
|
601
|
-
set
|
|
602
|
-
get
|
|
601
|
+
set zones(value: any[]);
|
|
602
|
+
get zones(): any[];
|
|
603
603
|
set protected(value: any);
|
|
604
604
|
get protected(): any;
|
|
605
605
|
set internal(value: any);
|
|
@@ -612,7 +612,7 @@ export class BindService extends ExtraSourceService {
|
|
|
612
612
|
get excludeInterfaceKinds(): Set<any>;
|
|
613
613
|
preparePackages(dir: any): AsyncGenerator<any, void, unknown>;
|
|
614
614
|
generateOutfacingDefs(sources: any, packageData: any): AsyncGenerator<any, void, unknown>;
|
|
615
|
-
generateZoneDefs(
|
|
615
|
+
generateZoneDefs(zoneSources: any, packageData: any): Promise<any>;
|
|
616
616
|
outfacingZones(host: any, view: any, records: any): any;
|
|
617
617
|
get defaultRecords(): {
|
|
618
618
|
type: any;
|
|
@@ -8,7 +8,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -210,7 +210,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
210
210
|
extends: {
|
|
211
211
|
name: string;
|
|
212
212
|
owners: any[];
|
|
213
|
-
|
|
213
|
+
attributes: {
|
|
214
214
|
owner: {
|
|
215
215
|
type: string;
|
|
216
216
|
collection: boolean;
|
|
@@ -254,7 +254,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
254
254
|
};
|
|
255
255
|
specializations: {};
|
|
256
256
|
factoryFor(owner: any, value: any): any;
|
|
257
|
-
|
|
257
|
+
attributes: {
|
|
258
258
|
alias: {
|
|
259
259
|
type: string;
|
|
260
260
|
isKey: boolean;
|
|
@@ -402,7 +402,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
402
402
|
};
|
|
403
403
|
};
|
|
404
404
|
priority: number;
|
|
405
|
-
|
|
405
|
+
attributes: {
|
|
406
406
|
source: {
|
|
407
407
|
type: string[];
|
|
408
408
|
collection: boolean;
|
|
@@ -411,7 +411,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
411
411
|
};
|
|
412
412
|
};
|
|
413
413
|
priority: number;
|
|
414
|
-
|
|
414
|
+
attributes: {};
|
|
415
415
|
service: {
|
|
416
416
|
extends: string[];
|
|
417
417
|
services: {
|
|
@@ -8,7 +8,7 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -210,7 +210,7 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
210
210
|
extends: {
|
|
211
211
|
name: string;
|
|
212
212
|
owners: any[];
|
|
213
|
-
|
|
213
|
+
attributes: {
|
|
214
214
|
owner: {
|
|
215
215
|
type: string;
|
|
216
216
|
collection: boolean;
|
|
@@ -254,7 +254,7 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
254
254
|
};
|
|
255
255
|
specializations: {};
|
|
256
256
|
factoryFor(owner: any, value: any): any;
|
|
257
|
-
|
|
257
|
+
attributes: {
|
|
258
258
|
alias: {
|
|
259
259
|
type: string;
|
|
260
260
|
isKey: boolean;
|
|
@@ -402,7 +402,7 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
402
402
|
};
|
|
403
403
|
};
|
|
404
404
|
priority: number;
|
|
405
|
-
|
|
405
|
+
attributes: {
|
|
406
406
|
source: {
|
|
407
407
|
type: string[];
|
|
408
408
|
collection: boolean;
|
|
@@ -411,7 +411,7 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
411
411
|
};
|
|
412
412
|
};
|
|
413
413
|
priority: number;
|
|
414
|
-
|
|
414
|
+
attributes: {};
|
|
415
415
|
service: {
|
|
416
416
|
endpoints: {
|
|
417
417
|
family: string;
|
|
@@ -8,7 +8,7 @@ export class InfluxdbService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class InfluxdbService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class InfluxdbService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class InfluxdbService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class InfluxdbService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {
|
|
403
403
|
"metrics-disabled": {
|
|
404
404
|
isCommonOption: boolean;
|
|
405
405
|
type: string;
|
package/types/services/kea.d.mts
CHANGED
|
@@ -8,7 +8,7 @@ export class KeaService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class KeaService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class KeaService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class KeaService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class KeaService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {
|
|
403
403
|
"ddns-send-updates": {
|
|
404
404
|
isCommonOption: boolean;
|
|
405
405
|
type: string;
|
|
@@ -8,7 +8,7 @@ export class MosquittoService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class MosquittoService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class MosquittoService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class MosquittoService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class MosquittoService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {
|
|
403
403
|
log_timestamp: {
|
|
404
404
|
isCommonOption: boolean;
|
|
405
405
|
type: string;
|
|
@@ -440,7 +440,7 @@ export class MosquittoService extends Service {
|
|
|
440
440
|
dir: any;
|
|
441
441
|
sources: FileContentProvider[];
|
|
442
442
|
outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
443
|
-
|
|
443
|
+
attributes: {
|
|
444
444
|
name: string;
|
|
445
445
|
description: string;
|
|
446
446
|
access: string;
|
|
@@ -8,7 +8,7 @@ export class OpenLDAPService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class OpenLDAPService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class OpenLDAPService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class OpenLDAPService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class OpenLDAPService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {
|
|
403
403
|
baseDN: {
|
|
404
404
|
writable: boolean;
|
|
405
405
|
type: string;
|
|
@@ -470,7 +470,7 @@ export class OpenLDAPService extends Service {
|
|
|
470
470
|
dir: any;
|
|
471
471
|
sources: FileContentProvider[];
|
|
472
472
|
outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
473
|
-
|
|
473
|
+
attributes: {
|
|
474
474
|
name: string;
|
|
475
475
|
description: string;
|
|
476
476
|
access: string;
|
|
@@ -8,7 +8,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {};
|
|
403
403
|
services: {
|
|
404
404
|
endpoints: {
|
|
405
405
|
family: string;
|
|
@@ -8,7 +8,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {
|
|
403
403
|
url: {
|
|
404
404
|
type: string;
|
|
405
405
|
isKey: boolean;
|
|
@@ -8,7 +8,7 @@ export class SystemdJournalService extends Service {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class SystemdJournalService extends Service {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -207,7 +207,7 @@ export class SystemdJournalService extends Service {
|
|
|
207
207
|
extends: {
|
|
208
208
|
name: string;
|
|
209
209
|
owners: any[];
|
|
210
|
-
|
|
210
|
+
attributes: {
|
|
211
211
|
owner: {
|
|
212
212
|
type: string;
|
|
213
213
|
collection: boolean;
|
|
@@ -251,7 +251,7 @@ export class SystemdJournalService extends Service {
|
|
|
251
251
|
};
|
|
252
252
|
specializations: {};
|
|
253
253
|
factoryFor(owner: any, value: any): any;
|
|
254
|
-
|
|
254
|
+
attributes: {
|
|
255
255
|
alias: {
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
@@ -399,7 +399,7 @@ export class SystemdJournalService extends Service {
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
priority: number;
|
|
402
|
-
|
|
402
|
+
attributes: {};
|
|
403
403
|
service: {};
|
|
404
404
|
};
|
|
405
405
|
get type(): string;
|
|
@@ -8,7 +8,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -210,7 +210,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
210
210
|
extends: {
|
|
211
211
|
name: string;
|
|
212
212
|
owners: any[];
|
|
213
|
-
|
|
213
|
+
attributes: {
|
|
214
214
|
owner: {
|
|
215
215
|
type: string;
|
|
216
216
|
collection: boolean;
|
|
@@ -254,7 +254,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
254
254
|
};
|
|
255
255
|
specializations: {};
|
|
256
256
|
factoryFor(owner: any, value: any): any;
|
|
257
|
-
|
|
257
|
+
attributes: {
|
|
258
258
|
alias: {
|
|
259
259
|
type: string;
|
|
260
260
|
isKey: boolean;
|
|
@@ -402,7 +402,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
402
402
|
};
|
|
403
403
|
};
|
|
404
404
|
priority: number;
|
|
405
|
-
|
|
405
|
+
attributes: {
|
|
406
406
|
source: {
|
|
407
407
|
type: string[];
|
|
408
408
|
collection: boolean;
|
|
@@ -411,7 +411,7 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
411
411
|
};
|
|
412
412
|
};
|
|
413
413
|
priority: number;
|
|
414
|
-
|
|
414
|
+
attributes: {};
|
|
415
415
|
service: {};
|
|
416
416
|
};
|
|
417
417
|
get systemdServices(): string;
|
|
@@ -8,7 +8,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
alias: {
|
|
57
57
|
type: string;
|
|
58
58
|
isKey: boolean;
|
|
@@ -210,7 +210,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
210
210
|
extends: {
|
|
211
211
|
name: string;
|
|
212
212
|
owners: any[];
|
|
213
|
-
|
|
213
|
+
attributes: {
|
|
214
214
|
owner: {
|
|
215
215
|
type: string;
|
|
216
216
|
collection: boolean;
|
|
@@ -254,7 +254,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
254
254
|
};
|
|
255
255
|
specializations: {};
|
|
256
256
|
factoryFor(owner: any, value: any): any;
|
|
257
|
-
|
|
257
|
+
attributes: {
|
|
258
258
|
alias: {
|
|
259
259
|
type: string;
|
|
260
260
|
isKey: boolean;
|
|
@@ -402,7 +402,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
402
402
|
};
|
|
403
403
|
};
|
|
404
404
|
priority: number;
|
|
405
|
-
|
|
405
|
+
attributes: {
|
|
406
406
|
source: {
|
|
407
407
|
type: string[];
|
|
408
408
|
collection: boolean;
|
|
@@ -411,7 +411,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
411
411
|
};
|
|
412
412
|
};
|
|
413
413
|
priority: number;
|
|
414
|
-
|
|
414
|
+
attributes: {};
|
|
415
415
|
service: {};
|
|
416
416
|
};
|
|
417
417
|
get systemdServices(): string;
|