pmcf 2.73.12 → 2.74.0
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 +5 -5
- package/types/base.d.mts +48 -4
- package/types/cluster.d.mts +96 -8
- package/types/extra-source-service.d.mts +48 -4
- package/types/host.d.mts +48 -4
- package/types/location.d.mts +96 -8
- package/types/network-interfaces/ethernet.d.mts +96 -8
- package/types/network-interfaces/loopback.d.mts +96 -8
- package/types/network-interfaces/network-interface.d.mts +96 -8
- package/types/network-interfaces/wireguard.d.mts +96 -8
- package/types/network-interfaces/wlan.d.mts +144 -12
- package/types/network.d.mts +48 -4
- package/types/owner.d.mts +48 -4
- package/types/root.d.mts +96 -8
- package/types/service.d.mts +96 -8
- package/types/services/bind.d.mts +96 -8
- package/types/services/chrony.d.mts +96 -8
- package/types/services/influxdb.d.mts +96 -8
- package/types/services/kea.d.mts +96 -8
- package/types/services/mosquitto.d.mts +96 -8
- package/types/services/openldap.d.mts +96 -8
- package/types/services/systemd-journal-remote.d.mts +96 -8
- package/types/services/systemd-journal-upload.d.mts +96 -8
- package/types/services/systemd-journal.d.mts +96 -8
- package/types/services/systemd-resolved.d.mts +96 -8
- package/types/services/systemd-timesyncd.d.mts +96 -8
package/types/service.d.mts
CHANGED
|
@@ -94,9 +94,20 @@ export namespace ServiceTypeDefinition {
|
|
|
94
94
|
writeable: boolean;
|
|
95
95
|
};
|
|
96
96
|
description: {
|
|
97
|
+
writeable: boolean;
|
|
97
98
|
type: string;
|
|
99
|
+
isKey: boolean;
|
|
100
|
+
writable: boolean;
|
|
101
|
+
mandatory: boolean;
|
|
98
102
|
collection: boolean;
|
|
99
|
-
|
|
103
|
+
private?: boolean;
|
|
104
|
+
depends?: string;
|
|
105
|
+
additionalAttributes: string[];
|
|
106
|
+
description?: string;
|
|
107
|
+
default?: any;
|
|
108
|
+
set?: Function;
|
|
109
|
+
get?: Function;
|
|
110
|
+
env?: string[] | string;
|
|
100
111
|
};
|
|
101
112
|
priority: {
|
|
102
113
|
type: string;
|
|
@@ -104,14 +115,36 @@ export namespace ServiceTypeDefinition {
|
|
|
104
115
|
writeable: boolean;
|
|
105
116
|
};
|
|
106
117
|
directory: {
|
|
118
|
+
writeable: boolean;
|
|
107
119
|
type: string;
|
|
120
|
+
isKey: boolean;
|
|
121
|
+
writable: boolean;
|
|
122
|
+
mandatory: boolean;
|
|
108
123
|
collection: boolean;
|
|
109
|
-
|
|
124
|
+
private?: boolean;
|
|
125
|
+
depends?: string;
|
|
126
|
+
additionalAttributes: string[];
|
|
127
|
+
description?: string;
|
|
128
|
+
default?: any;
|
|
129
|
+
set?: Function;
|
|
130
|
+
get?: Function;
|
|
131
|
+
env?: string[] | string;
|
|
110
132
|
};
|
|
111
133
|
packaging: {
|
|
134
|
+
writeable: boolean;
|
|
112
135
|
type: string;
|
|
136
|
+
isKey: boolean;
|
|
137
|
+
writable: boolean;
|
|
138
|
+
mandatory: boolean;
|
|
113
139
|
collection: boolean;
|
|
114
|
-
|
|
140
|
+
private?: boolean;
|
|
141
|
+
depends?: string;
|
|
142
|
+
additionalAttributes: string[];
|
|
143
|
+
description?: string;
|
|
144
|
+
default?: any;
|
|
145
|
+
set?: Function;
|
|
146
|
+
get?: Function;
|
|
147
|
+
env?: string[] | string;
|
|
115
148
|
};
|
|
116
149
|
disabled: {
|
|
117
150
|
type: string;
|
|
@@ -120,9 +153,20 @@ export namespace ServiceTypeDefinition {
|
|
|
120
153
|
default: boolean;
|
|
121
154
|
};
|
|
122
155
|
tags: {
|
|
123
|
-
type: string;
|
|
124
156
|
collection: boolean;
|
|
125
157
|
writeable: boolean;
|
|
158
|
+
type: string;
|
|
159
|
+
isKey: boolean;
|
|
160
|
+
writable: boolean;
|
|
161
|
+
mandatory: boolean;
|
|
162
|
+
private?: boolean;
|
|
163
|
+
depends?: string;
|
|
164
|
+
additionalAttributes: string[];
|
|
165
|
+
description?: string;
|
|
166
|
+
default?: any;
|
|
167
|
+
set?: Function;
|
|
168
|
+
get?: Function;
|
|
169
|
+
env?: string[] | string;
|
|
126
170
|
};
|
|
127
171
|
};
|
|
128
172
|
};
|
|
@@ -227,9 +271,20 @@ export class Service extends Base {
|
|
|
227
271
|
writeable: boolean;
|
|
228
272
|
};
|
|
229
273
|
description: {
|
|
274
|
+
writeable: boolean;
|
|
230
275
|
type: string;
|
|
276
|
+
isKey: boolean;
|
|
277
|
+
writable: boolean;
|
|
278
|
+
mandatory: boolean;
|
|
231
279
|
collection: boolean;
|
|
232
|
-
|
|
280
|
+
private?: boolean;
|
|
281
|
+
depends?: string;
|
|
282
|
+
additionalAttributes: string[];
|
|
283
|
+
description?: string;
|
|
284
|
+
default?: any;
|
|
285
|
+
set?: Function;
|
|
286
|
+
get?: Function;
|
|
287
|
+
env?: string[] | string;
|
|
233
288
|
};
|
|
234
289
|
priority: {
|
|
235
290
|
type: string;
|
|
@@ -237,14 +292,36 @@ export class Service extends Base {
|
|
|
237
292
|
writeable: boolean;
|
|
238
293
|
};
|
|
239
294
|
directory: {
|
|
295
|
+
writeable: boolean;
|
|
240
296
|
type: string;
|
|
297
|
+
isKey: boolean;
|
|
298
|
+
writable: boolean;
|
|
299
|
+
mandatory: boolean;
|
|
241
300
|
collection: boolean;
|
|
242
|
-
|
|
301
|
+
private?: boolean;
|
|
302
|
+
depends?: string;
|
|
303
|
+
additionalAttributes: string[];
|
|
304
|
+
description?: string;
|
|
305
|
+
default?: any;
|
|
306
|
+
set?: Function;
|
|
307
|
+
get?: Function;
|
|
308
|
+
env?: string[] | string;
|
|
243
309
|
};
|
|
244
310
|
packaging: {
|
|
311
|
+
writeable: boolean;
|
|
245
312
|
type: string;
|
|
313
|
+
isKey: boolean;
|
|
314
|
+
writable: boolean;
|
|
315
|
+
mandatory: boolean;
|
|
246
316
|
collection: boolean;
|
|
247
|
-
|
|
317
|
+
private?: boolean;
|
|
318
|
+
depends?: string;
|
|
319
|
+
additionalAttributes: string[];
|
|
320
|
+
description?: string;
|
|
321
|
+
default?: any;
|
|
322
|
+
set?: Function;
|
|
323
|
+
get?: Function;
|
|
324
|
+
env?: string[] | string;
|
|
248
325
|
};
|
|
249
326
|
disabled: {
|
|
250
327
|
type: string;
|
|
@@ -253,9 +330,20 @@ export class Service extends Base {
|
|
|
253
330
|
default: boolean;
|
|
254
331
|
};
|
|
255
332
|
tags: {
|
|
256
|
-
type: string;
|
|
257
333
|
collection: boolean;
|
|
258
334
|
writeable: boolean;
|
|
335
|
+
type: string;
|
|
336
|
+
isKey: boolean;
|
|
337
|
+
writable: boolean;
|
|
338
|
+
mandatory: boolean;
|
|
339
|
+
private?: boolean;
|
|
340
|
+
depends?: string;
|
|
341
|
+
additionalAttributes: string[];
|
|
342
|
+
description?: string;
|
|
343
|
+
default?: any;
|
|
344
|
+
set?: Function;
|
|
345
|
+
get?: Function;
|
|
346
|
+
env?: string[] | string;
|
|
259
347
|
};
|
|
260
348
|
};
|
|
261
349
|
};
|
|
@@ -26,9 +26,20 @@ export class BindService extends ExtraSourceService {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class BindService extends ExtraSourceService {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class BindService extends ExtraSourceService {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -160,9 +204,20 @@ export class BindService extends ExtraSourceService {
|
|
|
160
204
|
writeable: boolean;
|
|
161
205
|
};
|
|
162
206
|
description: {
|
|
207
|
+
writeable: boolean;
|
|
163
208
|
type: string;
|
|
209
|
+
isKey: boolean;
|
|
210
|
+
writable: boolean;
|
|
211
|
+
mandatory: boolean;
|
|
164
212
|
collection: boolean;
|
|
165
|
-
|
|
213
|
+
private?: boolean;
|
|
214
|
+
depends?: string;
|
|
215
|
+
additionalAttributes: string[];
|
|
216
|
+
description?: string;
|
|
217
|
+
default?: any;
|
|
218
|
+
set?: Function;
|
|
219
|
+
get?: Function;
|
|
220
|
+
env?: string[] | string;
|
|
166
221
|
};
|
|
167
222
|
priority: {
|
|
168
223
|
type: string;
|
|
@@ -170,14 +225,36 @@ export class BindService extends ExtraSourceService {
|
|
|
170
225
|
writeable: boolean;
|
|
171
226
|
};
|
|
172
227
|
directory: {
|
|
228
|
+
writeable: boolean;
|
|
173
229
|
type: string;
|
|
230
|
+
isKey: boolean;
|
|
231
|
+
writable: boolean;
|
|
232
|
+
mandatory: boolean;
|
|
174
233
|
collection: boolean;
|
|
175
|
-
|
|
234
|
+
private?: boolean;
|
|
235
|
+
depends?: string;
|
|
236
|
+
additionalAttributes: string[];
|
|
237
|
+
description?: string;
|
|
238
|
+
default?: any;
|
|
239
|
+
set?: Function;
|
|
240
|
+
get?: Function;
|
|
241
|
+
env?: string[] | string;
|
|
176
242
|
};
|
|
177
243
|
packaging: {
|
|
244
|
+
writeable: boolean;
|
|
178
245
|
type: string;
|
|
246
|
+
isKey: boolean;
|
|
247
|
+
writable: boolean;
|
|
248
|
+
mandatory: boolean;
|
|
179
249
|
collection: boolean;
|
|
180
|
-
|
|
250
|
+
private?: boolean;
|
|
251
|
+
depends?: string;
|
|
252
|
+
additionalAttributes: string[];
|
|
253
|
+
description?: string;
|
|
254
|
+
default?: any;
|
|
255
|
+
set?: Function;
|
|
256
|
+
get?: Function;
|
|
257
|
+
env?: string[] | string;
|
|
181
258
|
};
|
|
182
259
|
disabled: {
|
|
183
260
|
type: string;
|
|
@@ -186,9 +263,20 @@ export class BindService extends ExtraSourceService {
|
|
|
186
263
|
default: boolean;
|
|
187
264
|
};
|
|
188
265
|
tags: {
|
|
189
|
-
type: string;
|
|
190
266
|
collection: boolean;
|
|
191
267
|
writeable: boolean;
|
|
268
|
+
type: string;
|
|
269
|
+
isKey: boolean;
|
|
270
|
+
writable: boolean;
|
|
271
|
+
mandatory: boolean;
|
|
272
|
+
private?: boolean;
|
|
273
|
+
depends?: string;
|
|
274
|
+
additionalAttributes: string[];
|
|
275
|
+
description?: string;
|
|
276
|
+
default?: any;
|
|
277
|
+
set?: Function;
|
|
278
|
+
get?: Function;
|
|
279
|
+
env?: string[] | string;
|
|
192
280
|
};
|
|
193
281
|
};
|
|
194
282
|
};
|
|
@@ -26,9 +26,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class ChronyService extends ExtraSourceService {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -160,9 +204,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
160
204
|
writeable: boolean;
|
|
161
205
|
};
|
|
162
206
|
description: {
|
|
207
|
+
writeable: boolean;
|
|
163
208
|
type: string;
|
|
209
|
+
isKey: boolean;
|
|
210
|
+
writable: boolean;
|
|
211
|
+
mandatory: boolean;
|
|
164
212
|
collection: boolean;
|
|
165
|
-
|
|
213
|
+
private?: boolean;
|
|
214
|
+
depends?: string;
|
|
215
|
+
additionalAttributes: string[];
|
|
216
|
+
description?: string;
|
|
217
|
+
default?: any;
|
|
218
|
+
set?: Function;
|
|
219
|
+
get?: Function;
|
|
220
|
+
env?: string[] | string;
|
|
166
221
|
};
|
|
167
222
|
priority: {
|
|
168
223
|
type: string;
|
|
@@ -170,14 +225,36 @@ export class ChronyService extends ExtraSourceService {
|
|
|
170
225
|
writeable: boolean;
|
|
171
226
|
};
|
|
172
227
|
directory: {
|
|
228
|
+
writeable: boolean;
|
|
173
229
|
type: string;
|
|
230
|
+
isKey: boolean;
|
|
231
|
+
writable: boolean;
|
|
232
|
+
mandatory: boolean;
|
|
174
233
|
collection: boolean;
|
|
175
|
-
|
|
234
|
+
private?: boolean;
|
|
235
|
+
depends?: string;
|
|
236
|
+
additionalAttributes: string[];
|
|
237
|
+
description?: string;
|
|
238
|
+
default?: any;
|
|
239
|
+
set?: Function;
|
|
240
|
+
get?: Function;
|
|
241
|
+
env?: string[] | string;
|
|
176
242
|
};
|
|
177
243
|
packaging: {
|
|
244
|
+
writeable: boolean;
|
|
178
245
|
type: string;
|
|
246
|
+
isKey: boolean;
|
|
247
|
+
writable: boolean;
|
|
248
|
+
mandatory: boolean;
|
|
179
249
|
collection: boolean;
|
|
180
|
-
|
|
250
|
+
private?: boolean;
|
|
251
|
+
depends?: string;
|
|
252
|
+
additionalAttributes: string[];
|
|
253
|
+
description?: string;
|
|
254
|
+
default?: any;
|
|
255
|
+
set?: Function;
|
|
256
|
+
get?: Function;
|
|
257
|
+
env?: string[] | string;
|
|
181
258
|
};
|
|
182
259
|
disabled: {
|
|
183
260
|
type: string;
|
|
@@ -186,9 +263,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
186
263
|
default: boolean;
|
|
187
264
|
};
|
|
188
265
|
tags: {
|
|
189
|
-
type: string;
|
|
190
266
|
collection: boolean;
|
|
191
267
|
writeable: boolean;
|
|
268
|
+
type: string;
|
|
269
|
+
isKey: boolean;
|
|
270
|
+
writable: boolean;
|
|
271
|
+
mandatory: boolean;
|
|
272
|
+
private?: boolean;
|
|
273
|
+
depends?: string;
|
|
274
|
+
additionalAttributes: string[];
|
|
275
|
+
description?: string;
|
|
276
|
+
default?: any;
|
|
277
|
+
set?: Function;
|
|
278
|
+
get?: Function;
|
|
279
|
+
env?: string[] | string;
|
|
192
280
|
};
|
|
193
281
|
};
|
|
194
282
|
};
|
|
@@ -26,9 +26,20 @@ export class InfluxdbService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class InfluxdbService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class InfluxdbService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class InfluxdbService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class InfluxdbService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class InfluxdbService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|