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.
Files changed (61) hide show
  1. package/package.json +1 -1
  2. package/src/base.mjs +3 -3
  3. package/src/cluster.mjs +1 -1
  4. package/src/extra-source-service.mjs +1 -1
  5. package/src/filter.mjs +1 -1
  6. package/src/host.mjs +3 -8
  7. package/src/location.mjs +1 -1
  8. package/src/network-interfaces/ethernet.mjs +1 -1
  9. package/src/network-interfaces/loopback.mjs +1 -1
  10. package/src/network-interfaces/network-interface.mjs +8 -8
  11. package/src/network-interfaces/tun.mjs +1 -1
  12. package/src/network-interfaces/wireguard.mjs +1 -1
  13. package/src/network-interfaces/wlan.mjs +1 -1
  14. package/src/network-support.mjs +2 -2
  15. package/src/network.mjs +3 -3
  16. package/src/owner.mjs +1 -1
  17. package/src/root.mjs +1 -1
  18. package/src/service.mjs +6 -6
  19. package/src/services/bind.mjs +25 -20
  20. package/src/services/chrony.mjs +1 -1
  21. package/src/services/headscale.mjs +1 -1
  22. package/src/services/influxdb.mjs +2 -2
  23. package/src/services/kea.mjs +2 -2
  24. package/src/services/mosquitto.mjs +3 -3
  25. package/src/services/openldap.mjs +4 -4
  26. package/src/services/systemd-journal-remote.mjs +1 -1
  27. package/src/services/systemd-journal-upload.mjs +1 -1
  28. package/src/services/systemd-journal.mjs +1 -1
  29. package/src/services/systemd-resolved.mjs +1 -1
  30. package/src/services/systemd-timesyncd.mjs +1 -1
  31. package/src/subnet.mjs +1 -1
  32. package/src/types.mjs +8 -7
  33. package/types/base.d.mts +1 -1
  34. package/types/cluster.d.mts +6 -6
  35. package/types/extra-source-service.d.mts +4 -4
  36. package/types/host.d.mts +2 -2
  37. package/types/location.d.mts +7 -7
  38. package/types/network-interfaces/ethernet.d.mts +6 -6
  39. package/types/network-interfaces/loopback.d.mts +5 -5
  40. package/types/network-interfaces/network-interface.d.mts +4 -4
  41. package/types/network-interfaces/tun.d.mts +5 -5
  42. package/types/network-interfaces/wireguard.d.mts +5 -5
  43. package/types/network-interfaces/wlan.d.mts +8 -8
  44. package/types/network-support.d.mts +2 -2
  45. package/types/network.d.mts +4 -4
  46. package/types/owner.d.mts +3 -3
  47. package/types/root.d.mts +8 -8
  48. package/types/service.d.mts +6 -6
  49. package/types/services/bind.d.mts +11 -11
  50. package/types/services/chrony.d.mts +6 -6
  51. package/types/services/headscale.d.mts +6 -6
  52. package/types/services/influxdb.d.mts +5 -5
  53. package/types/services/kea.d.mts +5 -5
  54. package/types/services/mosquitto.d.mts +6 -6
  55. package/types/services/openldap.d.mts +6 -6
  56. package/types/services/systemd-journal-remote.d.mts +5 -5
  57. package/types/services/systemd-journal-upload.d.mts +5 -5
  58. package/types/services/systemd-journal.d.mts +5 -5
  59. package/types/services/systemd-resolved.d.mts +6 -6
  60. package/types/services/systemd-timesyncd.d.mts +6 -6
  61. 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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
415
- addresses: {
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
- _addresses: any[];
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 addresses(value: any[]);
602
- get addresses(): any[];
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(sources: any, packageData: any): Promise<any>;
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {};
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {};
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
402
+ attributes: {
403
403
  "metrics-disabled": {
404
404
  isCommonOption: boolean;
405
405
  type: string;
@@ -8,7 +8,7 @@ export class KeaService extends Service {
8
8
  extends: {
9
9
  name: string;
10
10
  owners: any[];
11
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {};
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {};
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {};
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {
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
- properties: {};
414
+ attributes: {};
415
415
  service: {};
416
416
  };
417
417
  get systemdServices(): string;
@@ -5,7 +5,7 @@ export class Subnet extends Base {
5
5
  owners: string[];
6
6
  priority: number;
7
7
  constructWithIdentifierOnly: boolean;
8
- properties: {
8
+ attributes: {
9
9
  address: {
10
10
  isKey: boolean;
11
11
  type: string;