pmcf 3.1.0 → 3.1.2
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/services/kea.mjs +1 -0
- package/types/base.d.mts +0 -6
- package/types/cluster.d.mts +0 -38
- package/types/extra-source-service.d.mts +0 -16
- package/types/host.d.mts +0 -24
- package/types/location.d.mts +0 -29
- package/types/network-interfaces/ethernet.d.mts +0 -40
- package/types/network-interfaces/loopback.d.mts +0 -40
- package/types/network-interfaces/network-interface.d.mts +0 -40
- package/types/network-interfaces/wireguard.d.mts +0 -40
- package/types/network-interfaces/wlan.d.mts +0 -60
- package/types/network-support.d.mts +0 -11
- package/types/network.d.mts +0 -20
- package/types/owner.d.mts +0 -14
- package/types/root.d.mts +0 -29
- package/types/service.d.mts +0 -36
- package/types/services/bind.d.mts +0 -44
- package/types/services/chrony.d.mts +0 -32
- package/types/services/influxdb.d.mts +0 -32
- package/types/services/kea.d.mts +1 -38
- package/types/services/mosquitto.d.mts +0 -32
- package/types/services/openldap.d.mts +0 -35
- package/types/services/systemd-journal-remote.d.mts +0 -32
- package/types/services/systemd-journal-upload.d.mts +0 -33
- package/types/services/systemd-journal.d.mts +0 -32
- package/types/services/systemd-resolved.d.mts +0 -32
- package/types/services/systemd-timesyncd.d.mts +0 -32
- package/types/subnet.d.mts +0 -1
|
@@ -23,7 +23,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
25
25
|
depends?: string;
|
|
26
|
-
additionalAttributes: string[];
|
|
27
26
|
description?: string;
|
|
28
27
|
default?: any;
|
|
29
28
|
set?: Function;
|
|
@@ -38,7 +37,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
38
37
|
collection: boolean;
|
|
39
38
|
private?: boolean;
|
|
40
39
|
depends?: string;
|
|
41
|
-
additionalAttributes: string[];
|
|
42
40
|
description?: string;
|
|
43
41
|
default?: any;
|
|
44
42
|
set?: Function;
|
|
@@ -58,7 +56,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
58
56
|
collection: boolean;
|
|
59
57
|
private?: boolean;
|
|
60
58
|
depends?: string;
|
|
61
|
-
additionalAttributes: string[];
|
|
62
59
|
description?: string;
|
|
63
60
|
default?: any;
|
|
64
61
|
set?: Function;
|
|
@@ -73,7 +70,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
73
70
|
collection: boolean;
|
|
74
71
|
private?: boolean;
|
|
75
72
|
depends?: string;
|
|
76
|
-
additionalAttributes: string[];
|
|
77
73
|
description?: string;
|
|
78
74
|
default?: any;
|
|
79
75
|
set?: Function;
|
|
@@ -89,7 +85,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
89
85
|
collection: boolean;
|
|
90
86
|
private?: boolean;
|
|
91
87
|
depends?: string;
|
|
92
|
-
additionalAttributes: string[];
|
|
93
88
|
description?: string;
|
|
94
89
|
set?: Function;
|
|
95
90
|
get?: Function;
|
|
@@ -103,7 +98,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
103
98
|
mandatory: boolean;
|
|
104
99
|
private?: boolean;
|
|
105
100
|
depends?: string;
|
|
106
|
-
additionalAttributes: string[];
|
|
107
101
|
description?: string;
|
|
108
102
|
default?: any;
|
|
109
103
|
set?: Function;
|
|
@@ -123,7 +117,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
123
117
|
collection: boolean;
|
|
124
118
|
private?: boolean;
|
|
125
119
|
depends?: string;
|
|
126
|
-
additionalAttributes: string[];
|
|
127
120
|
description?: string;
|
|
128
121
|
default?: any;
|
|
129
122
|
set?: Function;
|
|
@@ -155,7 +148,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
155
148
|
collection: boolean;
|
|
156
149
|
private?: boolean;
|
|
157
150
|
depends?: string;
|
|
158
|
-
additionalAttributes: string[];
|
|
159
151
|
description?: string;
|
|
160
152
|
default?: any;
|
|
161
153
|
set?: Function;
|
|
@@ -170,7 +162,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
170
162
|
collection: boolean;
|
|
171
163
|
private?: boolean;
|
|
172
164
|
depends?: string;
|
|
173
|
-
additionalAttributes: string[];
|
|
174
165
|
description?: string;
|
|
175
166
|
default?: any;
|
|
176
167
|
set?: Function;
|
|
@@ -185,7 +176,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
185
176
|
mandatory: boolean;
|
|
186
177
|
private?: boolean;
|
|
187
178
|
depends?: string;
|
|
188
|
-
additionalAttributes: string[];
|
|
189
179
|
description?: string;
|
|
190
180
|
default?: any;
|
|
191
181
|
set?: Function;
|
|
@@ -200,7 +190,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
200
190
|
collection: boolean;
|
|
201
191
|
private?: boolean;
|
|
202
192
|
depends?: string;
|
|
203
|
-
additionalAttributes: string[];
|
|
204
193
|
description?: string;
|
|
205
194
|
default?: any;
|
|
206
195
|
set?: Function;
|
|
@@ -215,7 +204,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
215
204
|
collection: boolean;
|
|
216
205
|
private?: boolean;
|
|
217
206
|
depends?: string;
|
|
218
|
-
additionalAttributes: string[];
|
|
219
207
|
description?: string;
|
|
220
208
|
default?: any;
|
|
221
209
|
set?: Function;
|
|
@@ -230,7 +218,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
230
218
|
mandatory: boolean;
|
|
231
219
|
private?: boolean;
|
|
232
220
|
depends?: string;
|
|
233
|
-
additionalAttributes: string[];
|
|
234
221
|
description?: string;
|
|
235
222
|
default?: any;
|
|
236
223
|
set?: Function;
|
|
@@ -245,7 +232,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
245
232
|
collection: boolean;
|
|
246
233
|
private?: boolean;
|
|
247
234
|
depends?: string;
|
|
248
|
-
additionalAttributes: string[];
|
|
249
235
|
description?: string;
|
|
250
236
|
default?: any;
|
|
251
237
|
set?: Function;
|
|
@@ -260,7 +246,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
260
246
|
mandatory: boolean;
|
|
261
247
|
private?: boolean;
|
|
262
248
|
depends?: string;
|
|
263
|
-
additionalAttributes: string[];
|
|
264
249
|
description?: string;
|
|
265
250
|
default?: any;
|
|
266
251
|
set?: Function;
|
|
@@ -275,7 +260,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
275
260
|
collection: boolean;
|
|
276
261
|
private?: boolean;
|
|
277
262
|
depends?: string;
|
|
278
|
-
additionalAttributes: string[];
|
|
279
263
|
description?: string;
|
|
280
264
|
default?: any;
|
|
281
265
|
set?: Function;
|
|
@@ -310,7 +294,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
310
294
|
collection: boolean;
|
|
311
295
|
private?: boolean;
|
|
312
296
|
depends?: string;
|
|
313
|
-
additionalAttributes: string[];
|
|
314
297
|
description?: string;
|
|
315
298
|
default?: any;
|
|
316
299
|
set?: Function;
|
|
@@ -325,7 +308,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
325
308
|
collection: boolean;
|
|
326
309
|
private?: boolean;
|
|
327
310
|
depends?: string;
|
|
328
|
-
additionalAttributes: string[];
|
|
329
311
|
description?: string;
|
|
330
312
|
default?: any;
|
|
331
313
|
set?: Function;
|
|
@@ -345,7 +327,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
345
327
|
collection: boolean;
|
|
346
328
|
private?: boolean;
|
|
347
329
|
depends?: string;
|
|
348
|
-
additionalAttributes: string[];
|
|
349
330
|
description?: string;
|
|
350
331
|
default?: any;
|
|
351
332
|
set?: Function;
|
|
@@ -360,7 +341,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
360
341
|
collection: boolean;
|
|
361
342
|
private?: boolean;
|
|
362
343
|
depends?: string;
|
|
363
|
-
additionalAttributes: string[];
|
|
364
344
|
description?: string;
|
|
365
345
|
default?: any;
|
|
366
346
|
set?: Function;
|
|
@@ -376,7 +356,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
376
356
|
collection: boolean;
|
|
377
357
|
private?: boolean;
|
|
378
358
|
depends?: string;
|
|
379
|
-
additionalAttributes: string[];
|
|
380
359
|
description?: string;
|
|
381
360
|
set?: Function;
|
|
382
361
|
get?: Function;
|
|
@@ -390,7 +369,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
390
369
|
mandatory: boolean;
|
|
391
370
|
private?: boolean;
|
|
392
371
|
depends?: string;
|
|
393
|
-
additionalAttributes: string[];
|
|
394
372
|
description?: string;
|
|
395
373
|
default?: any;
|
|
396
374
|
set?: Function;
|
|
@@ -410,7 +388,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
410
388
|
collection: boolean;
|
|
411
389
|
private?: boolean;
|
|
412
390
|
depends?: string;
|
|
413
|
-
additionalAttributes: string[];
|
|
414
391
|
description?: string;
|
|
415
392
|
default?: any;
|
|
416
393
|
set?: Function;
|
|
@@ -442,7 +419,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
442
419
|
collection: boolean;
|
|
443
420
|
private?: boolean;
|
|
444
421
|
depends?: string;
|
|
445
|
-
additionalAttributes: string[];
|
|
446
422
|
description?: string;
|
|
447
423
|
default?: any;
|
|
448
424
|
set?: Function;
|
|
@@ -457,7 +433,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
457
433
|
collection: boolean;
|
|
458
434
|
private?: boolean;
|
|
459
435
|
depends?: string;
|
|
460
|
-
additionalAttributes: string[];
|
|
461
436
|
description?: string;
|
|
462
437
|
default?: any;
|
|
463
438
|
set?: Function;
|
|
@@ -472,7 +447,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
472
447
|
mandatory: boolean;
|
|
473
448
|
private?: boolean;
|
|
474
449
|
depends?: string;
|
|
475
|
-
additionalAttributes: string[];
|
|
476
450
|
description?: string;
|
|
477
451
|
default?: any;
|
|
478
452
|
set?: Function;
|
|
@@ -487,7 +461,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
487
461
|
collection: boolean;
|
|
488
462
|
private?: boolean;
|
|
489
463
|
depends?: string;
|
|
490
|
-
additionalAttributes: string[];
|
|
491
464
|
description?: string;
|
|
492
465
|
default?: any;
|
|
493
466
|
set?: Function;
|
|
@@ -502,7 +475,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
502
475
|
collection: boolean;
|
|
503
476
|
private?: boolean;
|
|
504
477
|
depends?: string;
|
|
505
|
-
additionalAttributes: string[];
|
|
506
478
|
description?: string;
|
|
507
479
|
default?: any;
|
|
508
480
|
set?: Function;
|
|
@@ -517,7 +489,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
517
489
|
mandatory: boolean;
|
|
518
490
|
private?: boolean;
|
|
519
491
|
depends?: string;
|
|
520
|
-
additionalAttributes: string[];
|
|
521
492
|
description?: string;
|
|
522
493
|
default?: any;
|
|
523
494
|
set?: Function;
|
|
@@ -532,7 +503,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
532
503
|
collection: boolean;
|
|
533
504
|
private?: boolean;
|
|
534
505
|
depends?: string;
|
|
535
|
-
additionalAttributes: string[];
|
|
536
506
|
description?: string;
|
|
537
507
|
default?: any;
|
|
538
508
|
set?: Function;
|
|
@@ -547,7 +517,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
547
517
|
mandatory: boolean;
|
|
548
518
|
private?: boolean;
|
|
549
519
|
depends?: string;
|
|
550
|
-
additionalAttributes: string[];
|
|
551
520
|
description?: string;
|
|
552
521
|
default?: any;
|
|
553
522
|
set?: Function;
|
|
@@ -562,7 +531,6 @@ export class ChronyService extends ExtraSourceService {
|
|
|
562
531
|
collection: boolean;
|
|
563
532
|
private?: boolean;
|
|
564
533
|
depends?: string;
|
|
565
|
-
additionalAttributes: string[];
|
|
566
534
|
description?: string;
|
|
567
535
|
default?: any;
|
|
568
536
|
set?: Function;
|
|
@@ -23,7 +23,6 @@ export class InfluxdbService extends Service {
|
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
25
25
|
depends?: string;
|
|
26
|
-
additionalAttributes: string[];
|
|
27
26
|
description?: string;
|
|
28
27
|
default?: any;
|
|
29
28
|
set?: Function;
|
|
@@ -38,7 +37,6 @@ export class InfluxdbService extends Service {
|
|
|
38
37
|
collection: boolean;
|
|
39
38
|
private?: boolean;
|
|
40
39
|
depends?: string;
|
|
41
|
-
additionalAttributes: string[];
|
|
42
40
|
description?: string;
|
|
43
41
|
default?: any;
|
|
44
42
|
set?: Function;
|
|
@@ -58,7 +56,6 @@ export class InfluxdbService extends Service {
|
|
|
58
56
|
collection: boolean;
|
|
59
57
|
private?: boolean;
|
|
60
58
|
depends?: string;
|
|
61
|
-
additionalAttributes: string[];
|
|
62
59
|
description?: string;
|
|
63
60
|
default?: any;
|
|
64
61
|
set?: Function;
|
|
@@ -73,7 +70,6 @@ export class InfluxdbService extends Service {
|
|
|
73
70
|
collection: boolean;
|
|
74
71
|
private?: boolean;
|
|
75
72
|
depends?: string;
|
|
76
|
-
additionalAttributes: string[];
|
|
77
73
|
description?: string;
|
|
78
74
|
default?: any;
|
|
79
75
|
set?: Function;
|
|
@@ -89,7 +85,6 @@ export class InfluxdbService extends Service {
|
|
|
89
85
|
collection: boolean;
|
|
90
86
|
private?: boolean;
|
|
91
87
|
depends?: string;
|
|
92
|
-
additionalAttributes: string[];
|
|
93
88
|
description?: string;
|
|
94
89
|
set?: Function;
|
|
95
90
|
get?: Function;
|
|
@@ -103,7 +98,6 @@ export class InfluxdbService extends Service {
|
|
|
103
98
|
mandatory: boolean;
|
|
104
99
|
private?: boolean;
|
|
105
100
|
depends?: string;
|
|
106
|
-
additionalAttributes: string[];
|
|
107
101
|
description?: string;
|
|
108
102
|
default?: any;
|
|
109
103
|
set?: Function;
|
|
@@ -123,7 +117,6 @@ export class InfluxdbService extends Service {
|
|
|
123
117
|
collection: boolean;
|
|
124
118
|
private?: boolean;
|
|
125
119
|
depends?: string;
|
|
126
|
-
additionalAttributes: string[];
|
|
127
120
|
description?: string;
|
|
128
121
|
default?: any;
|
|
129
122
|
set?: Function;
|
|
@@ -155,7 +148,6 @@ export class InfluxdbService extends Service {
|
|
|
155
148
|
collection: boolean;
|
|
156
149
|
private?: boolean;
|
|
157
150
|
depends?: string;
|
|
158
|
-
additionalAttributes: string[];
|
|
159
151
|
description?: string;
|
|
160
152
|
default?: any;
|
|
161
153
|
set?: Function;
|
|
@@ -170,7 +162,6 @@ export class InfluxdbService extends Service {
|
|
|
170
162
|
collection: boolean;
|
|
171
163
|
private?: boolean;
|
|
172
164
|
depends?: string;
|
|
173
|
-
additionalAttributes: string[];
|
|
174
165
|
description?: string;
|
|
175
166
|
default?: any;
|
|
176
167
|
set?: Function;
|
|
@@ -185,7 +176,6 @@ export class InfluxdbService extends Service {
|
|
|
185
176
|
mandatory: boolean;
|
|
186
177
|
private?: boolean;
|
|
187
178
|
depends?: string;
|
|
188
|
-
additionalAttributes: string[];
|
|
189
179
|
description?: string;
|
|
190
180
|
default?: any;
|
|
191
181
|
set?: Function;
|
|
@@ -200,7 +190,6 @@ export class InfluxdbService extends Service {
|
|
|
200
190
|
collection: boolean;
|
|
201
191
|
private?: boolean;
|
|
202
192
|
depends?: string;
|
|
203
|
-
additionalAttributes: string[];
|
|
204
193
|
description?: string;
|
|
205
194
|
default?: any;
|
|
206
195
|
set?: Function;
|
|
@@ -215,7 +204,6 @@ export class InfluxdbService extends Service {
|
|
|
215
204
|
collection: boolean;
|
|
216
205
|
private?: boolean;
|
|
217
206
|
depends?: string;
|
|
218
|
-
additionalAttributes: string[];
|
|
219
207
|
description?: string;
|
|
220
208
|
default?: any;
|
|
221
209
|
set?: Function;
|
|
@@ -230,7 +218,6 @@ export class InfluxdbService extends Service {
|
|
|
230
218
|
mandatory: boolean;
|
|
231
219
|
private?: boolean;
|
|
232
220
|
depends?: string;
|
|
233
|
-
additionalAttributes: string[];
|
|
234
221
|
description?: string;
|
|
235
222
|
default?: any;
|
|
236
223
|
set?: Function;
|
|
@@ -245,7 +232,6 @@ export class InfluxdbService extends Service {
|
|
|
245
232
|
collection: boolean;
|
|
246
233
|
private?: boolean;
|
|
247
234
|
depends?: string;
|
|
248
|
-
additionalAttributes: string[];
|
|
249
235
|
description?: string;
|
|
250
236
|
default?: any;
|
|
251
237
|
set?: Function;
|
|
@@ -260,7 +246,6 @@ export class InfluxdbService extends Service {
|
|
|
260
246
|
mandatory: boolean;
|
|
261
247
|
private?: boolean;
|
|
262
248
|
depends?: string;
|
|
263
|
-
additionalAttributes: string[];
|
|
264
249
|
description?: string;
|
|
265
250
|
default?: any;
|
|
266
251
|
set?: Function;
|
|
@@ -275,7 +260,6 @@ export class InfluxdbService extends Service {
|
|
|
275
260
|
collection: boolean;
|
|
276
261
|
private?: boolean;
|
|
277
262
|
depends?: string;
|
|
278
|
-
additionalAttributes: string[];
|
|
279
263
|
description?: string;
|
|
280
264
|
default?: any;
|
|
281
265
|
set?: Function;
|
|
@@ -307,7 +291,6 @@ export class InfluxdbService extends Service {
|
|
|
307
291
|
collection: boolean;
|
|
308
292
|
private?: boolean;
|
|
309
293
|
depends?: string;
|
|
310
|
-
additionalAttributes: string[];
|
|
311
294
|
description?: string;
|
|
312
295
|
default?: any;
|
|
313
296
|
set?: Function;
|
|
@@ -322,7 +305,6 @@ export class InfluxdbService extends Service {
|
|
|
322
305
|
collection: boolean;
|
|
323
306
|
private?: boolean;
|
|
324
307
|
depends?: string;
|
|
325
|
-
additionalAttributes: string[];
|
|
326
308
|
description?: string;
|
|
327
309
|
default?: any;
|
|
328
310
|
set?: Function;
|
|
@@ -342,7 +324,6 @@ export class InfluxdbService extends Service {
|
|
|
342
324
|
collection: boolean;
|
|
343
325
|
private?: boolean;
|
|
344
326
|
depends?: string;
|
|
345
|
-
additionalAttributes: string[];
|
|
346
327
|
description?: string;
|
|
347
328
|
default?: any;
|
|
348
329
|
set?: Function;
|
|
@@ -357,7 +338,6 @@ export class InfluxdbService extends Service {
|
|
|
357
338
|
collection: boolean;
|
|
358
339
|
private?: boolean;
|
|
359
340
|
depends?: string;
|
|
360
|
-
additionalAttributes: string[];
|
|
361
341
|
description?: string;
|
|
362
342
|
default?: any;
|
|
363
343
|
set?: Function;
|
|
@@ -373,7 +353,6 @@ export class InfluxdbService extends Service {
|
|
|
373
353
|
collection: boolean;
|
|
374
354
|
private?: boolean;
|
|
375
355
|
depends?: string;
|
|
376
|
-
additionalAttributes: string[];
|
|
377
356
|
description?: string;
|
|
378
357
|
set?: Function;
|
|
379
358
|
get?: Function;
|
|
@@ -387,7 +366,6 @@ export class InfluxdbService extends Service {
|
|
|
387
366
|
mandatory: boolean;
|
|
388
367
|
private?: boolean;
|
|
389
368
|
depends?: string;
|
|
390
|
-
additionalAttributes: string[];
|
|
391
369
|
description?: string;
|
|
392
370
|
default?: any;
|
|
393
371
|
set?: Function;
|
|
@@ -407,7 +385,6 @@ export class InfluxdbService extends Service {
|
|
|
407
385
|
collection: boolean;
|
|
408
386
|
private?: boolean;
|
|
409
387
|
depends?: string;
|
|
410
|
-
additionalAttributes: string[];
|
|
411
388
|
description?: string;
|
|
412
389
|
default?: any;
|
|
413
390
|
set?: Function;
|
|
@@ -439,7 +416,6 @@ export class InfluxdbService extends Service {
|
|
|
439
416
|
collection: boolean;
|
|
440
417
|
private?: boolean;
|
|
441
418
|
depends?: string;
|
|
442
|
-
additionalAttributes: string[];
|
|
443
419
|
description?: string;
|
|
444
420
|
default?: any;
|
|
445
421
|
set?: Function;
|
|
@@ -454,7 +430,6 @@ export class InfluxdbService extends Service {
|
|
|
454
430
|
collection: boolean;
|
|
455
431
|
private?: boolean;
|
|
456
432
|
depends?: string;
|
|
457
|
-
additionalAttributes: string[];
|
|
458
433
|
description?: string;
|
|
459
434
|
default?: any;
|
|
460
435
|
set?: Function;
|
|
@@ -469,7 +444,6 @@ export class InfluxdbService extends Service {
|
|
|
469
444
|
mandatory: boolean;
|
|
470
445
|
private?: boolean;
|
|
471
446
|
depends?: string;
|
|
472
|
-
additionalAttributes: string[];
|
|
473
447
|
description?: string;
|
|
474
448
|
default?: any;
|
|
475
449
|
set?: Function;
|
|
@@ -484,7 +458,6 @@ export class InfluxdbService extends Service {
|
|
|
484
458
|
collection: boolean;
|
|
485
459
|
private?: boolean;
|
|
486
460
|
depends?: string;
|
|
487
|
-
additionalAttributes: string[];
|
|
488
461
|
description?: string;
|
|
489
462
|
default?: any;
|
|
490
463
|
set?: Function;
|
|
@@ -499,7 +472,6 @@ export class InfluxdbService extends Service {
|
|
|
499
472
|
collection: boolean;
|
|
500
473
|
private?: boolean;
|
|
501
474
|
depends?: string;
|
|
502
|
-
additionalAttributes: string[];
|
|
503
475
|
description?: string;
|
|
504
476
|
default?: any;
|
|
505
477
|
set?: Function;
|
|
@@ -514,7 +486,6 @@ export class InfluxdbService extends Service {
|
|
|
514
486
|
mandatory: boolean;
|
|
515
487
|
private?: boolean;
|
|
516
488
|
depends?: string;
|
|
517
|
-
additionalAttributes: string[];
|
|
518
489
|
description?: string;
|
|
519
490
|
default?: any;
|
|
520
491
|
set?: Function;
|
|
@@ -529,7 +500,6 @@ export class InfluxdbService extends Service {
|
|
|
529
500
|
collection: boolean;
|
|
530
501
|
private?: boolean;
|
|
531
502
|
depends?: string;
|
|
532
|
-
additionalAttributes: string[];
|
|
533
503
|
description?: string;
|
|
534
504
|
default?: any;
|
|
535
505
|
set?: Function;
|
|
@@ -544,7 +514,6 @@ export class InfluxdbService extends Service {
|
|
|
544
514
|
mandatory: boolean;
|
|
545
515
|
private?: boolean;
|
|
546
516
|
depends?: string;
|
|
547
|
-
additionalAttributes: string[];
|
|
548
517
|
description?: string;
|
|
549
518
|
default?: any;
|
|
550
519
|
set?: Function;
|
|
@@ -559,7 +528,6 @@ export class InfluxdbService extends Service {
|
|
|
559
528
|
collection: boolean;
|
|
560
529
|
private?: boolean;
|
|
561
530
|
depends?: string;
|
|
562
|
-
additionalAttributes: string[];
|
|
563
531
|
description?: string;
|
|
564
532
|
default?: any;
|
|
565
533
|
set?: Function;
|