pmcf 3.13.5 → 3.13.7
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 +4 -4
- package/src/cluster.mjs +0 -1
- package/src/extra-source-service.mjs +2 -2
- package/src/host.mjs +0 -1
- package/src/location.mjs +0 -1
- package/src/module.mjs +1 -0
- package/src/network-interfaces/ethernet.mjs +1 -2
- package/src/network-interfaces/loopback.mjs +1 -2
- package/src/network-interfaces/network-interface.mjs +0 -1
- package/src/network-interfaces/tun.mjs +1 -2
- package/src/network-interfaces/wireguard.mjs +1 -2
- package/src/network-interfaces/wlan.mjs +1 -2
- package/src/network.mjs +0 -1
- package/src/owner.mjs +0 -1
- package/src/root.mjs +1 -2
- package/src/service.mjs +0 -2
- package/src/services/bind.mjs +22 -4
- package/src/services/chrony.mjs +2 -7
- package/src/services/headscale.mjs +3 -8
- package/src/services/influxdb.mjs +2 -2
- package/src/services/kea.mjs +1 -2
- package/src/services/mosquitto.mjs +1 -2
- package/src/services/openldap.mjs +1 -2
- package/src/services/systemd-journal-remote.mjs +1 -2
- package/src/services/systemd-journal-upload.mjs +1 -2
- package/src/services/systemd-journal.mjs +1 -2
- package/src/services/systemd-resolved.mjs +1 -2
- package/src/services/systemd-timesyncd.mjs +0 -1
- package/src/services/tailscale.mjs +24 -0
- package/src/subnet.mjs +0 -1
- package/src/types.mjs +2 -4
- package/types/cluster.d.mts +0 -4
- package/types/extra-source-service.d.mts +504 -206
- package/types/host.d.mts +0 -1
- package/types/location.d.mts +0 -5
- package/types/module.d.mts +1 -0
- package/types/network-interfaces/ethernet.d.mts +4 -14
- package/types/network-interfaces/loopback.d.mts +3 -12
- package/types/network-interfaces/network-interface.d.mts +0 -8
- package/types/network-interfaces/tun.d.mts +3 -12
- package/types/network-interfaces/wireguard.d.mts +3 -12
- package/types/network-interfaces/wlan.d.mts +854 -868
- package/types/network.d.mts +0 -6
- package/types/owner.d.mts +0 -2
- package/types/root.d.mts +0 -6
- package/types/service.d.mts +0 -6
- package/types/services/bind.d.mts +939 -644
- package/types/services/chrony.d.mts +939 -644
- package/types/services/headscale.d.mts +262 -492
- package/types/services/influxdb.d.mts +201 -207
- package/types/services/kea.d.mts +201 -207
- package/types/services/mosquitto.d.mts +201 -207
- package/types/services/openldap.d.mts +201 -207
- package/types/services/systemd-journal-remote.d.mts +201 -207
- package/types/services/systemd-journal-upload.d.mts +201 -207
- package/types/services/systemd-journal.d.mts +201 -207
- package/types/services/systemd-resolved.d.mts +939 -644
- package/types/services/systemd-timesyncd.d.mts +424 -129
- package/types/services/tailscale.d.mts +818 -0
- package/types/subnet.d.mts +0 -1
- package/types/types.d.mts +1 -1
|
@@ -3,20 +3,69 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
3
3
|
name: string;
|
|
4
4
|
extends: {
|
|
5
5
|
name: string;
|
|
6
|
-
|
|
6
|
+
extends: {
|
|
7
7
|
name: string;
|
|
8
|
-
|
|
9
|
-
owners: string[];
|
|
10
|
-
extends: {
|
|
8
|
+
owners: (string | {
|
|
11
9
|
name: string;
|
|
10
|
+
owners: string[];
|
|
11
|
+
extends: {
|
|
12
|
+
name: string;
|
|
13
|
+
key: string;
|
|
14
|
+
attributes: {
|
|
15
|
+
owner: {
|
|
16
|
+
type: string;
|
|
17
|
+
isKey: boolean;
|
|
18
|
+
writable: boolean;
|
|
19
|
+
mandatory: boolean;
|
|
20
|
+
collection: boolean;
|
|
21
|
+
private?: boolean;
|
|
22
|
+
depends?: string;
|
|
23
|
+
description?: string;
|
|
24
|
+
default?: any;
|
|
25
|
+
set?: Function;
|
|
26
|
+
get?: Function;
|
|
27
|
+
prepareValue?: Function;
|
|
28
|
+
values?: Set<any>;
|
|
29
|
+
externalName?: string;
|
|
30
|
+
env?: string[] | string;
|
|
31
|
+
additionalValues?: object;
|
|
32
|
+
};
|
|
33
|
+
type: import("pacc").AttributeDefinition;
|
|
34
|
+
name: import("pacc").AttributeDefinition;
|
|
35
|
+
description: import("pacc").AttributeDefinition;
|
|
36
|
+
priority: import("pacc").AttributeDefinition;
|
|
37
|
+
directory: import("pacc").AttributeDefinition;
|
|
38
|
+
packaging: import("pacc").AttributeDefinition;
|
|
39
|
+
disabled: import("pacc").AttributeDefinition;
|
|
40
|
+
tags: import("pacc").AttributeDefinition;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
12
43
|
key: string;
|
|
13
44
|
attributes: {
|
|
14
|
-
|
|
45
|
+
networkInterfaces: {
|
|
15
46
|
type: string;
|
|
47
|
+
collection: boolean;
|
|
16
48
|
isKey: boolean;
|
|
17
49
|
writable: boolean;
|
|
18
50
|
mandatory: boolean;
|
|
51
|
+
private?: boolean;
|
|
52
|
+
depends?: string;
|
|
53
|
+
description?: string;
|
|
54
|
+
default?: any;
|
|
55
|
+
set?: Function;
|
|
56
|
+
get?: Function;
|
|
57
|
+
prepareValue?: Function;
|
|
58
|
+
values?: Set<any>;
|
|
59
|
+
externalName?: string;
|
|
60
|
+
env?: string[] | string;
|
|
61
|
+
additionalValues?: object;
|
|
62
|
+
};
|
|
63
|
+
services: {
|
|
64
|
+
type: string;
|
|
19
65
|
collection: boolean;
|
|
66
|
+
isKey: boolean;
|
|
67
|
+
writable: boolean;
|
|
68
|
+
mandatory: boolean;
|
|
20
69
|
private?: boolean;
|
|
21
70
|
depends?: string;
|
|
22
71
|
description?: string;
|
|
@@ -29,99 +78,170 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
29
78
|
env?: string[] | string;
|
|
30
79
|
additionalValues?: object;
|
|
31
80
|
};
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
81
|
+
aliases: import("pacc").AttributeDefinition;
|
|
82
|
+
os: {
|
|
83
|
+
values: string[];
|
|
84
|
+
type: object;
|
|
85
|
+
isKey: boolean;
|
|
86
|
+
writable: boolean;
|
|
87
|
+
mandatory: boolean;
|
|
88
|
+
collection: boolean;
|
|
89
|
+
private?: boolean;
|
|
90
|
+
depends?: string;
|
|
91
|
+
description?: string;
|
|
92
|
+
default?: any;
|
|
93
|
+
set?: Function;
|
|
94
|
+
get?: Function;
|
|
95
|
+
prepareValue?: Function;
|
|
96
|
+
externalName?: string;
|
|
97
|
+
env?: string[] | string;
|
|
98
|
+
additionalValues?: object;
|
|
99
|
+
};
|
|
100
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
101
|
+
distribution: import("pacc").AttributeDefinition;
|
|
102
|
+
deployment: {
|
|
103
|
+
values: string[];
|
|
104
|
+
type: object;
|
|
105
|
+
isKey: boolean;
|
|
106
|
+
writable: boolean;
|
|
107
|
+
mandatory: boolean;
|
|
108
|
+
collection: boolean;
|
|
109
|
+
private?: boolean;
|
|
110
|
+
depends?: string;
|
|
111
|
+
description?: string;
|
|
112
|
+
default?: any;
|
|
113
|
+
set?: Function;
|
|
114
|
+
get?: Function;
|
|
115
|
+
prepareValue?: Function;
|
|
116
|
+
externalName?: string;
|
|
117
|
+
env?: string[] | string;
|
|
118
|
+
additionalValues?: object;
|
|
119
|
+
};
|
|
120
|
+
weight: import("pacc").AttributeDefinition;
|
|
121
|
+
serial: import("pacc").AttributeDefinition;
|
|
122
|
+
vendor: import("pacc").AttributeDefinition;
|
|
123
|
+
keymap: import("pacc").AttributeDefinition;
|
|
124
|
+
chassis: {
|
|
125
|
+
values: string[];
|
|
126
|
+
type: object;
|
|
127
|
+
isKey: boolean;
|
|
128
|
+
writable: boolean;
|
|
129
|
+
mandatory: boolean;
|
|
130
|
+
collection: boolean;
|
|
131
|
+
private?: boolean;
|
|
132
|
+
depends?: string;
|
|
133
|
+
description?: string;
|
|
134
|
+
default?: any;
|
|
135
|
+
set?: Function;
|
|
136
|
+
get?: Function;
|
|
137
|
+
prepareValue?: Function;
|
|
138
|
+
externalName?: string;
|
|
139
|
+
env?: string[] | string;
|
|
140
|
+
additionalValues?: object;
|
|
141
|
+
};
|
|
142
|
+
architecture: {
|
|
143
|
+
values: string[];
|
|
144
|
+
type: object;
|
|
145
|
+
isKey: boolean;
|
|
146
|
+
writable: boolean;
|
|
147
|
+
mandatory: boolean;
|
|
148
|
+
collection: boolean;
|
|
149
|
+
private?: boolean;
|
|
150
|
+
depends?: string;
|
|
151
|
+
description?: string;
|
|
152
|
+
default?: any;
|
|
153
|
+
set?: Function;
|
|
154
|
+
get?: Function;
|
|
155
|
+
prepareValue?: Function;
|
|
156
|
+
externalName?: string;
|
|
157
|
+
env?: string[] | string;
|
|
158
|
+
additionalValues?: object;
|
|
159
|
+
};
|
|
160
|
+
replaces: import("pacc").AttributeDefinition;
|
|
161
|
+
depends: import("pacc").AttributeDefinition;
|
|
162
|
+
provides: import("pacc").AttributeDefinition;
|
|
163
|
+
extends: {
|
|
164
|
+
type: string;
|
|
165
|
+
collection: boolean;
|
|
166
|
+
isKey: boolean;
|
|
167
|
+
writable: boolean;
|
|
168
|
+
mandatory: boolean;
|
|
169
|
+
private?: boolean;
|
|
170
|
+
depends?: string;
|
|
171
|
+
description?: string;
|
|
172
|
+
default?: any;
|
|
173
|
+
set?: Function;
|
|
174
|
+
get?: Function;
|
|
175
|
+
prepareValue?: Function;
|
|
176
|
+
values?: Set<any>;
|
|
177
|
+
externalName?: string;
|
|
178
|
+
env?: string[] | string;
|
|
179
|
+
additionalValues?: object;
|
|
180
|
+
};
|
|
181
|
+
model: import("pacc").AttributeDefinition;
|
|
182
|
+
isModel: import("pacc").AttributeDefinition;
|
|
183
|
+
hostName: {
|
|
184
|
+
writable: boolean;
|
|
185
|
+
type: object;
|
|
186
|
+
isKey: boolean;
|
|
187
|
+
mandatory: boolean;
|
|
188
|
+
collection: boolean;
|
|
189
|
+
private?: boolean;
|
|
190
|
+
depends?: string;
|
|
191
|
+
description?: string;
|
|
192
|
+
default?: any;
|
|
193
|
+
set?: Function;
|
|
194
|
+
get?: Function;
|
|
195
|
+
prepareValue?: Function;
|
|
196
|
+
values?: Set<any>;
|
|
197
|
+
externalName?: string;
|
|
198
|
+
env?: string[] | string;
|
|
199
|
+
additionalValues?: object;
|
|
200
|
+
};
|
|
201
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
202
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
203
|
+
addresses: import("pacc").AttributeDefinition;
|
|
204
|
+
address: import("pacc").AttributeDefinition;
|
|
98
205
|
};
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
206
|
+
})[];
|
|
207
|
+
extends: {
|
|
208
|
+
name: string;
|
|
209
|
+
key: string;
|
|
210
|
+
attributes: {
|
|
211
|
+
owner: {
|
|
212
|
+
type: string;
|
|
213
|
+
isKey: boolean;
|
|
214
|
+
writable: boolean;
|
|
215
|
+
mandatory: boolean;
|
|
216
|
+
collection: boolean;
|
|
217
|
+
private?: boolean;
|
|
218
|
+
depends?: string;
|
|
219
|
+
description?: string;
|
|
220
|
+
default?: any;
|
|
221
|
+
set?: Function;
|
|
222
|
+
get?: Function;
|
|
223
|
+
prepareValue?: Function;
|
|
224
|
+
values?: Set<any>;
|
|
225
|
+
externalName?: string;
|
|
226
|
+
env?: string[] | string;
|
|
227
|
+
additionalValues?: object;
|
|
228
|
+
};
|
|
229
|
+
type: import("pacc").AttributeDefinition;
|
|
230
|
+
name: import("pacc").AttributeDefinition;
|
|
231
|
+
description: import("pacc").AttributeDefinition;
|
|
232
|
+
priority: import("pacc").AttributeDefinition;
|
|
233
|
+
directory: import("pacc").AttributeDefinition;
|
|
234
|
+
packaging: import("pacc").AttributeDefinition;
|
|
235
|
+
disabled: import("pacc").AttributeDefinition;
|
|
236
|
+
tags: import("pacc").AttributeDefinition;
|
|
118
237
|
};
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
238
|
+
};
|
|
239
|
+
specializations: {};
|
|
240
|
+
factoryFor(owner: any, value: any): any;
|
|
241
|
+
key: string;
|
|
242
|
+
attributes: {
|
|
243
|
+
alias: import("pacc").AttributeDefinition;
|
|
244
|
+
weight: {
|
|
125
245
|
type: object;
|
|
126
246
|
isKey: boolean;
|
|
127
247
|
writable: boolean;
|
|
@@ -134,11 +254,14 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
134
254
|
set?: Function;
|
|
135
255
|
get?: Function;
|
|
136
256
|
prepareValue?: Function;
|
|
257
|
+
values?: Set<any>;
|
|
137
258
|
externalName?: string;
|
|
138
259
|
env?: string[] | string;
|
|
139
260
|
additionalValues?: object;
|
|
140
261
|
};
|
|
141
|
-
|
|
262
|
+
systemd: import("pacc").AttributeDefinition;
|
|
263
|
+
port: import("pacc").AttributeDefinition;
|
|
264
|
+
protocol: {
|
|
142
265
|
values: string[];
|
|
143
266
|
type: object;
|
|
144
267
|
isKey: boolean;
|
|
@@ -156,29 +279,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
156
279
|
env?: string[] | string;
|
|
157
280
|
additionalValues?: object;
|
|
158
281
|
};
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
extends: {
|
|
163
|
-
type: string;
|
|
164
|
-
collection: boolean;
|
|
165
|
-
isKey: boolean;
|
|
166
|
-
writable: boolean;
|
|
167
|
-
mandatory: boolean;
|
|
168
|
-
private?: boolean;
|
|
169
|
-
depends?: string;
|
|
170
|
-
description?: string;
|
|
171
|
-
default?: any;
|
|
172
|
-
set?: Function;
|
|
173
|
-
get?: Function;
|
|
174
|
-
prepareValue?: Function;
|
|
175
|
-
values?: Set<any>;
|
|
176
|
-
externalName?: string;
|
|
177
|
-
env?: string[] | string;
|
|
178
|
-
additionalValues?: object;
|
|
179
|
-
};
|
|
180
|
-
model: import("pacc").AttributeDefinition;
|
|
181
|
-
isModel: import("pacc").AttributeDefinition;
|
|
282
|
+
type: import("pacc").AttributeDefinition;
|
|
283
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
284
|
+
tls: import("pacc").AttributeDefinition;
|
|
182
285
|
hostName: {
|
|
183
286
|
writable: boolean;
|
|
184
287
|
type: object;
|
|
@@ -202,12 +305,11 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
202
305
|
addresses: import("pacc").AttributeDefinition;
|
|
203
306
|
address: import("pacc").AttributeDefinition;
|
|
204
307
|
};
|
|
205
|
-
}
|
|
206
|
-
|
|
308
|
+
};
|
|
309
|
+
specializationOf: {
|
|
207
310
|
name: string;
|
|
208
311
|
owners: (string | {
|
|
209
312
|
name: string;
|
|
210
|
-
priority: number;
|
|
211
313
|
owners: string[];
|
|
212
314
|
extends: {
|
|
213
315
|
name: string;
|
|
@@ -405,7 +507,6 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
405
507
|
address: import("pacc").AttributeDefinition;
|
|
406
508
|
};
|
|
407
509
|
})[];
|
|
408
|
-
priority: number;
|
|
409
510
|
extends: {
|
|
410
511
|
name: string;
|
|
411
512
|
key: string;
|
|
@@ -508,7 +609,205 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
508
609
|
address: import("pacc").AttributeDefinition;
|
|
509
610
|
};
|
|
510
611
|
};
|
|
511
|
-
|
|
612
|
+
owners: (string | {
|
|
613
|
+
name: string;
|
|
614
|
+
owners: string[];
|
|
615
|
+
extends: {
|
|
616
|
+
name: string;
|
|
617
|
+
key: string;
|
|
618
|
+
attributes: {
|
|
619
|
+
owner: {
|
|
620
|
+
type: string;
|
|
621
|
+
isKey: boolean;
|
|
622
|
+
writable: boolean;
|
|
623
|
+
mandatory: boolean;
|
|
624
|
+
collection: boolean;
|
|
625
|
+
private?: boolean;
|
|
626
|
+
depends?: string;
|
|
627
|
+
description?: string;
|
|
628
|
+
default?: any;
|
|
629
|
+
set?: Function;
|
|
630
|
+
get?: Function;
|
|
631
|
+
prepareValue?: Function;
|
|
632
|
+
values?: Set<any>;
|
|
633
|
+
externalName?: string;
|
|
634
|
+
env?: string[] | string;
|
|
635
|
+
additionalValues?: object;
|
|
636
|
+
};
|
|
637
|
+
type: import("pacc").AttributeDefinition;
|
|
638
|
+
name: import("pacc").AttributeDefinition;
|
|
639
|
+
description: import("pacc").AttributeDefinition;
|
|
640
|
+
priority: import("pacc").AttributeDefinition;
|
|
641
|
+
directory: import("pacc").AttributeDefinition;
|
|
642
|
+
packaging: import("pacc").AttributeDefinition;
|
|
643
|
+
disabled: import("pacc").AttributeDefinition;
|
|
644
|
+
tags: import("pacc").AttributeDefinition;
|
|
645
|
+
};
|
|
646
|
+
};
|
|
647
|
+
key: string;
|
|
648
|
+
attributes: {
|
|
649
|
+
networkInterfaces: {
|
|
650
|
+
type: string;
|
|
651
|
+
collection: boolean;
|
|
652
|
+
isKey: boolean;
|
|
653
|
+
writable: boolean;
|
|
654
|
+
mandatory: boolean;
|
|
655
|
+
private?: boolean;
|
|
656
|
+
depends?: string;
|
|
657
|
+
description?: string;
|
|
658
|
+
default?: any;
|
|
659
|
+
set?: Function;
|
|
660
|
+
get?: Function;
|
|
661
|
+
prepareValue?: Function;
|
|
662
|
+
values?: Set<any>;
|
|
663
|
+
externalName?: string;
|
|
664
|
+
env?: string[] | string;
|
|
665
|
+
additionalValues?: object;
|
|
666
|
+
};
|
|
667
|
+
services: {
|
|
668
|
+
type: string;
|
|
669
|
+
collection: boolean;
|
|
670
|
+
isKey: boolean;
|
|
671
|
+
writable: boolean;
|
|
672
|
+
mandatory: boolean;
|
|
673
|
+
private?: boolean;
|
|
674
|
+
depends?: string;
|
|
675
|
+
description?: string;
|
|
676
|
+
default?: any;
|
|
677
|
+
set?: Function;
|
|
678
|
+
get?: Function;
|
|
679
|
+
prepareValue?: Function;
|
|
680
|
+
values?: Set<any>;
|
|
681
|
+
externalName?: string;
|
|
682
|
+
env?: string[] | string;
|
|
683
|
+
additionalValues?: object;
|
|
684
|
+
};
|
|
685
|
+
aliases: import("pacc").AttributeDefinition;
|
|
686
|
+
os: {
|
|
687
|
+
values: string[];
|
|
688
|
+
type: object;
|
|
689
|
+
isKey: boolean;
|
|
690
|
+
writable: boolean;
|
|
691
|
+
mandatory: boolean;
|
|
692
|
+
collection: boolean;
|
|
693
|
+
private?: boolean;
|
|
694
|
+
depends?: string;
|
|
695
|
+
description?: string;
|
|
696
|
+
default?: any;
|
|
697
|
+
set?: Function;
|
|
698
|
+
get?: Function;
|
|
699
|
+
prepareValue?: Function;
|
|
700
|
+
externalName?: string;
|
|
701
|
+
env?: string[] | string;
|
|
702
|
+
additionalValues?: object;
|
|
703
|
+
};
|
|
704
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
705
|
+
distribution: import("pacc").AttributeDefinition;
|
|
706
|
+
deployment: {
|
|
707
|
+
values: string[];
|
|
708
|
+
type: object;
|
|
709
|
+
isKey: boolean;
|
|
710
|
+
writable: boolean;
|
|
711
|
+
mandatory: boolean;
|
|
712
|
+
collection: boolean;
|
|
713
|
+
private?: boolean;
|
|
714
|
+
depends?: string;
|
|
715
|
+
description?: string;
|
|
716
|
+
default?: any;
|
|
717
|
+
set?: Function;
|
|
718
|
+
get?: Function;
|
|
719
|
+
prepareValue?: Function;
|
|
720
|
+
externalName?: string;
|
|
721
|
+
env?: string[] | string;
|
|
722
|
+
additionalValues?: object;
|
|
723
|
+
};
|
|
724
|
+
weight: import("pacc").AttributeDefinition;
|
|
725
|
+
serial: import("pacc").AttributeDefinition;
|
|
726
|
+
vendor: import("pacc").AttributeDefinition;
|
|
727
|
+
keymap: import("pacc").AttributeDefinition;
|
|
728
|
+
chassis: {
|
|
729
|
+
values: string[];
|
|
730
|
+
type: object;
|
|
731
|
+
isKey: boolean;
|
|
732
|
+
writable: boolean;
|
|
733
|
+
mandatory: boolean;
|
|
734
|
+
collection: boolean;
|
|
735
|
+
private?: boolean;
|
|
736
|
+
depends?: string;
|
|
737
|
+
description?: string;
|
|
738
|
+
default?: any;
|
|
739
|
+
set?: Function;
|
|
740
|
+
get?: Function;
|
|
741
|
+
prepareValue?: Function;
|
|
742
|
+
externalName?: string;
|
|
743
|
+
env?: string[] | string;
|
|
744
|
+
additionalValues?: object;
|
|
745
|
+
};
|
|
746
|
+
architecture: {
|
|
747
|
+
values: string[];
|
|
748
|
+
type: object;
|
|
749
|
+
isKey: boolean;
|
|
750
|
+
writable: boolean;
|
|
751
|
+
mandatory: boolean;
|
|
752
|
+
collection: boolean;
|
|
753
|
+
private?: boolean;
|
|
754
|
+
depends?: string;
|
|
755
|
+
description?: string;
|
|
756
|
+
default?: any;
|
|
757
|
+
set?: Function;
|
|
758
|
+
get?: Function;
|
|
759
|
+
prepareValue?: Function;
|
|
760
|
+
externalName?: string;
|
|
761
|
+
env?: string[] | string;
|
|
762
|
+
additionalValues?: object;
|
|
763
|
+
};
|
|
764
|
+
replaces: import("pacc").AttributeDefinition;
|
|
765
|
+
depends: import("pacc").AttributeDefinition;
|
|
766
|
+
provides: import("pacc").AttributeDefinition;
|
|
767
|
+
extends: {
|
|
768
|
+
type: string;
|
|
769
|
+
collection: boolean;
|
|
770
|
+
isKey: boolean;
|
|
771
|
+
writable: boolean;
|
|
772
|
+
mandatory: boolean;
|
|
773
|
+
private?: boolean;
|
|
774
|
+
depends?: string;
|
|
775
|
+
description?: string;
|
|
776
|
+
default?: any;
|
|
777
|
+
set?: Function;
|
|
778
|
+
get?: Function;
|
|
779
|
+
prepareValue?: Function;
|
|
780
|
+
values?: Set<any>;
|
|
781
|
+
externalName?: string;
|
|
782
|
+
env?: string[] | string;
|
|
783
|
+
additionalValues?: object;
|
|
784
|
+
};
|
|
785
|
+
model: import("pacc").AttributeDefinition;
|
|
786
|
+
isModel: import("pacc").AttributeDefinition;
|
|
787
|
+
hostName: {
|
|
788
|
+
writable: boolean;
|
|
789
|
+
type: object;
|
|
790
|
+
isKey: boolean;
|
|
791
|
+
mandatory: boolean;
|
|
792
|
+
collection: boolean;
|
|
793
|
+
private?: boolean;
|
|
794
|
+
depends?: string;
|
|
795
|
+
description?: string;
|
|
796
|
+
default?: any;
|
|
797
|
+
set?: Function;
|
|
798
|
+
get?: Function;
|
|
799
|
+
prepareValue?: Function;
|
|
800
|
+
values?: Set<any>;
|
|
801
|
+
externalName?: string;
|
|
802
|
+
env?: string[] | string;
|
|
803
|
+
additionalValues?: object;
|
|
804
|
+
};
|
|
805
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
806
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
807
|
+
addresses: import("pacc").AttributeDefinition;
|
|
808
|
+
address: import("pacc").AttributeDefinition;
|
|
809
|
+
};
|
|
810
|
+
})[];
|
|
512
811
|
attributes: {
|
|
513
812
|
source: {
|
|
514
813
|
type: any;
|
|
@@ -534,7 +833,6 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
534
833
|
name: string;
|
|
535
834
|
owners: (string | {
|
|
536
835
|
name: string;
|
|
537
|
-
priority: number;
|
|
538
836
|
owners: string[];
|
|
539
837
|
extends: {
|
|
540
838
|
name: string;
|
|
@@ -732,7 +1030,6 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
732
1030
|
address: import("pacc").AttributeDefinition;
|
|
733
1031
|
};
|
|
734
1032
|
})[];
|
|
735
|
-
priority: number;
|
|
736
1033
|
extends: {
|
|
737
1034
|
name: string;
|
|
738
1035
|
key: string;
|
|
@@ -837,7 +1134,6 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
837
1134
|
};
|
|
838
1135
|
owners: (string | {
|
|
839
1136
|
name: string;
|
|
840
|
-
priority: number;
|
|
841
1137
|
owners: string[];
|
|
842
1138
|
extends: {
|
|
843
1139
|
name: string;
|
|
@@ -1035,7 +1331,6 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
1035
1331
|
address: import("pacc").AttributeDefinition;
|
|
1036
1332
|
};
|
|
1037
1333
|
})[];
|
|
1038
|
-
priority: number;
|
|
1039
1334
|
};
|
|
1040
1335
|
get systemdServices(): string;
|
|
1041
1336
|
systemdConfigs(name: any): {
|