pmcf 4.19.2 → 4.20.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/README.md +93 -72
- package/package.json +19 -19
- package/src/base.mjs +23 -241
- package/src/cli.mjs +4 -4
- package/src/cluster.mjs +13 -11
- package/src/extra-source-service.mjs +7 -10
- package/src/host.mjs +30 -44
- package/src/initialization-context.mjs +324 -0
- package/src/location.mjs +4 -14
- package/src/module.mjs +1 -0
- package/src/network-interfaces/ethernet.mjs +3 -5
- package/src/network-interfaces/loopback.mjs +2 -4
- package/src/network-interfaces/network-interface.mjs +3 -5
- package/src/network-interfaces/skeleton.mjs +9 -3
- package/src/network-interfaces/tun.mjs +2 -4
- package/src/network-interfaces/wireguard.mjs +3 -5
- package/src/network-interfaces/wlan.mjs +4 -7
- package/src/network.mjs +10 -8
- package/src/owner.mjs +7 -31
- package/src/root.mjs +4 -73
- package/src/service-owner.mjs +19 -18
- package/src/service.mjs +13 -18
- package/src/services/alpm.mjs +4 -9
- package/src/services/bind.mjs +424 -388
- package/src/services/chrony.mjs +3 -5
- package/src/services/headscale.mjs +2 -4
- package/src/services/influxdb.mjs +2 -4
- package/src/services/kea.mjs +6 -10
- package/src/services/mosquitto.mjs +2 -4
- package/src/services/openldap.mjs +2 -4
- package/src/services/postfix.mjs +2 -4
- package/src/services/systemd-journal-remote.mjs +2 -4
- package/src/services/systemd-journal-upload.mjs +9 -10
- package/src/services/systemd-journald.mjs +2 -4
- package/src/services/systemd-resolved.mjs +42 -42
- package/src/services/systemd-timesyncd.mjs +9 -13
- package/src/services/tailscale.mjs +5 -2
- package/src/subnet.mjs +9 -5
- package/types/base.d.mts +0 -180
- package/types/cli.d.mts +0 -10
- package/types/cluster.d.mts +0 -507
- package/types/dns-utils.d.mts +0 -14
- package/types/endpoint.d.mts +0 -79
- package/types/extra-source-service.d.mts +0 -1033
- package/types/hooks.d.mts +0 -2
- package/types/host-utils.d.mts +0 -1
- package/types/host.d.mts +0 -285
- package/types/location.d.mts +0 -379
- package/types/module.d.mts +0 -36
- package/types/network-address.d.mts +0 -41
- package/types/network-interfaces/ethernet.d.mts +0 -1189
- package/types/network-interfaces/loopback.d.mts +0 -1140
- package/types/network-interfaces/network-interface.d.mts +0 -1158
- package/types/network-interfaces/skeleton.d.mts +0 -30
- package/types/network-interfaces/tun.d.mts +0 -1131
- package/types/network-interfaces/wireguard.d.mts +0 -1131
- package/types/network-interfaces/wlan.d.mts +0 -1734
- package/types/network-support.d.mts +0 -193
- package/types/network.d.mts +0 -702
- package/types/owner.d.mts +0 -235
- package/types/root.d.mts +0 -10
- package/types/service-owner.d.mts +0 -14
- package/types/service-types.d.mts +0 -246
- package/types/service.d.mts +0 -689
- package/types/services/alpm.d.mts +0 -805
- package/types/services/bind.d.mts +0 -1574
- package/types/services/chrony.d.mts +0 -1310
- package/types/services/headscale.d.mts +0 -801
- package/types/services/influxdb.d.mts +0 -812
- package/types/services/kea.d.mts +0 -945
- package/types/services/mosquitto.d.mts +0 -876
- package/types/services/openldap.d.mts +0 -793
- package/types/services/postfix.d.mts +0 -784
- package/types/services/systemd-journal-remote.d.mts +0 -1030
- package/types/services/systemd-journal-upload.d.mts +0 -932
- package/types/services/systemd-journald.d.mts +0 -1317
- package/types/services/systemd-resolved.d.mts +0 -1644
- package/types/services/systemd-timesyncd.d.mts +0 -1459
- package/types/services/tailscale.d.mts +0 -781
- package/types/subnet.d.mts +0 -57
- package/types/utils.d.mts +0 -37
package/types/base.d.mts
DELETED
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
export function extractFrom(object: any, typeDefinition?: any): any;
|
|
2
|
-
/**
|
|
3
|
-
*
|
|
4
|
-
* attributes: essential values
|
|
5
|
-
* properties: use defined values to support attribute value definitions
|
|
6
|
-
*/
|
|
7
|
-
export class Base {
|
|
8
|
-
static name: string;
|
|
9
|
-
static key: string;
|
|
10
|
-
static attributes: {
|
|
11
|
-
owner: {
|
|
12
|
-
type: string;
|
|
13
|
-
isKey: boolean;
|
|
14
|
-
writable: boolean;
|
|
15
|
-
mandatory: boolean;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
constructor?: Function;
|
|
18
|
-
private?: boolean;
|
|
19
|
-
credential?: boolean;
|
|
20
|
-
persistent?: boolean;
|
|
21
|
-
depends?: string;
|
|
22
|
-
description?: string;
|
|
23
|
-
default?: any;
|
|
24
|
-
set?: Function;
|
|
25
|
-
get?: Function;
|
|
26
|
-
toInternal?: Function;
|
|
27
|
-
toExternal?: 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
|
-
static get typeName(): string;
|
|
43
|
-
static get typeDefinition(): typeof Base;
|
|
44
|
-
static get typeFileName(): string;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @param {Base} owner
|
|
48
|
-
* @param {object} [data]
|
|
49
|
-
*/
|
|
50
|
-
constructor(owner: Base, data?: object);
|
|
51
|
-
owner: Base;
|
|
52
|
-
description: any;
|
|
53
|
-
name: string;
|
|
54
|
-
extends: any[];
|
|
55
|
-
_tags: Set<any>;
|
|
56
|
-
_packaging: Set<any>;
|
|
57
|
-
_directory: any;
|
|
58
|
-
_finalize: any;
|
|
59
|
-
_properties: any;
|
|
60
|
-
ownerFor(attribute: any, data: any): any;
|
|
61
|
-
read(data: any, type?: any): void;
|
|
62
|
-
_applyExtends(): void;
|
|
63
|
-
named(name: any): void;
|
|
64
|
-
typeNamed(typeName: any, name: any): any;
|
|
65
|
-
addObject(object: any): any;
|
|
66
|
-
/**
|
|
67
|
-
* Walk the object graph in some directions and deliver seen nodes.
|
|
68
|
-
* @param {string[]} directions
|
|
69
|
-
* @return {Iterable<Base>}
|
|
70
|
-
*/
|
|
71
|
-
walkDirections(directions?: string[]): Iterable<Base>;
|
|
72
|
-
_walkDirections(directions: any, withThis: any, seen: any): Generator<any, void, any>;
|
|
73
|
-
forOwner(owner: any): any;
|
|
74
|
-
isNamed(name: any): boolean;
|
|
75
|
-
relativeName(name: any): any;
|
|
76
|
-
get typeName(): any;
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @param {string} name
|
|
80
|
-
* @returns {any}
|
|
81
|
-
*/
|
|
82
|
-
extendedAttribute(name: string): any;
|
|
83
|
-
/**
|
|
84
|
-
* Retrive attribute values from an object.
|
|
85
|
-
* @param {Function} [filter]
|
|
86
|
-
* @return {Iterable<[string,any]>} values
|
|
87
|
-
*/
|
|
88
|
-
propertyIterator(filter?: Function): Iterable<[string, any]>;
|
|
89
|
-
/**
|
|
90
|
-
* Retrive attribute values from an object.
|
|
91
|
-
* @param {Function} [filter]
|
|
92
|
-
* @return {Object} values
|
|
93
|
-
*/
|
|
94
|
-
getProperties(filter?: Function): any;
|
|
95
|
-
get root(): any;
|
|
96
|
-
get location(): any;
|
|
97
|
-
get host(): any;
|
|
98
|
-
get network(): any;
|
|
99
|
-
get domain(): any;
|
|
100
|
-
get domains(): any;
|
|
101
|
-
get localDomains(): any;
|
|
102
|
-
get administratorEmail(): any;
|
|
103
|
-
get locales(): any;
|
|
104
|
-
get country(): any;
|
|
105
|
-
get timezone(): any;
|
|
106
|
-
set priority(value: number);
|
|
107
|
-
/**
|
|
108
|
-
* @return {number}
|
|
109
|
-
*/
|
|
110
|
-
get priority(): number;
|
|
111
|
-
_priority: number;
|
|
112
|
-
get smtp(): any;
|
|
113
|
-
/**
|
|
114
|
-
*
|
|
115
|
-
* @param {string} expression
|
|
116
|
-
* @param {object} options
|
|
117
|
-
* @returns {any}
|
|
118
|
-
*/
|
|
119
|
-
expression(expression: string, options: object): any;
|
|
120
|
-
get services(): any;
|
|
121
|
-
/**
|
|
122
|
-
*
|
|
123
|
-
* @param {any} filter
|
|
124
|
-
* @returns service with the highest priority
|
|
125
|
-
*/
|
|
126
|
-
findService(filter: any): any;
|
|
127
|
-
findServices(filter: any): any;
|
|
128
|
-
set directory(directory: any);
|
|
129
|
-
get directory(): any;
|
|
130
|
-
get fullName(): any;
|
|
131
|
-
get derivedPackaging(): any;
|
|
132
|
-
set packaging(value: any);
|
|
133
|
-
get packaging(): any;
|
|
134
|
-
get outputs(): Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
135
|
-
get packageData(): {
|
|
136
|
-
sources: any[];
|
|
137
|
-
outputs: Set<typeof import("npm-pkgbuild").DEBIAN | typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
138
|
-
properties: {
|
|
139
|
-
name: string;
|
|
140
|
-
access: string;
|
|
141
|
-
dependencies: any;
|
|
142
|
-
groups: any[];
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
preparePackages(stagingDir: any): AsyncGenerator<never, void, unknown>;
|
|
146
|
-
get templateTransformers(): any[];
|
|
147
|
-
/**
|
|
148
|
-
*
|
|
149
|
-
* @param {*} entryProperties
|
|
150
|
-
* @param {*} directoryProperties
|
|
151
|
-
* @returns {AsyncIterable<ContentProvider>}
|
|
152
|
-
*/
|
|
153
|
-
templateContent(entryProperties: any, directoryProperties: any): AsyncIterable<ContentProvider>;
|
|
154
|
-
set tags(value: any);
|
|
155
|
-
get tags(): any;
|
|
156
|
-
get isTemplate(): any;
|
|
157
|
-
valueFor(name: any, at: any): any;
|
|
158
|
-
get properties(): any;
|
|
159
|
-
/**
|
|
160
|
-
*
|
|
161
|
-
* @param {string} name
|
|
162
|
-
* @returns {any}
|
|
163
|
-
*/
|
|
164
|
-
property(name: string): any;
|
|
165
|
-
/**
|
|
166
|
-
*
|
|
167
|
-
* @param {any} object
|
|
168
|
-
* @returns {any}
|
|
169
|
-
*/
|
|
170
|
-
expand(object: any): any;
|
|
171
|
-
finalize(action: any): void;
|
|
172
|
-
execFinalize(): void;
|
|
173
|
-
_execFinalize(): void;
|
|
174
|
-
traverse(visitor: any, ...args: any[]): Set<any>;
|
|
175
|
-
_traverse(visited: any, visitor: any, ...args: any[]): boolean;
|
|
176
|
-
error(...args: any[]): void;
|
|
177
|
-
info(...args: any[]): void;
|
|
178
|
-
toString(): string;
|
|
179
|
-
toJSON(): any;
|
|
180
|
-
}
|
package/types/cli.d.mts
DELETED
package/types/cluster.d.mts
DELETED
|
@@ -1,507 +0,0 @@
|
|
|
1
|
-
export class Cluster extends Host {
|
|
2
|
-
static get typeDefinition(): {
|
|
3
|
-
name: string;
|
|
4
|
-
owners: (string | {
|
|
5
|
-
name: string;
|
|
6
|
-
owners: string[];
|
|
7
|
-
extends: typeof import("pmcf").Base;
|
|
8
|
-
key: string;
|
|
9
|
-
attributes: {
|
|
10
|
-
networks: {
|
|
11
|
-
type: string;
|
|
12
|
-
collection: boolean;
|
|
13
|
-
isKey: boolean;
|
|
14
|
-
writable: boolean;
|
|
15
|
-
mandatory: boolean;
|
|
16
|
-
constructor?: Function;
|
|
17
|
-
private?: boolean;
|
|
18
|
-
credential?: boolean;
|
|
19
|
-
persistent?: boolean;
|
|
20
|
-
depends?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
default?: any;
|
|
23
|
-
set?: Function;
|
|
24
|
-
get?: Function;
|
|
25
|
-
toInternal?: Function;
|
|
26
|
-
toExternal?: Function;
|
|
27
|
-
values?: Set<any>;
|
|
28
|
-
externalName?: string;
|
|
29
|
-
env?: string[] | string;
|
|
30
|
-
additionalValues?: object;
|
|
31
|
-
};
|
|
32
|
-
hosts: {
|
|
33
|
-
type: string;
|
|
34
|
-
collection: boolean;
|
|
35
|
-
isKey: boolean;
|
|
36
|
-
writable: boolean;
|
|
37
|
-
mandatory: boolean;
|
|
38
|
-
constructor?: Function;
|
|
39
|
-
private?: boolean;
|
|
40
|
-
credential?: boolean;
|
|
41
|
-
persistent?: boolean;
|
|
42
|
-
depends?: string;
|
|
43
|
-
description?: string;
|
|
44
|
-
default?: any;
|
|
45
|
-
set?: Function;
|
|
46
|
-
get?: Function;
|
|
47
|
-
toInternal?: Function;
|
|
48
|
-
toExternal?: Function;
|
|
49
|
-
values?: Set<any>;
|
|
50
|
-
externalName?: string;
|
|
51
|
-
env?: string[] | string;
|
|
52
|
-
additionalValues?: object;
|
|
53
|
-
};
|
|
54
|
-
clusters: {
|
|
55
|
-
type: string;
|
|
56
|
-
collection: boolean;
|
|
57
|
-
isKey: boolean;
|
|
58
|
-
writable: boolean;
|
|
59
|
-
mandatory: boolean;
|
|
60
|
-
constructor?: Function;
|
|
61
|
-
private?: boolean;
|
|
62
|
-
credential?: boolean;
|
|
63
|
-
persistent?: boolean;
|
|
64
|
-
depends?: string;
|
|
65
|
-
description?: string;
|
|
66
|
-
default?: any;
|
|
67
|
-
set?: Function;
|
|
68
|
-
get?: Function;
|
|
69
|
-
toInternal?: Function;
|
|
70
|
-
toExternal?: Function;
|
|
71
|
-
values?: Set<any>;
|
|
72
|
-
externalName?: string;
|
|
73
|
-
env?: string[] | string;
|
|
74
|
-
additionalValues?: object;
|
|
75
|
-
};
|
|
76
|
-
subnets: {
|
|
77
|
-
type: {
|
|
78
|
-
name: string;
|
|
79
|
-
owners: string[];
|
|
80
|
-
constructWithIdentifierOnly: boolean;
|
|
81
|
-
key: string;
|
|
82
|
-
attributes: {
|
|
83
|
-
address: import("pacc").AttributeDefinition;
|
|
84
|
-
networks: {
|
|
85
|
-
type: string;
|
|
86
|
-
collection: boolean;
|
|
87
|
-
isKey: boolean;
|
|
88
|
-
writable: boolean;
|
|
89
|
-
mandatory: boolean;
|
|
90
|
-
constructor?: Function;
|
|
91
|
-
private?: boolean;
|
|
92
|
-
credential?: boolean;
|
|
93
|
-
persistent?: boolean;
|
|
94
|
-
depends?: string;
|
|
95
|
-
description?: string;
|
|
96
|
-
default?: any;
|
|
97
|
-
set?: Function;
|
|
98
|
-
get?: Function;
|
|
99
|
-
toInternal?: Function;
|
|
100
|
-
toExternal?: Function;
|
|
101
|
-
values?: Set<any>;
|
|
102
|
-
externalName?: string;
|
|
103
|
-
env?: string[] | string;
|
|
104
|
-
additionalValues?: object;
|
|
105
|
-
};
|
|
106
|
-
prefixLength: import("pacc").AttributeDefinition;
|
|
107
|
-
family: import("pacc").AttributeDefinition;
|
|
108
|
-
};
|
|
109
|
-
};
|
|
110
|
-
collection: boolean;
|
|
111
|
-
isKey: boolean;
|
|
112
|
-
writable: boolean;
|
|
113
|
-
mandatory: boolean;
|
|
114
|
-
constructor?: Function;
|
|
115
|
-
private?: boolean;
|
|
116
|
-
credential?: boolean;
|
|
117
|
-
persistent?: boolean;
|
|
118
|
-
depends?: string;
|
|
119
|
-
description?: string;
|
|
120
|
-
default?: any;
|
|
121
|
-
set?: Function;
|
|
122
|
-
get?: Function;
|
|
123
|
-
toInternal?: Function;
|
|
124
|
-
toExternal?: Function;
|
|
125
|
-
values?: Set<any>;
|
|
126
|
-
externalName?: string;
|
|
127
|
-
env?: string[] | string;
|
|
128
|
-
additionalValues?: object;
|
|
129
|
-
};
|
|
130
|
-
country: import("pacc").AttributeDefinition;
|
|
131
|
-
domain: import("pacc").AttributeDefinition;
|
|
132
|
-
domains: import("pacc").AttributeDefinition;
|
|
133
|
-
timezone: import("pacc").AttributeDefinition;
|
|
134
|
-
architectures: import("pacc").AttributeDefinition;
|
|
135
|
-
locales: import("pacc").AttributeDefinition;
|
|
136
|
-
administratorEmail: {
|
|
137
|
-
writable: boolean;
|
|
138
|
-
type: object;
|
|
139
|
-
isKey: boolean;
|
|
140
|
-
mandatory: boolean;
|
|
141
|
-
collection: boolean;
|
|
142
|
-
constructor?: Function;
|
|
143
|
-
private?: boolean;
|
|
144
|
-
credential?: boolean;
|
|
145
|
-
persistent?: boolean;
|
|
146
|
-
depends?: string;
|
|
147
|
-
description?: string;
|
|
148
|
-
default?: any;
|
|
149
|
-
set?: Function;
|
|
150
|
-
get?: Function;
|
|
151
|
-
toInternal?: Function;
|
|
152
|
-
toExternal?: Function;
|
|
153
|
-
values?: Set<any>;
|
|
154
|
-
externalName?: string;
|
|
155
|
-
env?: string[] | string;
|
|
156
|
-
additionalValues?: object;
|
|
157
|
-
};
|
|
158
|
-
template: {
|
|
159
|
-
private: boolean;
|
|
160
|
-
type: object;
|
|
161
|
-
isKey: boolean;
|
|
162
|
-
writable: boolean;
|
|
163
|
-
mandatory: boolean;
|
|
164
|
-
collection: boolean;
|
|
165
|
-
constructor?: Function;
|
|
166
|
-
credential?: boolean;
|
|
167
|
-
persistent?: boolean;
|
|
168
|
-
depends?: string;
|
|
169
|
-
description?: string;
|
|
170
|
-
default?: any;
|
|
171
|
-
set?: Function;
|
|
172
|
-
get?: Function;
|
|
173
|
-
toInternal?: Function;
|
|
174
|
-
toExternal?: Function;
|
|
175
|
-
values?: Set<any>;
|
|
176
|
-
externalName?: string;
|
|
177
|
-
env?: string[] | string;
|
|
178
|
-
additionalValues?: object;
|
|
179
|
-
};
|
|
180
|
-
};
|
|
181
|
-
})[];
|
|
182
|
-
extends: {
|
|
183
|
-
name: string;
|
|
184
|
-
owners: string[];
|
|
185
|
-
extends: typeof import("pmcf").Base;
|
|
186
|
-
key: string;
|
|
187
|
-
attributes: {
|
|
188
|
-
networkInterfaces: {
|
|
189
|
-
type: string;
|
|
190
|
-
collection: boolean;
|
|
191
|
-
isKey: boolean;
|
|
192
|
-
writable: boolean;
|
|
193
|
-
mandatory: boolean;
|
|
194
|
-
constructor?: Function;
|
|
195
|
-
private?: boolean;
|
|
196
|
-
credential?: boolean;
|
|
197
|
-
persistent?: boolean;
|
|
198
|
-
depends?: string;
|
|
199
|
-
description?: string;
|
|
200
|
-
default?: any;
|
|
201
|
-
set?: Function;
|
|
202
|
-
get?: Function;
|
|
203
|
-
toInternal?: Function;
|
|
204
|
-
toExternal?: Function;
|
|
205
|
-
values?: Set<any>;
|
|
206
|
-
externalName?: string;
|
|
207
|
-
env?: string[] | string;
|
|
208
|
-
additionalValues?: object;
|
|
209
|
-
};
|
|
210
|
-
services: {
|
|
211
|
-
type: string;
|
|
212
|
-
collection: boolean;
|
|
213
|
-
isKey: boolean;
|
|
214
|
-
writable: boolean;
|
|
215
|
-
mandatory: boolean;
|
|
216
|
-
constructor?: Function;
|
|
217
|
-
private?: boolean;
|
|
218
|
-
credential?: boolean;
|
|
219
|
-
persistent?: boolean;
|
|
220
|
-
depends?: string;
|
|
221
|
-
description?: string;
|
|
222
|
-
default?: any;
|
|
223
|
-
set?: Function;
|
|
224
|
-
get?: Function;
|
|
225
|
-
toInternal?: Function;
|
|
226
|
-
toExternal?: Function;
|
|
227
|
-
values?: Set<any>;
|
|
228
|
-
externalName?: string;
|
|
229
|
-
env?: string[] | string;
|
|
230
|
-
additionalValues?: object;
|
|
231
|
-
};
|
|
232
|
-
aliases: import("pacc").AttributeDefinition;
|
|
233
|
-
os: {
|
|
234
|
-
values: string[];
|
|
235
|
-
type: object;
|
|
236
|
-
isKey: boolean;
|
|
237
|
-
writable: boolean;
|
|
238
|
-
mandatory: boolean;
|
|
239
|
-
collection: boolean;
|
|
240
|
-
constructor?: Function;
|
|
241
|
-
private?: boolean;
|
|
242
|
-
credential?: boolean;
|
|
243
|
-
persistent?: boolean;
|
|
244
|
-
depends?: string;
|
|
245
|
-
description?: string;
|
|
246
|
-
default?: any;
|
|
247
|
-
set?: Function;
|
|
248
|
-
get?: Function;
|
|
249
|
-
toInternal?: Function;
|
|
250
|
-
toExternal?: Function;
|
|
251
|
-
externalName?: string;
|
|
252
|
-
env?: string[] | string;
|
|
253
|
-
additionalValues?: object;
|
|
254
|
-
};
|
|
255
|
-
"machine-id": import("pacc").AttributeDefinition;
|
|
256
|
-
distribution: import("pacc").AttributeDefinition;
|
|
257
|
-
deployment: {
|
|
258
|
-
values: string[];
|
|
259
|
-
type: object;
|
|
260
|
-
isKey: boolean;
|
|
261
|
-
writable: boolean;
|
|
262
|
-
mandatory: boolean;
|
|
263
|
-
collection: boolean;
|
|
264
|
-
constructor?: Function;
|
|
265
|
-
private?: boolean;
|
|
266
|
-
credential?: boolean;
|
|
267
|
-
persistent?: boolean;
|
|
268
|
-
depends?: string;
|
|
269
|
-
description?: string;
|
|
270
|
-
default?: any;
|
|
271
|
-
set?: Function;
|
|
272
|
-
get?: Function;
|
|
273
|
-
toInternal?: Function;
|
|
274
|
-
toExternal?: Function;
|
|
275
|
-
externalName?: string;
|
|
276
|
-
env?: string[] | string;
|
|
277
|
-
additionalValues?: object;
|
|
278
|
-
};
|
|
279
|
-
weight: import("pacc").AttributeDefinition;
|
|
280
|
-
serial: import("pacc").AttributeDefinition;
|
|
281
|
-
vendor: import("pacc").AttributeDefinition;
|
|
282
|
-
keymap: import("pacc").AttributeDefinition;
|
|
283
|
-
chassis: {
|
|
284
|
-
values: string[];
|
|
285
|
-
type: object;
|
|
286
|
-
isKey: boolean;
|
|
287
|
-
writable: boolean;
|
|
288
|
-
mandatory: boolean;
|
|
289
|
-
collection: boolean;
|
|
290
|
-
constructor?: Function;
|
|
291
|
-
private?: boolean;
|
|
292
|
-
credential?: boolean;
|
|
293
|
-
persistent?: boolean;
|
|
294
|
-
depends?: string;
|
|
295
|
-
description?: string;
|
|
296
|
-
default?: any;
|
|
297
|
-
set?: Function;
|
|
298
|
-
get?: Function;
|
|
299
|
-
toInternal?: Function;
|
|
300
|
-
toExternal?: Function;
|
|
301
|
-
externalName?: string;
|
|
302
|
-
env?: string[] | string;
|
|
303
|
-
additionalValues?: object;
|
|
304
|
-
};
|
|
305
|
-
architecture: {
|
|
306
|
-
values: string[];
|
|
307
|
-
type: object;
|
|
308
|
-
isKey: boolean;
|
|
309
|
-
writable: boolean;
|
|
310
|
-
mandatory: boolean;
|
|
311
|
-
collection: boolean;
|
|
312
|
-
constructor?: Function;
|
|
313
|
-
private?: boolean;
|
|
314
|
-
credential?: boolean;
|
|
315
|
-
persistent?: boolean;
|
|
316
|
-
depends?: string;
|
|
317
|
-
description?: string;
|
|
318
|
-
default?: any;
|
|
319
|
-
set?: Function;
|
|
320
|
-
get?: Function;
|
|
321
|
-
toInternal?: Function;
|
|
322
|
-
toExternal?: Function;
|
|
323
|
-
externalName?: string;
|
|
324
|
-
env?: string[] | string;
|
|
325
|
-
additionalValues?: object;
|
|
326
|
-
};
|
|
327
|
-
replaces: import("pacc").AttributeDefinition;
|
|
328
|
-
depends: import("pacc").AttributeDefinition;
|
|
329
|
-
provides: import("pacc").AttributeDefinition;
|
|
330
|
-
extends: {
|
|
331
|
-
type: string;
|
|
332
|
-
collection: boolean;
|
|
333
|
-
isKey: boolean;
|
|
334
|
-
writable: boolean;
|
|
335
|
-
mandatory: boolean;
|
|
336
|
-
constructor?: Function;
|
|
337
|
-
private?: boolean;
|
|
338
|
-
credential?: boolean;
|
|
339
|
-
persistent?: boolean;
|
|
340
|
-
depends?: string;
|
|
341
|
-
description?: string;
|
|
342
|
-
default?: any;
|
|
343
|
-
set?: Function;
|
|
344
|
-
get?: Function;
|
|
345
|
-
toInternal?: Function;
|
|
346
|
-
toExternal?: Function;
|
|
347
|
-
values?: Set<any>;
|
|
348
|
-
externalName?: string;
|
|
349
|
-
env?: string[] | string;
|
|
350
|
-
additionalValues?: object;
|
|
351
|
-
};
|
|
352
|
-
model: import("pacc").AttributeDefinition;
|
|
353
|
-
isModel: import("pacc").AttributeDefinition;
|
|
354
|
-
hostName: {
|
|
355
|
-
writable: boolean;
|
|
356
|
-
type: object;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
collection: boolean;
|
|
360
|
-
constructor?: Function;
|
|
361
|
-
private?: boolean;
|
|
362
|
-
credential?: boolean;
|
|
363
|
-
persistent?: boolean;
|
|
364
|
-
depends?: string;
|
|
365
|
-
description?: string;
|
|
366
|
-
default?: any;
|
|
367
|
-
set?: Function;
|
|
368
|
-
get?: Function;
|
|
369
|
-
toInternal?: Function;
|
|
370
|
-
toExternal?: Function;
|
|
371
|
-
values?: Set<any>;
|
|
372
|
-
externalName?: string;
|
|
373
|
-
env?: string[] | string;
|
|
374
|
-
additionalValues?: object;
|
|
375
|
-
};
|
|
376
|
-
cidrAddresses: import("pacc").AttributeDefinition;
|
|
377
|
-
cidrAddress: import("pacc").AttributeDefinition;
|
|
378
|
-
addresses: import("pacc").AttributeDefinition;
|
|
379
|
-
address: import("pacc").AttributeDefinition;
|
|
380
|
-
};
|
|
381
|
-
};
|
|
382
|
-
key: string;
|
|
383
|
-
attributes: {
|
|
384
|
-
routerId: {
|
|
385
|
-
default: number;
|
|
386
|
-
type: object;
|
|
387
|
-
isKey: boolean;
|
|
388
|
-
writable: boolean;
|
|
389
|
-
mandatory: boolean;
|
|
390
|
-
collection: boolean;
|
|
391
|
-
constructor?: Function;
|
|
392
|
-
private?: boolean;
|
|
393
|
-
credential?: boolean;
|
|
394
|
-
persistent?: boolean;
|
|
395
|
-
depends?: string;
|
|
396
|
-
description?: string;
|
|
397
|
-
set?: Function;
|
|
398
|
-
get?: Function;
|
|
399
|
-
toInternal?: Function;
|
|
400
|
-
toExternal?: Function;
|
|
401
|
-
values?: Set<any>;
|
|
402
|
-
externalName?: string;
|
|
403
|
-
env?: string[] | string;
|
|
404
|
-
additionalValues?: object;
|
|
405
|
-
};
|
|
406
|
-
masters: {
|
|
407
|
-
type: string;
|
|
408
|
-
collection: boolean;
|
|
409
|
-
isKey: boolean;
|
|
410
|
-
writable: boolean;
|
|
411
|
-
mandatory: boolean;
|
|
412
|
-
constructor?: Function;
|
|
413
|
-
private?: boolean;
|
|
414
|
-
credential?: boolean;
|
|
415
|
-
persistent?: boolean;
|
|
416
|
-
depends?: string;
|
|
417
|
-
description?: string;
|
|
418
|
-
default?: any;
|
|
419
|
-
set?: Function;
|
|
420
|
-
get?: Function;
|
|
421
|
-
toInternal?: Function;
|
|
422
|
-
toExternal?: Function;
|
|
423
|
-
values?: Set<any>;
|
|
424
|
-
externalName?: string;
|
|
425
|
-
env?: string[] | string;
|
|
426
|
-
additionalValues?: object;
|
|
427
|
-
};
|
|
428
|
-
backups: {
|
|
429
|
-
type: string;
|
|
430
|
-
collection: boolean;
|
|
431
|
-
isKey: boolean;
|
|
432
|
-
writable: boolean;
|
|
433
|
-
mandatory: boolean;
|
|
434
|
-
constructor?: Function;
|
|
435
|
-
private?: boolean;
|
|
436
|
-
credential?: boolean;
|
|
437
|
-
persistent?: boolean;
|
|
438
|
-
depends?: string;
|
|
439
|
-
description?: string;
|
|
440
|
-
default?: any;
|
|
441
|
-
set?: Function;
|
|
442
|
-
get?: Function;
|
|
443
|
-
toInternal?: Function;
|
|
444
|
-
toExternal?: Function;
|
|
445
|
-
values?: Set<any>;
|
|
446
|
-
externalName?: string;
|
|
447
|
-
env?: string[] | string;
|
|
448
|
-
additionalValues?: object;
|
|
449
|
-
};
|
|
450
|
-
members: {
|
|
451
|
-
type: string;
|
|
452
|
-
collection: boolean;
|
|
453
|
-
isKey: boolean;
|
|
454
|
-
writable: boolean;
|
|
455
|
-
mandatory: boolean;
|
|
456
|
-
constructor?: Function;
|
|
457
|
-
private?: boolean;
|
|
458
|
-
credential?: boolean;
|
|
459
|
-
persistent?: boolean;
|
|
460
|
-
depends?: string;
|
|
461
|
-
description?: string;
|
|
462
|
-
default?: any;
|
|
463
|
-
set?: Function;
|
|
464
|
-
get?: Function;
|
|
465
|
-
toInternal?: Function;
|
|
466
|
-
toExternal?: Function;
|
|
467
|
-
values?: Set<any>;
|
|
468
|
-
externalName?: string;
|
|
469
|
-
env?: string[] | string;
|
|
470
|
-
additionalValues?: object;
|
|
471
|
-
};
|
|
472
|
-
checkInterval: {
|
|
473
|
-
default: number;
|
|
474
|
-
type: object;
|
|
475
|
-
isKey: boolean;
|
|
476
|
-
writable: boolean;
|
|
477
|
-
mandatory: boolean;
|
|
478
|
-
collection: boolean;
|
|
479
|
-
constructor?: Function;
|
|
480
|
-
private?: boolean;
|
|
481
|
-
credential?: boolean;
|
|
482
|
-
persistent?: boolean;
|
|
483
|
-
depends?: string;
|
|
484
|
-
description?: string;
|
|
485
|
-
set?: Function;
|
|
486
|
-
get?: Function;
|
|
487
|
-
toInternal?: Function;
|
|
488
|
-
toExternal?: Function;
|
|
489
|
-
values?: Set<any>;
|
|
490
|
-
externalName?: string;
|
|
491
|
-
env?: string[] | string;
|
|
492
|
-
additionalValues?: object;
|
|
493
|
-
};
|
|
494
|
-
};
|
|
495
|
-
};
|
|
496
|
-
_masters: any[];
|
|
497
|
-
_backups: any[];
|
|
498
|
-
routerId: number;
|
|
499
|
-
checkInterval: number;
|
|
500
|
-
set masters(value: any[]);
|
|
501
|
-
get masters(): any[];
|
|
502
|
-
set backups(value: any[]);
|
|
503
|
-
get backups(): any[];
|
|
504
|
-
get members(): Set<any>;
|
|
505
|
-
preparePackages(stagingDir: any): AsyncGenerator<any, void, unknown>;
|
|
506
|
-
}
|
|
507
|
-
import { Host } from "./host.mjs";
|