pmcf 3.10.15 → 3.10.17
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 +2 -2
- package/src/base.mjs +1 -1
- package/src/cluster.mjs +2 -3
- package/src/host.mjs +10 -10
- package/src/location.mjs +2 -2
- package/src/network-support.mjs +6 -6
- package/src/owner.mjs +6 -6
- package/src/service.mjs +3 -3
- package/src/services/bind.mjs +5 -7
- package/src/services/openldap.mjs +4 -13
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +4 -7
- package/types/base.d.mts +1 -14
- package/types/cluster.d.mts +27 -378
- package/types/extra-source-service.d.mts +8 -112
- package/types/host.d.mts +15 -210
- package/types/location.d.mts +21 -294
- package/types/network-interfaces/ethernet.d.mts +14 -196
- package/types/network-interfaces/loopback.d.mts +14 -196
- package/types/network-interfaces/network-interface.d.mts +14 -196
- package/types/network-interfaces/tun.d.mts +14 -196
- package/types/network-interfaces/wireguard.d.mts +14 -196
- package/types/network-interfaces/wlan.d.mts +21 -294
- package/types/network-support.d.mts +8 -85
- package/types/network.d.mts +12 -168
- package/types/owner.d.mts +10 -140
- package/types/root.d.mts +21 -294
- package/types/service.d.mts +20 -252
- package/types/services/bind.d.mts +20 -280
- package/types/services/chrony.d.mts +16 -224
- package/types/services/headscale.d.mts +16 -224
- package/types/services/influxdb.d.mts +16 -224
- package/types/services/kea.d.mts +16 -224
- package/types/services/mosquitto.d.mts +16 -224
- package/types/services/openldap.d.mts +19 -266
- package/types/services/systemd-journal-remote.d.mts +16 -224
- package/types/services/systemd-journal-upload.d.mts +17 -238
- package/types/services/systemd-journal.d.mts +16 -224
- package/types/services/systemd-resolved.d.mts +16 -224
- package/types/services/systemd-timesyncd.d.mts +16 -224
- package/types/subnet.d.mts +3 -42
|
@@ -46,34 +46,8 @@ export namespace networkAttributes {
|
|
|
46
46
|
get?: Function;
|
|
47
47
|
env?: string[] | string;
|
|
48
48
|
};
|
|
49
|
-
export
|
|
50
|
-
|
|
51
|
-
isKey: boolean;
|
|
52
|
-
writable: boolean;
|
|
53
|
-
mandatory: boolean;
|
|
54
|
-
collection: boolean;
|
|
55
|
-
private?: boolean;
|
|
56
|
-
depends?: string;
|
|
57
|
-
description?: string;
|
|
58
|
-
default?: any;
|
|
59
|
-
set?: Function;
|
|
60
|
-
get?: Function;
|
|
61
|
-
env?: string[] | string;
|
|
62
|
-
};
|
|
63
|
-
export let psk: {
|
|
64
|
-
type: string;
|
|
65
|
-
isKey: boolean;
|
|
66
|
-
writable: boolean;
|
|
67
|
-
mandatory: boolean;
|
|
68
|
-
collection: boolean;
|
|
69
|
-
private?: boolean;
|
|
70
|
-
depends?: string;
|
|
71
|
-
description?: string;
|
|
72
|
-
default?: any;
|
|
73
|
-
set?: Function;
|
|
74
|
-
get?: Function;
|
|
75
|
-
env?: string[] | string;
|
|
76
|
-
};
|
|
49
|
+
export { string_attribute_writable as ssid };
|
|
50
|
+
export { string_attribute_writable as psk };
|
|
77
51
|
export { string_attribute_writable as secretName };
|
|
78
52
|
export let metric: {
|
|
79
53
|
type: string;
|
|
@@ -111,66 +85,10 @@ export namespace networkAttributes {
|
|
|
111
85
|
export { boolean_attribute_writable as multicastDNS };
|
|
112
86
|
}
|
|
113
87
|
export namespace networkAddressAttributes {
|
|
114
|
-
let hostName: {
|
|
115
|
-
writable: boolean;
|
|
116
|
-
type: string;
|
|
117
|
-
isKey: boolean;
|
|
118
|
-
mandatory: boolean;
|
|
119
|
-
collection: boolean;
|
|
120
|
-
private?: boolean;
|
|
121
|
-
depends?: string;
|
|
122
|
-
description?: string;
|
|
123
|
-
default?: any;
|
|
124
|
-
set?: Function;
|
|
125
|
-
get?: Function;
|
|
126
|
-
env?: string[] | string;
|
|
127
|
-
};
|
|
128
|
-
let cidrAddresses: {
|
|
129
|
-
type: string;
|
|
130
|
-
isKey: boolean;
|
|
88
|
+
export let hostName: {
|
|
131
89
|
writable: boolean;
|
|
132
|
-
mandatory: boolean;
|
|
133
|
-
collection: boolean;
|
|
134
|
-
private?: boolean;
|
|
135
|
-
depends?: string;
|
|
136
|
-
description?: string;
|
|
137
|
-
default?: any;
|
|
138
|
-
set?: Function;
|
|
139
|
-
get?: Function;
|
|
140
|
-
env?: string[] | string;
|
|
141
|
-
};
|
|
142
|
-
let cidrAddress: {
|
|
143
90
|
type: string;
|
|
144
91
|
isKey: boolean;
|
|
145
|
-
writable: boolean;
|
|
146
|
-
mandatory: boolean;
|
|
147
|
-
collection: boolean;
|
|
148
|
-
private?: boolean;
|
|
149
|
-
depends?: string;
|
|
150
|
-
description?: string;
|
|
151
|
-
default?: any;
|
|
152
|
-
set?: Function;
|
|
153
|
-
get?: Function;
|
|
154
|
-
env?: string[] | string;
|
|
155
|
-
};
|
|
156
|
-
let addresses: {
|
|
157
|
-
type: string;
|
|
158
|
-
isKey: boolean;
|
|
159
|
-
writable: boolean;
|
|
160
|
-
mandatory: boolean;
|
|
161
|
-
collection: boolean;
|
|
162
|
-
private?: boolean;
|
|
163
|
-
depends?: string;
|
|
164
|
-
description?: string;
|
|
165
|
-
default?: any;
|
|
166
|
-
set?: Function;
|
|
167
|
-
get?: Function;
|
|
168
|
-
env?: string[] | string;
|
|
169
|
-
};
|
|
170
|
-
let address: {
|
|
171
|
-
type: string;
|
|
172
|
-
isKey: boolean;
|
|
173
|
-
writable: boolean;
|
|
174
92
|
mandatory: boolean;
|
|
175
93
|
collection: boolean;
|
|
176
94
|
private?: boolean;
|
|
@@ -181,6 +99,11 @@ export namespace networkAddressAttributes {
|
|
|
181
99
|
get?: Function;
|
|
182
100
|
env?: string[] | string;
|
|
183
101
|
};
|
|
102
|
+
export { string_collection_attribute_writable as cidrAddresses };
|
|
103
|
+
export { string_attribute_writable as cidrAddress };
|
|
104
|
+
export { string_collection_attribute_writable as addresses };
|
|
105
|
+
export { string_attribute_writable as address };
|
|
184
106
|
}
|
|
185
107
|
import { string_attribute_writable } from "pacc";
|
|
186
108
|
import { boolean_attribute_writable } from "pacc";
|
|
109
|
+
import { string_collection_attribute_writable } from "pacc";
|
package/types/network.d.mts
CHANGED
|
@@ -33,20 +33,7 @@ export class Network extends Owner {
|
|
|
33
33
|
env?: string[] | string;
|
|
34
34
|
};
|
|
35
35
|
priority: import("pacc").AttributeDefinition;
|
|
36
|
-
directory:
|
|
37
|
-
writable: boolean;
|
|
38
|
-
type: string;
|
|
39
|
-
isKey: boolean;
|
|
40
|
-
mandatory: boolean;
|
|
41
|
-
collection: boolean;
|
|
42
|
-
private?: boolean;
|
|
43
|
-
depends?: string;
|
|
44
|
-
description?: string;
|
|
45
|
-
default?: any;
|
|
46
|
-
set?: Function;
|
|
47
|
-
get?: Function;
|
|
48
|
-
env?: string[] | string;
|
|
49
|
-
};
|
|
36
|
+
directory: import("pacc").AttributeDefinition;
|
|
50
37
|
packaging: import("pacc").AttributeDefinition;
|
|
51
38
|
disabled: import("pacc").AttributeDefinition;
|
|
52
39
|
tags: import("pacc").AttributeDefinition;
|
|
@@ -75,142 +62,25 @@ export class Network extends Owner {
|
|
|
75
62
|
priority: number;
|
|
76
63
|
constructWithIdentifierOnly: boolean;
|
|
77
64
|
attributes: {
|
|
78
|
-
address:
|
|
79
|
-
isKey: boolean;
|
|
80
|
-
type: string;
|
|
81
|
-
writable: boolean;
|
|
82
|
-
mandatory: boolean;
|
|
83
|
-
collection: boolean;
|
|
84
|
-
private?: boolean;
|
|
85
|
-
depends?: string;
|
|
86
|
-
description?: string;
|
|
87
|
-
default?: any;
|
|
88
|
-
set?: Function;
|
|
89
|
-
get?: Function;
|
|
90
|
-
env?: string[] | string;
|
|
91
|
-
};
|
|
65
|
+
address: import("pacc").AttributeDefinition;
|
|
92
66
|
networks: {
|
|
93
67
|
type: string;
|
|
94
68
|
collection: boolean;
|
|
95
69
|
writable: boolean;
|
|
96
70
|
};
|
|
97
|
-
prefixLength:
|
|
98
|
-
|
|
99
|
-
isKey: boolean;
|
|
100
|
-
writable: boolean;
|
|
101
|
-
mandatory: boolean;
|
|
102
|
-
collection: boolean;
|
|
103
|
-
private?: boolean;
|
|
104
|
-
depends?: string;
|
|
105
|
-
description?: string;
|
|
106
|
-
default?: any;
|
|
107
|
-
set?: Function;
|
|
108
|
-
get?: Function;
|
|
109
|
-
env?: string[] | string;
|
|
110
|
-
};
|
|
111
|
-
family: {
|
|
112
|
-
type: string;
|
|
113
|
-
isKey: boolean;
|
|
114
|
-
writable: boolean;
|
|
115
|
-
mandatory: boolean;
|
|
116
|
-
collection: boolean;
|
|
117
|
-
private?: boolean;
|
|
118
|
-
depends?: string;
|
|
119
|
-
description?: string;
|
|
120
|
-
default?: any;
|
|
121
|
-
set?: Function;
|
|
122
|
-
get?: Function;
|
|
123
|
-
env?: string[] | string;
|
|
124
|
-
};
|
|
71
|
+
prefixLength: import("pacc").AttributeDefinition;
|
|
72
|
+
family: import("pacc").AttributeDefinition;
|
|
125
73
|
};
|
|
126
74
|
};
|
|
127
75
|
collection: boolean;
|
|
128
76
|
writable: boolean;
|
|
129
77
|
};
|
|
130
|
-
country:
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
private?: boolean;
|
|
137
|
-
depends?: string;
|
|
138
|
-
description?: string;
|
|
139
|
-
default?: any;
|
|
140
|
-
set?: Function;
|
|
141
|
-
get?: Function;
|
|
142
|
-
env?: string[] | string;
|
|
143
|
-
};
|
|
144
|
-
domain: {
|
|
145
|
-
type: string;
|
|
146
|
-
isKey: boolean;
|
|
147
|
-
writable: boolean;
|
|
148
|
-
mandatory: boolean;
|
|
149
|
-
collection: boolean;
|
|
150
|
-
private?: boolean;
|
|
151
|
-
depends?: string;
|
|
152
|
-
description?: string;
|
|
153
|
-
default?: any;
|
|
154
|
-
set?: Function;
|
|
155
|
-
get?: Function;
|
|
156
|
-
env?: string[] | string;
|
|
157
|
-
};
|
|
158
|
-
domains: {
|
|
159
|
-
type: string;
|
|
160
|
-
isKey: boolean;
|
|
161
|
-
writable: boolean;
|
|
162
|
-
mandatory: boolean;
|
|
163
|
-
collection: boolean;
|
|
164
|
-
private?: boolean;
|
|
165
|
-
depends?: string;
|
|
166
|
-
description?: string;
|
|
167
|
-
default?: any;
|
|
168
|
-
set?: Function;
|
|
169
|
-
get?: Function;
|
|
170
|
-
env?: string[] | string;
|
|
171
|
-
};
|
|
172
|
-
timezone: {
|
|
173
|
-
type: string;
|
|
174
|
-
isKey: boolean;
|
|
175
|
-
writable: boolean;
|
|
176
|
-
mandatory: boolean;
|
|
177
|
-
collection: boolean;
|
|
178
|
-
private?: boolean;
|
|
179
|
-
depends?: string;
|
|
180
|
-
description?: string;
|
|
181
|
-
default?: any;
|
|
182
|
-
set?: Function;
|
|
183
|
-
get?: Function;
|
|
184
|
-
env?: string[] | string;
|
|
185
|
-
};
|
|
186
|
-
architectures: {
|
|
187
|
-
type: string;
|
|
188
|
-
isKey: boolean;
|
|
189
|
-
writable: boolean;
|
|
190
|
-
mandatory: boolean;
|
|
191
|
-
collection: boolean;
|
|
192
|
-
private?: boolean;
|
|
193
|
-
depends?: string;
|
|
194
|
-
description?: string;
|
|
195
|
-
default?: any;
|
|
196
|
-
set?: Function;
|
|
197
|
-
get?: Function;
|
|
198
|
-
env?: string[] | string;
|
|
199
|
-
};
|
|
200
|
-
locales: {
|
|
201
|
-
type: string;
|
|
202
|
-
isKey: boolean;
|
|
203
|
-
writable: boolean;
|
|
204
|
-
mandatory: boolean;
|
|
205
|
-
collection: boolean;
|
|
206
|
-
private?: boolean;
|
|
207
|
-
depends?: string;
|
|
208
|
-
description?: string;
|
|
209
|
-
default?: any;
|
|
210
|
-
set?: Function;
|
|
211
|
-
get?: Function;
|
|
212
|
-
env?: string[] | string;
|
|
213
|
-
};
|
|
78
|
+
country: import("pacc").AttributeDefinition;
|
|
79
|
+
domain: import("pacc").AttributeDefinition;
|
|
80
|
+
domains: import("pacc").AttributeDefinition;
|
|
81
|
+
timezone: import("pacc").AttributeDefinition;
|
|
82
|
+
architectures: import("pacc").AttributeDefinition;
|
|
83
|
+
locales: import("pacc").AttributeDefinition;
|
|
214
84
|
administratorEmail: {
|
|
215
85
|
writable: boolean;
|
|
216
86
|
type: string;
|
|
@@ -301,34 +171,8 @@ export class Network extends Owner {
|
|
|
301
171
|
get?: Function;
|
|
302
172
|
env?: string[] | string;
|
|
303
173
|
};
|
|
304
|
-
ssid:
|
|
305
|
-
|
|
306
|
-
isKey: boolean;
|
|
307
|
-
writable: boolean;
|
|
308
|
-
mandatory: boolean;
|
|
309
|
-
collection: boolean;
|
|
310
|
-
private?: boolean;
|
|
311
|
-
depends?: string;
|
|
312
|
-
description?: string;
|
|
313
|
-
default?: any;
|
|
314
|
-
set?: Function;
|
|
315
|
-
get?: Function;
|
|
316
|
-
env?: string[] | string;
|
|
317
|
-
};
|
|
318
|
-
psk: {
|
|
319
|
-
type: string;
|
|
320
|
-
isKey: boolean;
|
|
321
|
-
writable: boolean;
|
|
322
|
-
mandatory: boolean;
|
|
323
|
-
collection: boolean;
|
|
324
|
-
private?: boolean;
|
|
325
|
-
depends?: string;
|
|
326
|
-
description?: string;
|
|
327
|
-
default?: any;
|
|
328
|
-
set?: Function;
|
|
329
|
-
get?: Function;
|
|
330
|
-
env?: string[] | string;
|
|
331
|
-
};
|
|
174
|
+
ssid: import("pacc").AttributeDefinition;
|
|
175
|
+
psk: import("pacc").AttributeDefinition;
|
|
332
176
|
secretName: import("pacc").AttributeDefinition;
|
|
333
177
|
metric: {
|
|
334
178
|
type: string;
|
package/types/owner.d.mts
CHANGED
|
@@ -29,20 +29,7 @@ export class Owner extends Base {
|
|
|
29
29
|
env?: string[] | string;
|
|
30
30
|
};
|
|
31
31
|
priority: import("pacc").AttributeDefinition;
|
|
32
|
-
directory:
|
|
33
|
-
writable: boolean;
|
|
34
|
-
type: string;
|
|
35
|
-
isKey: boolean;
|
|
36
|
-
mandatory: boolean;
|
|
37
|
-
collection: boolean;
|
|
38
|
-
private?: boolean;
|
|
39
|
-
depends?: string;
|
|
40
|
-
description?: string;
|
|
41
|
-
default?: any;
|
|
42
|
-
set?: Function;
|
|
43
|
-
get?: Function;
|
|
44
|
-
env?: string[] | string;
|
|
45
|
-
};
|
|
32
|
+
directory: import("pacc").AttributeDefinition;
|
|
46
33
|
packaging: import("pacc").AttributeDefinition;
|
|
47
34
|
disabled: import("pacc").AttributeDefinition;
|
|
48
35
|
tags: import("pacc").AttributeDefinition;
|
|
@@ -71,142 +58,25 @@ export class Owner extends Base {
|
|
|
71
58
|
priority: number;
|
|
72
59
|
constructWithIdentifierOnly: boolean;
|
|
73
60
|
attributes: {
|
|
74
|
-
address:
|
|
75
|
-
isKey: boolean;
|
|
76
|
-
type: string;
|
|
77
|
-
writable: boolean;
|
|
78
|
-
mandatory: boolean;
|
|
79
|
-
collection: boolean;
|
|
80
|
-
private?: boolean;
|
|
81
|
-
depends?: string;
|
|
82
|
-
description?: string;
|
|
83
|
-
default?: any;
|
|
84
|
-
set?: Function;
|
|
85
|
-
get?: Function;
|
|
86
|
-
env?: string[] | string;
|
|
87
|
-
};
|
|
61
|
+
address: import("pacc").AttributeDefinition;
|
|
88
62
|
networks: {
|
|
89
63
|
type: string;
|
|
90
64
|
collection: boolean;
|
|
91
65
|
writable: boolean;
|
|
92
66
|
};
|
|
93
|
-
prefixLength:
|
|
94
|
-
|
|
95
|
-
isKey: boolean;
|
|
96
|
-
writable: boolean;
|
|
97
|
-
mandatory: boolean;
|
|
98
|
-
collection: boolean;
|
|
99
|
-
private?: boolean;
|
|
100
|
-
depends?: string;
|
|
101
|
-
description?: string;
|
|
102
|
-
default?: any;
|
|
103
|
-
set?: Function;
|
|
104
|
-
get?: Function;
|
|
105
|
-
env?: string[] | string;
|
|
106
|
-
};
|
|
107
|
-
family: {
|
|
108
|
-
type: string;
|
|
109
|
-
isKey: boolean;
|
|
110
|
-
writable: boolean;
|
|
111
|
-
mandatory: boolean;
|
|
112
|
-
collection: boolean;
|
|
113
|
-
private?: boolean;
|
|
114
|
-
depends?: string;
|
|
115
|
-
description?: string;
|
|
116
|
-
default?: any;
|
|
117
|
-
set?: Function;
|
|
118
|
-
get?: Function;
|
|
119
|
-
env?: string[] | string;
|
|
120
|
-
};
|
|
67
|
+
prefixLength: import("pacc").AttributeDefinition;
|
|
68
|
+
family: import("pacc").AttributeDefinition;
|
|
121
69
|
};
|
|
122
70
|
};
|
|
123
71
|
collection: boolean;
|
|
124
72
|
writable: boolean;
|
|
125
73
|
};
|
|
126
|
-
country:
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
private?: boolean;
|
|
133
|
-
depends?: string;
|
|
134
|
-
description?: string;
|
|
135
|
-
default?: any;
|
|
136
|
-
set?: Function;
|
|
137
|
-
get?: Function;
|
|
138
|
-
env?: string[] | string;
|
|
139
|
-
};
|
|
140
|
-
domain: {
|
|
141
|
-
type: string;
|
|
142
|
-
isKey: boolean;
|
|
143
|
-
writable: boolean;
|
|
144
|
-
mandatory: boolean;
|
|
145
|
-
collection: boolean;
|
|
146
|
-
private?: boolean;
|
|
147
|
-
depends?: string;
|
|
148
|
-
description?: string;
|
|
149
|
-
default?: any;
|
|
150
|
-
set?: Function;
|
|
151
|
-
get?: Function;
|
|
152
|
-
env?: string[] | string;
|
|
153
|
-
};
|
|
154
|
-
domains: {
|
|
155
|
-
type: string;
|
|
156
|
-
isKey: boolean;
|
|
157
|
-
writable: boolean;
|
|
158
|
-
mandatory: boolean;
|
|
159
|
-
collection: boolean;
|
|
160
|
-
private?: boolean;
|
|
161
|
-
depends?: string;
|
|
162
|
-
description?: string;
|
|
163
|
-
default?: any;
|
|
164
|
-
set?: Function;
|
|
165
|
-
get?: Function;
|
|
166
|
-
env?: string[] | string;
|
|
167
|
-
};
|
|
168
|
-
timezone: {
|
|
169
|
-
type: string;
|
|
170
|
-
isKey: boolean;
|
|
171
|
-
writable: boolean;
|
|
172
|
-
mandatory: boolean;
|
|
173
|
-
collection: boolean;
|
|
174
|
-
private?: boolean;
|
|
175
|
-
depends?: string;
|
|
176
|
-
description?: string;
|
|
177
|
-
default?: any;
|
|
178
|
-
set?: Function;
|
|
179
|
-
get?: Function;
|
|
180
|
-
env?: string[] | string;
|
|
181
|
-
};
|
|
182
|
-
architectures: {
|
|
183
|
-
type: string;
|
|
184
|
-
isKey: boolean;
|
|
185
|
-
writable: boolean;
|
|
186
|
-
mandatory: boolean;
|
|
187
|
-
collection: boolean;
|
|
188
|
-
private?: boolean;
|
|
189
|
-
depends?: string;
|
|
190
|
-
description?: string;
|
|
191
|
-
default?: any;
|
|
192
|
-
set?: Function;
|
|
193
|
-
get?: Function;
|
|
194
|
-
env?: string[] | string;
|
|
195
|
-
};
|
|
196
|
-
locales: {
|
|
197
|
-
type: string;
|
|
198
|
-
isKey: boolean;
|
|
199
|
-
writable: boolean;
|
|
200
|
-
mandatory: boolean;
|
|
201
|
-
collection: boolean;
|
|
202
|
-
private?: boolean;
|
|
203
|
-
depends?: string;
|
|
204
|
-
description?: string;
|
|
205
|
-
default?: any;
|
|
206
|
-
set?: Function;
|
|
207
|
-
get?: Function;
|
|
208
|
-
env?: string[] | string;
|
|
209
|
-
};
|
|
74
|
+
country: import("pacc").AttributeDefinition;
|
|
75
|
+
domain: import("pacc").AttributeDefinition;
|
|
76
|
+
domains: import("pacc").AttributeDefinition;
|
|
77
|
+
timezone: import("pacc").AttributeDefinition;
|
|
78
|
+
architectures: import("pacc").AttributeDefinition;
|
|
79
|
+
locales: import("pacc").AttributeDefinition;
|
|
210
80
|
administratorEmail: {
|
|
211
81
|
writable: boolean;
|
|
212
82
|
type: string;
|