pmcf 3.10.23 → 3.10.25
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 +3 -3
- package/types/base.d.mts +2 -0
- package/types/cluster.d.mts +12 -0
- package/types/extra-source-service.d.mts +7 -0
- package/types/host.d.mts +8 -0
- package/types/location.d.mts +8 -0
- package/types/network-interfaces/ethernet.d.mts +34 -0
- package/types/network-interfaces/loopback.d.mts +34 -0
- package/types/network-interfaces/network-interface.d.mts +34 -0
- package/types/network-interfaces/tun.d.mts +34 -0
- package/types/network-interfaces/wireguard.d.mts +34 -0
- package/types/network-interfaces/wlan.d.mts +53 -0
- package/types/network-support.d.mts +9 -0
- package/types/network.d.mts +15 -0
- package/types/owner.d.mts +4 -0
- package/types/root.d.mts +8 -0
- package/types/service.d.mts +15 -0
- package/types/services/bind.d.mts +22 -0
- package/types/services/chrony.d.mts +14 -0
- package/types/services/headscale.d.mts +14 -0
- package/types/services/influxdb.d.mts +16 -0
- package/types/services/kea.d.mts +24 -0
- package/types/services/mosquitto.d.mts +18 -0
- package/types/services/openldap.d.mts +14 -0
- package/types/services/systemd-journal-remote.d.mts +14 -0
- package/types/services/systemd-journal-upload.d.mts +14 -0
- package/types/services/systemd-journal.d.mts +14 -0
- package/types/services/systemd-resolved.d.mts +14 -0
- package/types/services/systemd-timesyncd.d.mts +14 -0
|
@@ -25,6 +25,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
25
25
|
default?: any;
|
|
26
26
|
set?: Function;
|
|
27
27
|
get?: Function;
|
|
28
|
+
values?: Set<any>;
|
|
29
|
+
externalName?: string;
|
|
28
30
|
env?: string[] | string;
|
|
29
31
|
};
|
|
30
32
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -55,6 +57,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
55
57
|
default?: any;
|
|
56
58
|
set?: Function;
|
|
57
59
|
get?: Function;
|
|
60
|
+
values?: Set<any>;
|
|
61
|
+
externalName?: string;
|
|
58
62
|
env?: string[] | string;
|
|
59
63
|
};
|
|
60
64
|
ipAddresses: {
|
|
@@ -69,6 +73,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
69
73
|
default?: any;
|
|
70
74
|
set?: Function;
|
|
71
75
|
get?: Function;
|
|
76
|
+
values?: Set<any>;
|
|
77
|
+
externalName?: string;
|
|
72
78
|
env?: string[] | string;
|
|
73
79
|
};
|
|
74
80
|
hwaddr: {
|
|
@@ -83,6 +89,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
83
89
|
default?: any;
|
|
84
90
|
set?: Function;
|
|
85
91
|
get?: Function;
|
|
92
|
+
values?: Set<any>;
|
|
93
|
+
externalName?: string;
|
|
86
94
|
env?: string[] | string;
|
|
87
95
|
};
|
|
88
96
|
network: {
|
|
@@ -102,6 +110,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
102
110
|
default?: any;
|
|
103
111
|
set?: Function;
|
|
104
112
|
get?: Function;
|
|
113
|
+
values?: Set<any>;
|
|
114
|
+
externalName?: string;
|
|
105
115
|
env?: string[] | string;
|
|
106
116
|
};
|
|
107
117
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -121,6 +131,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
121
131
|
default?: any;
|
|
122
132
|
set?: Function;
|
|
123
133
|
get?: Function;
|
|
134
|
+
externalName?: string;
|
|
124
135
|
env?: string[] | string;
|
|
125
136
|
};
|
|
126
137
|
class: {
|
|
@@ -136,6 +147,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
136
147
|
default?: any;
|
|
137
148
|
set?: Function;
|
|
138
149
|
get?: Function;
|
|
150
|
+
externalName?: string;
|
|
139
151
|
env?: string[] | string;
|
|
140
152
|
};
|
|
141
153
|
kind: {
|
|
@@ -151,6 +163,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
151
163
|
default?: any;
|
|
152
164
|
set?: Function;
|
|
153
165
|
get?: Function;
|
|
166
|
+
externalName?: string;
|
|
154
167
|
env?: string[] | string;
|
|
155
168
|
};
|
|
156
169
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -168,6 +181,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
168
181
|
default?: any;
|
|
169
182
|
set?: Function;
|
|
170
183
|
get?: Function;
|
|
184
|
+
values?: Set<any>;
|
|
185
|
+
externalName?: string;
|
|
171
186
|
env?: string[] | string;
|
|
172
187
|
};
|
|
173
188
|
mtu: {
|
|
@@ -182,6 +197,8 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
182
197
|
description?: string;
|
|
183
198
|
set?: Function;
|
|
184
199
|
get?: Function;
|
|
200
|
+
values?: Set<any>;
|
|
201
|
+
externalName?: string;
|
|
185
202
|
env?: string[] | string;
|
|
186
203
|
};
|
|
187
204
|
gateway: {
|
|
@@ -220,6 +237,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
220
237
|
default?: any;
|
|
221
238
|
set?: Function;
|
|
222
239
|
get?: Function;
|
|
240
|
+
values?: Set<any>;
|
|
241
|
+
externalName?: string;
|
|
223
242
|
env?: string[] | string;
|
|
224
243
|
};
|
|
225
244
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -249,6 +268,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
249
268
|
default?: any;
|
|
250
269
|
set?: Function;
|
|
251
270
|
get?: Function;
|
|
271
|
+
values?: Set<any>;
|
|
272
|
+
externalName?: string;
|
|
252
273
|
env?: string[] | string;
|
|
253
274
|
};
|
|
254
275
|
ipAddresses: {
|
|
@@ -263,6 +284,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
263
284
|
default?: any;
|
|
264
285
|
set?: Function;
|
|
265
286
|
get?: Function;
|
|
287
|
+
values?: Set<any>;
|
|
288
|
+
externalName?: string;
|
|
266
289
|
env?: string[] | string;
|
|
267
290
|
};
|
|
268
291
|
hwaddr: {
|
|
@@ -277,6 +300,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
277
300
|
default?: any;
|
|
278
301
|
set?: Function;
|
|
279
302
|
get?: Function;
|
|
303
|
+
values?: Set<any>;
|
|
304
|
+
externalName?: string;
|
|
280
305
|
env?: string[] | string;
|
|
281
306
|
};
|
|
282
307
|
network: {
|
|
@@ -296,6 +321,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
296
321
|
default?: any;
|
|
297
322
|
set?: Function;
|
|
298
323
|
get?: Function;
|
|
324
|
+
values?: Set<any>;
|
|
325
|
+
externalName?: string;
|
|
299
326
|
env?: string[] | string;
|
|
300
327
|
};
|
|
301
328
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -315,6 +342,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
315
342
|
default?: any;
|
|
316
343
|
set?: Function;
|
|
317
344
|
get?: Function;
|
|
345
|
+
externalName?: string;
|
|
318
346
|
env?: string[] | string;
|
|
319
347
|
};
|
|
320
348
|
class: {
|
|
@@ -330,6 +358,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
330
358
|
default?: any;
|
|
331
359
|
set?: Function;
|
|
332
360
|
get?: Function;
|
|
361
|
+
externalName?: string;
|
|
333
362
|
env?: string[] | string;
|
|
334
363
|
};
|
|
335
364
|
kind: {
|
|
@@ -345,6 +374,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
345
374
|
default?: any;
|
|
346
375
|
set?: Function;
|
|
347
376
|
get?: Function;
|
|
377
|
+
externalName?: string;
|
|
348
378
|
env?: string[] | string;
|
|
349
379
|
};
|
|
350
380
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -362,6 +392,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
362
392
|
default?: any;
|
|
363
393
|
set?: Function;
|
|
364
394
|
get?: Function;
|
|
395
|
+
values?: Set<any>;
|
|
396
|
+
externalName?: string;
|
|
365
397
|
env?: string[] | string;
|
|
366
398
|
};
|
|
367
399
|
mtu: {
|
|
@@ -376,6 +408,8 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
376
408
|
description?: string;
|
|
377
409
|
set?: Function;
|
|
378
410
|
get?: Function;
|
|
411
|
+
values?: Set<any>;
|
|
412
|
+
externalName?: string;
|
|
379
413
|
env?: string[] | string;
|
|
380
414
|
};
|
|
381
415
|
gateway: {
|
|
@@ -28,6 +28,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
28
28
|
default?: any;
|
|
29
29
|
set?: Function;
|
|
30
30
|
get?: Function;
|
|
31
|
+
values?: Set<any>;
|
|
32
|
+
externalName?: string;
|
|
31
33
|
env?: string[] | string;
|
|
32
34
|
};
|
|
33
35
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -57,6 +59,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
57
59
|
default?: any;
|
|
58
60
|
set?: Function;
|
|
59
61
|
get?: Function;
|
|
62
|
+
values?: Set<any>;
|
|
63
|
+
externalName?: string;
|
|
60
64
|
env?: string[] | string;
|
|
61
65
|
};
|
|
62
66
|
ipAddresses: {
|
|
@@ -71,6 +75,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
71
75
|
default?: any;
|
|
72
76
|
set?: Function;
|
|
73
77
|
get?: Function;
|
|
78
|
+
values?: Set<any>;
|
|
79
|
+
externalName?: string;
|
|
74
80
|
env?: string[] | string;
|
|
75
81
|
};
|
|
76
82
|
hwaddr: {
|
|
@@ -85,6 +91,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
85
91
|
default?: any;
|
|
86
92
|
set?: Function;
|
|
87
93
|
get?: Function;
|
|
94
|
+
values?: Set<any>;
|
|
95
|
+
externalName?: string;
|
|
88
96
|
env?: string[] | string;
|
|
89
97
|
};
|
|
90
98
|
network: {
|
|
@@ -104,6 +112,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
104
112
|
default?: any;
|
|
105
113
|
set?: Function;
|
|
106
114
|
get?: Function;
|
|
115
|
+
values?: Set<any>;
|
|
116
|
+
externalName?: string;
|
|
107
117
|
env?: string[] | string;
|
|
108
118
|
};
|
|
109
119
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -123,6 +133,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
123
133
|
default?: any;
|
|
124
134
|
set?: Function;
|
|
125
135
|
get?: Function;
|
|
136
|
+
externalName?: string;
|
|
126
137
|
env?: string[] | string;
|
|
127
138
|
};
|
|
128
139
|
class: {
|
|
@@ -138,6 +149,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
138
149
|
default?: any;
|
|
139
150
|
set?: Function;
|
|
140
151
|
get?: Function;
|
|
152
|
+
externalName?: string;
|
|
141
153
|
env?: string[] | string;
|
|
142
154
|
};
|
|
143
155
|
kind: {
|
|
@@ -153,6 +165,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
153
165
|
default?: any;
|
|
154
166
|
set?: Function;
|
|
155
167
|
get?: Function;
|
|
168
|
+
externalName?: string;
|
|
156
169
|
env?: string[] | string;
|
|
157
170
|
};
|
|
158
171
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -170,6 +183,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
170
183
|
default?: any;
|
|
171
184
|
set?: Function;
|
|
172
185
|
get?: Function;
|
|
186
|
+
values?: Set<any>;
|
|
187
|
+
externalName?: string;
|
|
173
188
|
env?: string[] | string;
|
|
174
189
|
};
|
|
175
190
|
mtu: {
|
|
@@ -184,6 +199,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
184
199
|
description?: string;
|
|
185
200
|
set?: Function;
|
|
186
201
|
get?: Function;
|
|
202
|
+
values?: Set<any>;
|
|
203
|
+
externalName?: string;
|
|
187
204
|
env?: string[] | string;
|
|
188
205
|
};
|
|
189
206
|
gateway: {
|
|
@@ -222,6 +239,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
222
239
|
default?: any;
|
|
223
240
|
set?: Function;
|
|
224
241
|
get?: Function;
|
|
242
|
+
values?: Set<any>;
|
|
243
|
+
externalName?: string;
|
|
225
244
|
env?: string[] | string;
|
|
226
245
|
};
|
|
227
246
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -251,6 +270,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
251
270
|
default?: any;
|
|
252
271
|
set?: Function;
|
|
253
272
|
get?: Function;
|
|
273
|
+
values?: Set<any>;
|
|
274
|
+
externalName?: string;
|
|
254
275
|
env?: string[] | string;
|
|
255
276
|
};
|
|
256
277
|
ipAddresses: {
|
|
@@ -265,6 +286,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
265
286
|
default?: any;
|
|
266
287
|
set?: Function;
|
|
267
288
|
get?: Function;
|
|
289
|
+
values?: Set<any>;
|
|
290
|
+
externalName?: string;
|
|
268
291
|
env?: string[] | string;
|
|
269
292
|
};
|
|
270
293
|
hwaddr: {
|
|
@@ -279,6 +302,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
279
302
|
default?: any;
|
|
280
303
|
set?: Function;
|
|
281
304
|
get?: Function;
|
|
305
|
+
values?: Set<any>;
|
|
306
|
+
externalName?: string;
|
|
282
307
|
env?: string[] | string;
|
|
283
308
|
};
|
|
284
309
|
network: {
|
|
@@ -298,6 +323,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
298
323
|
default?: any;
|
|
299
324
|
set?: Function;
|
|
300
325
|
get?: Function;
|
|
326
|
+
values?: Set<any>;
|
|
327
|
+
externalName?: string;
|
|
301
328
|
env?: string[] | string;
|
|
302
329
|
};
|
|
303
330
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -317,6 +344,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
317
344
|
default?: any;
|
|
318
345
|
set?: Function;
|
|
319
346
|
get?: Function;
|
|
347
|
+
externalName?: string;
|
|
320
348
|
env?: string[] | string;
|
|
321
349
|
};
|
|
322
350
|
class: {
|
|
@@ -332,6 +360,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
332
360
|
default?: any;
|
|
333
361
|
set?: Function;
|
|
334
362
|
get?: Function;
|
|
363
|
+
externalName?: string;
|
|
335
364
|
env?: string[] | string;
|
|
336
365
|
};
|
|
337
366
|
kind: {
|
|
@@ -347,6 +376,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
347
376
|
default?: any;
|
|
348
377
|
set?: Function;
|
|
349
378
|
get?: Function;
|
|
379
|
+
externalName?: string;
|
|
350
380
|
env?: string[] | string;
|
|
351
381
|
};
|
|
352
382
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -364,6 +394,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
364
394
|
default?: any;
|
|
365
395
|
set?: Function;
|
|
366
396
|
get?: Function;
|
|
397
|
+
values?: Set<any>;
|
|
398
|
+
externalName?: string;
|
|
367
399
|
env?: string[] | string;
|
|
368
400
|
};
|
|
369
401
|
mtu: {
|
|
@@ -378,6 +410,8 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
378
410
|
description?: string;
|
|
379
411
|
set?: Function;
|
|
380
412
|
get?: Function;
|
|
413
|
+
values?: Set<any>;
|
|
414
|
+
externalName?: string;
|
|
381
415
|
env?: string[] | string;
|
|
382
416
|
};
|
|
383
417
|
gateway: {
|
|
@@ -28,6 +28,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
28
28
|
default?: any;
|
|
29
29
|
set?: Function;
|
|
30
30
|
get?: Function;
|
|
31
|
+
values?: Set<any>;
|
|
32
|
+
externalName?: string;
|
|
31
33
|
env?: string[] | string;
|
|
32
34
|
};
|
|
33
35
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -57,6 +59,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
57
59
|
default?: any;
|
|
58
60
|
set?: Function;
|
|
59
61
|
get?: Function;
|
|
62
|
+
values?: Set<any>;
|
|
63
|
+
externalName?: string;
|
|
60
64
|
env?: string[] | string;
|
|
61
65
|
};
|
|
62
66
|
ipAddresses: {
|
|
@@ -71,6 +75,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
71
75
|
default?: any;
|
|
72
76
|
set?: Function;
|
|
73
77
|
get?: Function;
|
|
78
|
+
values?: Set<any>;
|
|
79
|
+
externalName?: string;
|
|
74
80
|
env?: string[] | string;
|
|
75
81
|
};
|
|
76
82
|
hwaddr: {
|
|
@@ -85,6 +91,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
85
91
|
default?: any;
|
|
86
92
|
set?: Function;
|
|
87
93
|
get?: Function;
|
|
94
|
+
values?: Set<any>;
|
|
95
|
+
externalName?: string;
|
|
88
96
|
env?: string[] | string;
|
|
89
97
|
};
|
|
90
98
|
network: {
|
|
@@ -104,6 +112,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
104
112
|
default?: any;
|
|
105
113
|
set?: Function;
|
|
106
114
|
get?: Function;
|
|
115
|
+
values?: Set<any>;
|
|
116
|
+
externalName?: string;
|
|
107
117
|
env?: string[] | string;
|
|
108
118
|
};
|
|
109
119
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -123,6 +133,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
123
133
|
default?: any;
|
|
124
134
|
set?: Function;
|
|
125
135
|
get?: Function;
|
|
136
|
+
externalName?: string;
|
|
126
137
|
env?: string[] | string;
|
|
127
138
|
};
|
|
128
139
|
class: {
|
|
@@ -138,6 +149,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
138
149
|
default?: any;
|
|
139
150
|
set?: Function;
|
|
140
151
|
get?: Function;
|
|
152
|
+
externalName?: string;
|
|
141
153
|
env?: string[] | string;
|
|
142
154
|
};
|
|
143
155
|
kind: {
|
|
@@ -153,6 +165,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
153
165
|
default?: any;
|
|
154
166
|
set?: Function;
|
|
155
167
|
get?: Function;
|
|
168
|
+
externalName?: string;
|
|
156
169
|
env?: string[] | string;
|
|
157
170
|
};
|
|
158
171
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -170,6 +183,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
170
183
|
default?: any;
|
|
171
184
|
set?: Function;
|
|
172
185
|
get?: Function;
|
|
186
|
+
values?: Set<any>;
|
|
187
|
+
externalName?: string;
|
|
173
188
|
env?: string[] | string;
|
|
174
189
|
};
|
|
175
190
|
mtu: {
|
|
@@ -184,6 +199,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
184
199
|
description?: string;
|
|
185
200
|
set?: Function;
|
|
186
201
|
get?: Function;
|
|
202
|
+
values?: Set<any>;
|
|
203
|
+
externalName?: string;
|
|
187
204
|
env?: string[] | string;
|
|
188
205
|
};
|
|
189
206
|
gateway: {
|
|
@@ -222,6 +239,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
222
239
|
default?: any;
|
|
223
240
|
set?: Function;
|
|
224
241
|
get?: Function;
|
|
242
|
+
values?: Set<any>;
|
|
243
|
+
externalName?: string;
|
|
225
244
|
env?: string[] | string;
|
|
226
245
|
};
|
|
227
246
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -251,6 +270,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
251
270
|
default?: any;
|
|
252
271
|
set?: Function;
|
|
253
272
|
get?: Function;
|
|
273
|
+
values?: Set<any>;
|
|
274
|
+
externalName?: string;
|
|
254
275
|
env?: string[] | string;
|
|
255
276
|
};
|
|
256
277
|
ipAddresses: {
|
|
@@ -265,6 +286,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
265
286
|
default?: any;
|
|
266
287
|
set?: Function;
|
|
267
288
|
get?: Function;
|
|
289
|
+
values?: Set<any>;
|
|
290
|
+
externalName?: string;
|
|
268
291
|
env?: string[] | string;
|
|
269
292
|
};
|
|
270
293
|
hwaddr: {
|
|
@@ -279,6 +302,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
279
302
|
default?: any;
|
|
280
303
|
set?: Function;
|
|
281
304
|
get?: Function;
|
|
305
|
+
values?: Set<any>;
|
|
306
|
+
externalName?: string;
|
|
282
307
|
env?: string[] | string;
|
|
283
308
|
};
|
|
284
309
|
network: {
|
|
@@ -298,6 +323,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
298
323
|
default?: any;
|
|
299
324
|
set?: Function;
|
|
300
325
|
get?: Function;
|
|
326
|
+
values?: Set<any>;
|
|
327
|
+
externalName?: string;
|
|
301
328
|
env?: string[] | string;
|
|
302
329
|
};
|
|
303
330
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -317,6 +344,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
317
344
|
default?: any;
|
|
318
345
|
set?: Function;
|
|
319
346
|
get?: Function;
|
|
347
|
+
externalName?: string;
|
|
320
348
|
env?: string[] | string;
|
|
321
349
|
};
|
|
322
350
|
class: {
|
|
@@ -332,6 +360,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
332
360
|
default?: any;
|
|
333
361
|
set?: Function;
|
|
334
362
|
get?: Function;
|
|
363
|
+
externalName?: string;
|
|
335
364
|
env?: string[] | string;
|
|
336
365
|
};
|
|
337
366
|
kind: {
|
|
@@ -347,6 +376,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
347
376
|
default?: any;
|
|
348
377
|
set?: Function;
|
|
349
378
|
get?: Function;
|
|
379
|
+
externalName?: string;
|
|
350
380
|
env?: string[] | string;
|
|
351
381
|
};
|
|
352
382
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -364,6 +394,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
364
394
|
default?: any;
|
|
365
395
|
set?: Function;
|
|
366
396
|
get?: Function;
|
|
397
|
+
values?: Set<any>;
|
|
398
|
+
externalName?: string;
|
|
367
399
|
env?: string[] | string;
|
|
368
400
|
};
|
|
369
401
|
mtu: {
|
|
@@ -378,6 +410,8 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
378
410
|
description?: string;
|
|
379
411
|
set?: Function;
|
|
380
412
|
get?: Function;
|
|
413
|
+
values?: Set<any>;
|
|
414
|
+
externalName?: string;
|
|
381
415
|
env?: string[] | string;
|
|
382
416
|
};
|
|
383
417
|
gateway: {
|