@twin.org/node-core 0.0.3-next.65 → 0.0.3-next.67
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/dist/es/builders/engineEnvBuilder.js +21 -19
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +1 -0
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/builders/extensionsBuilder.js.map +1 -1
- package/dist/es/cli.js.map +1 -1
- package/dist/es/commands/bootstrapLegacy.js +2 -1
- package/dist/es/commands/bootstrapLegacy.js.map +1 -1
- package/dist/es/commands/help.js.map +1 -1
- package/dist/es/commands/identityCreate.js.map +1 -1
- package/dist/es/commands/identityImports.js.map +1 -1
- package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -1
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -1
- package/dist/es/commands/identityVerificationMethodImport.js.map +1 -1
- package/dist/es/commands/nodeSetIdentity.js.map +1 -1
- package/dist/es/commands/removeTenantOrgAlias.js.map +1 -1
- package/dist/es/commands/setNodeOrgId.js.map +1 -1
- package/dist/es/commands/setTenantOrgId.js.map +1 -1
- package/dist/es/commands/tenantCreate.js.map +1 -1
- package/dist/es/commands/tenantImport.js.map +1 -1
- package/dist/es/commands/tenantUpdate.js.map +1 -1
- package/dist/es/commands/userCreate.js.map +1 -1
- package/dist/es/commands/userUpdate.js.map +1 -1
- package/dist/es/commands/vaultKeyCreate.js.map +1 -1
- package/dist/es/commands/vaultKeyImport.js.map +1 -1
- package/dist/es/index.js +2 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IBootstrapLegacyEnvironmentVariables.js +4 -0
- package/dist/es/models/IBootstrapLegacyEnvironmentVariables.js.map +1 -0
- package/dist/es/models/ICliCommandDefinition.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/IEngineServerEnvironmentVariables.js +2 -0
- package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
- package/dist/es/models/IEnvironmentVariables.js +2 -0
- package/dist/es/models/IEnvironmentVariables.js.map +1 -0
- package/dist/es/models/INodeEnvironmentVariables.js +2 -0
- package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeOptions.js.map +1 -1
- package/dist/es/models/bootstrapLegacyEnvironmentVariableKeys.js +24 -0
- package/dist/es/models/bootstrapLegacyEnvironmentVariableKeys.js.map +1 -0
- package/dist/es/models/engineEnvironmentVariableKeys.js +202 -0
- package/dist/es/models/engineEnvironmentVariableKeys.js.map +1 -0
- package/dist/es/models/engineServerEnvironmentVariableKeys.js +35 -0
- package/dist/es/models/engineServerEnvironmentVariableKeys.js.map +1 -0
- package/dist/es/models/nodeEnvironmentVariableKeys.js +18 -0
- package/dist/es/models/nodeEnvironmentVariableKeys.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -1
- package/dist/es/node.js +94 -2
- package/dist/es/node.js.map +1 -1
- package/dist/es/start.js.map +1 -1
- package/dist/types/builders/engineServerEnvBuilder.d.ts +3 -3
- package/dist/types/builders/extensionsBuilder.d.ts +5 -5
- package/dist/types/cli.d.ts +2 -2
- package/dist/types/commands/bootstrapLegacy.d.ts +2 -49
- package/dist/types/commands/help.d.ts +2 -2
- package/dist/types/commands/identityCreate.d.ts +2 -2
- package/dist/types/commands/identityImports.d.ts +2 -2
- package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +2 -2
- package/dist/types/commands/identityVerificationMethodCreate.d.ts +2 -2
- package/dist/types/commands/identityVerificationMethodImport.d.ts +2 -2
- package/dist/types/commands/nodeSetIdentity.d.ts +2 -2
- package/dist/types/commands/removeTenantOrgAlias.d.ts +2 -2
- package/dist/types/commands/setNodeOrgId.d.ts +2 -2
- package/dist/types/commands/setTenantOrgId.d.ts +2 -2
- package/dist/types/commands/tenantCreate.d.ts +2 -2
- package/dist/types/commands/tenantImport.d.ts +2 -2
- package/dist/types/commands/tenantUpdate.d.ts +2 -2
- package/dist/types/commands/userCreate.d.ts +2 -2
- package/dist/types/commands/userUpdate.d.ts +2 -2
- package/dist/types/commands/vaultKeyCreate.d.ts +2 -2
- package/dist/types/commands/vaultKeyImport.d.ts +2 -2
- package/dist/types/index.d.ts +2 -0
- package/dist/types/models/IBootstrapLegacyEnvironmentVariables.d.ts +56 -0
- package/dist/types/models/ICliCommandDefinition.d.ts +2 -2
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +39 -22
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +1 -2
- package/dist/types/models/IEnvironmentVariables.d.ts +8 -0
- package/dist/types/models/INodeEnvironmentVariables.d.ts +1 -2
- package/dist/types/models/INodeOptions.d.ts +3 -3
- package/dist/types/models/bootstrapLegacyEnvironmentVariableKeys.d.ts +4 -0
- package/dist/types/models/engineEnvironmentVariableKeys.d.ts +4 -0
- package/dist/types/models/engineServerEnvironmentVariableKeys.d.ts +7 -0
- package/dist/types/models/nodeEnvironmentVariableKeys.d.ts +5 -0
- package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +2 -2
- package/dist/types/node.d.ts +3 -3
- package/dist/types/start.d.ts +3 -2
- package/docs/changelog.md +19 -0
- package/docs/reference/functions/buildConfiguration.md +2 -2
- package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
- package/docs/reference/functions/executeCommand.md +1 -1
- package/docs/reference/functions/extensionsConfiguration.md +1 -1
- package/docs/reference/functions/extensionsInitialiseEngine.md +1 -1
- package/docs/reference/functions/extensionsInitialiseEngineServer.md +1 -1
- package/docs/reference/functions/isAuthEntityStorageRequired.md +1 -1
- package/docs/reference/functions/overrideModuleImport.md +1 -1
- package/docs/reference/functions/shutdownExtensions.md +1 -1
- package/docs/reference/functions/start.md +1 -1
- package/docs/reference/index.md +2 -0
- package/docs/reference/interfaces/IBootstrapLegacyEnvironmentVariables.md +117 -0
- package/docs/reference/interfaces/ICliCommandDefinition.md +1 -1
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +71 -40
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +0 -1954
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +0 -2130
- package/docs/reference/interfaces/INodeOptions.md +2 -2
- package/docs/reference/type-aliases/IEnvironmentVariables.md +5 -0
- package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +1 -1
- package/locales/en.json +7 -1
- package/package.json +1 -1
|
@@ -2,1962 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
The engine server environment variables.
|
|
4
4
|
|
|
5
|
-
## Extends
|
|
6
|
-
|
|
7
|
-
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md)
|
|
8
|
-
|
|
9
|
-
## Extended by
|
|
10
|
-
|
|
11
|
-
- [`INodeEnvironmentVariables`](INodeEnvironmentVariables.md)
|
|
12
|
-
|
|
13
5
|
## Properties
|
|
14
6
|
|
|
15
|
-
### debug? {#debug}
|
|
16
|
-
|
|
17
|
-
> `optional` **debug?**: `string`
|
|
18
|
-
|
|
19
|
-
Start the engine in debug mode.
|
|
20
|
-
|
|
21
|
-
#### Inherited from
|
|
22
|
-
|
|
23
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`debug`](IEngineEnvironmentVariables.md#debug)
|
|
24
|
-
|
|
25
|
-
***
|
|
26
|
-
|
|
27
|
-
### silent? {#silent}
|
|
28
|
-
|
|
29
|
-
> `optional` **silent?**: `string`
|
|
30
|
-
|
|
31
|
-
Start the engine in silent mode.
|
|
32
|
-
|
|
33
|
-
#### Inherited from
|
|
34
|
-
|
|
35
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`silent`](IEngineEnvironmentVariables.md#silent)
|
|
36
|
-
|
|
37
|
-
***
|
|
38
|
-
|
|
39
|
-
### storageFileRoot? {#storagefileroot}
|
|
40
|
-
|
|
41
|
-
> `optional` **storageFileRoot?**: `string`
|
|
42
|
-
|
|
43
|
-
The root directory for storing items like state file.
|
|
44
|
-
|
|
45
|
-
#### Inherited from
|
|
46
|
-
|
|
47
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`storageFileRoot`](IEngineEnvironmentVariables.md#storagefileroot)
|
|
48
|
-
|
|
49
|
-
***
|
|
50
|
-
|
|
51
|
-
### stateFilename? {#statefilename}
|
|
52
|
-
|
|
53
|
-
> `optional` **stateFilename?**: `string`
|
|
54
|
-
|
|
55
|
-
The name of the state file.
|
|
56
|
-
|
|
57
|
-
#### Inherited from
|
|
58
|
-
|
|
59
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`stateFilename`](IEngineEnvironmentVariables.md#statefilename)
|
|
60
|
-
|
|
61
|
-
***
|
|
62
|
-
|
|
63
|
-
### tenantEnabled? {#tenantenabled}
|
|
64
|
-
|
|
65
|
-
> `optional` **tenantEnabled?**: `string`
|
|
66
|
-
|
|
67
|
-
Is multi-tenant support enabled, defaults to false.
|
|
68
|
-
|
|
69
|
-
#### Inherited from
|
|
70
|
-
|
|
71
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`tenantEnabled`](IEngineEnvironmentVariables.md#tenantenabled)
|
|
72
|
-
|
|
73
|
-
***
|
|
74
|
-
|
|
75
|
-
### entityStorageConnectorType? {#entitystorageconnectortype}
|
|
76
|
-
|
|
77
|
-
> `optional` **entityStorageConnectorType?**: `string`
|
|
78
|
-
|
|
79
|
-
The type of the entity storage to create, comma separate for more than one connector.
|
|
80
|
-
values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql
|
|
81
|
-
|
|
82
|
-
#### Inherited from
|
|
83
|
-
|
|
84
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageConnectorType`](IEngineEnvironmentVariables.md#entitystorageconnectortype)
|
|
85
|
-
|
|
86
|
-
***
|
|
87
|
-
|
|
88
|
-
### entityStorageConnectorDefault? {#entitystorageconnectordefault}
|
|
89
|
-
|
|
90
|
-
> `optional` **entityStorageConnectorDefault?**: `string`
|
|
91
|
-
|
|
92
|
-
The default entity storage connector to use, defaults to the first one in the list.
|
|
93
|
-
|
|
94
|
-
#### Inherited from
|
|
95
|
-
|
|
96
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageConnectorDefault`](IEngineEnvironmentVariables.md#entitystorageconnectordefault)
|
|
97
|
-
|
|
98
|
-
***
|
|
99
|
-
|
|
100
|
-
### entityStorageTablePrefix? {#entitystoragetableprefix}
|
|
101
|
-
|
|
102
|
-
> `optional` **entityStorageTablePrefix?**: `string`
|
|
103
|
-
|
|
104
|
-
A prefix for all the table in entity-storage, can be empty.
|
|
105
|
-
|
|
106
|
-
#### Inherited from
|
|
107
|
-
|
|
108
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageTablePrefix`](IEngineEnvironmentVariables.md#entitystoragetableprefix)
|
|
109
|
-
|
|
110
|
-
***
|
|
111
|
-
|
|
112
|
-
### awsDynamodbAuthMode? {#awsdynamodbauthmode}
|
|
113
|
-
|
|
114
|
-
> `optional` **awsDynamodbAuthMode?**: `string`
|
|
115
|
-
|
|
116
|
-
AWS DynamoDB auth mode, either credentials or pod.
|
|
117
|
-
|
|
118
|
-
#### Inherited from
|
|
119
|
-
|
|
120
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbAuthMode`](IEngineEnvironmentVariables.md#awsdynamodbauthmode)
|
|
121
|
-
|
|
122
|
-
***
|
|
123
|
-
|
|
124
|
-
### awsDynamodbAccessKeyId? {#awsdynamodbaccesskeyid}
|
|
125
|
-
|
|
126
|
-
> `optional` **awsDynamodbAccessKeyId?**: `string`
|
|
127
|
-
|
|
128
|
-
AWS Dynamo DB access key id.
|
|
129
|
-
|
|
130
|
-
#### Inherited from
|
|
131
|
-
|
|
132
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbAccessKeyId`](IEngineEnvironmentVariables.md#awsdynamodbaccesskeyid)
|
|
133
|
-
|
|
134
|
-
***
|
|
135
|
-
|
|
136
|
-
### awsDynamodbEndpoint? {#awsdynamodbendpoint}
|
|
137
|
-
|
|
138
|
-
> `optional` **awsDynamodbEndpoint?**: `string`
|
|
139
|
-
|
|
140
|
-
AWS Dynamo DB Endpoint if running local instance.
|
|
141
|
-
|
|
142
|
-
#### Inherited from
|
|
143
|
-
|
|
144
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbEndpoint`](IEngineEnvironmentVariables.md#awsdynamodbendpoint)
|
|
145
|
-
|
|
146
|
-
***
|
|
147
|
-
|
|
148
|
-
### awsDynamodbRegion? {#awsdynamodbregion}
|
|
149
|
-
|
|
150
|
-
> `optional` **awsDynamodbRegion?**: `string`
|
|
151
|
-
|
|
152
|
-
AWS Dynamo DB region.
|
|
153
|
-
|
|
154
|
-
#### Inherited from
|
|
155
|
-
|
|
156
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbRegion`](IEngineEnvironmentVariables.md#awsdynamodbregion)
|
|
157
|
-
|
|
158
|
-
***
|
|
159
|
-
|
|
160
|
-
### awsDynamodbSecretAccessKey? {#awsdynamodbsecretaccesskey}
|
|
161
|
-
|
|
162
|
-
> `optional` **awsDynamodbSecretAccessKey?**: `string`
|
|
163
|
-
|
|
164
|
-
AWS Dynamo DB secret access key.
|
|
165
|
-
|
|
166
|
-
#### Inherited from
|
|
167
|
-
|
|
168
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbSecretAccessKey`](IEngineEnvironmentVariables.md#awsdynamodbsecretaccesskey)
|
|
169
|
-
|
|
170
|
-
***
|
|
171
|
-
|
|
172
|
-
### awsDynamodbConnectionTimeoutMs? {#awsdynamodbconnectiontimeoutms}
|
|
173
|
-
|
|
174
|
-
> `optional` **awsDynamodbConnectionTimeoutMs?**: `string`
|
|
175
|
-
|
|
176
|
-
AWS Dynamo DB connection timeout.
|
|
177
|
-
|
|
178
|
-
#### Inherited from
|
|
179
|
-
|
|
180
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbConnectionTimeoutMs`](IEngineEnvironmentVariables.md#awsdynamodbconnectiontimeoutms)
|
|
181
|
-
|
|
182
|
-
***
|
|
183
|
-
|
|
184
|
-
### azureCosmosdbKey? {#azurecosmosdbkey}
|
|
185
|
-
|
|
186
|
-
> `optional` **azureCosmosdbKey?**: `string`
|
|
187
|
-
|
|
188
|
-
Azure Cosmos DB key.
|
|
189
|
-
|
|
190
|
-
#### Inherited from
|
|
191
|
-
|
|
192
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbKey`](IEngineEnvironmentVariables.md#azurecosmosdbkey)
|
|
193
|
-
|
|
194
|
-
***
|
|
195
|
-
|
|
196
|
-
### azureCosmosdbContainerId? {#azurecosmosdbcontainerid}
|
|
197
|
-
|
|
198
|
-
> `optional` **azureCosmosdbContainerId?**: `string`
|
|
199
|
-
|
|
200
|
-
Azure Cosmos DB container id.
|
|
201
|
-
|
|
202
|
-
#### Inherited from
|
|
203
|
-
|
|
204
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbContainerId`](IEngineEnvironmentVariables.md#azurecosmosdbcontainerid)
|
|
205
|
-
|
|
206
|
-
***
|
|
207
|
-
|
|
208
|
-
### azureCosmosdbDatabaseId? {#azurecosmosdbdatabaseid}
|
|
209
|
-
|
|
210
|
-
> `optional` **azureCosmosdbDatabaseId?**: `string`
|
|
211
|
-
|
|
212
|
-
Azure Cosmos DB database id.
|
|
213
|
-
|
|
214
|
-
#### Inherited from
|
|
215
|
-
|
|
216
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbDatabaseId`](IEngineEnvironmentVariables.md#azurecosmosdbdatabaseid)
|
|
217
|
-
|
|
218
|
-
***
|
|
219
|
-
|
|
220
|
-
### azureCosmosdbEndpoint? {#azurecosmosdbendpoint}
|
|
221
|
-
|
|
222
|
-
> `optional` **azureCosmosdbEndpoint?**: `string`
|
|
223
|
-
|
|
224
|
-
Azure Cosmos DB endpoint.
|
|
225
|
-
|
|
226
|
-
#### Inherited from
|
|
227
|
-
|
|
228
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbEndpoint`](IEngineEnvironmentVariables.md#azurecosmosdbendpoint)
|
|
229
|
-
|
|
230
|
-
***
|
|
231
|
-
|
|
232
|
-
### gcpFirestoreCollectionName? {#gcpfirestorecollectionname}
|
|
233
|
-
|
|
234
|
-
> `optional` **gcpFirestoreCollectionName?**: `string`
|
|
235
|
-
|
|
236
|
-
GCP Firestore collection name.
|
|
237
|
-
|
|
238
|
-
#### Inherited from
|
|
239
|
-
|
|
240
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreCollectionName`](IEngineEnvironmentVariables.md#gcpfirestorecollectionname)
|
|
241
|
-
|
|
242
|
-
***
|
|
243
|
-
|
|
244
|
-
### gcpFirestoreCredentials? {#gcpfirestorecredentials}
|
|
245
|
-
|
|
246
|
-
> `optional` **gcpFirestoreCredentials?**: `string`
|
|
247
|
-
|
|
248
|
-
GCP Firestore credentials.
|
|
249
|
-
|
|
250
|
-
#### Inherited from
|
|
251
|
-
|
|
252
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreCredentials`](IEngineEnvironmentVariables.md#gcpfirestorecredentials)
|
|
253
|
-
|
|
254
|
-
***
|
|
255
|
-
|
|
256
|
-
### gcpFirestoreDatabaseId? {#gcpfirestoredatabaseid}
|
|
257
|
-
|
|
258
|
-
> `optional` **gcpFirestoreDatabaseId?**: `string`
|
|
259
|
-
|
|
260
|
-
GCP Firestore database id.
|
|
261
|
-
|
|
262
|
-
#### Inherited from
|
|
263
|
-
|
|
264
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreDatabaseId`](IEngineEnvironmentVariables.md#gcpfirestoredatabaseid)
|
|
265
|
-
|
|
266
|
-
***
|
|
267
|
-
|
|
268
|
-
### gcpFirestoreEndpoint? {#gcpfirestoreendpoint}
|
|
269
|
-
|
|
270
|
-
> `optional` **gcpFirestoreEndpoint?**: `string`
|
|
271
|
-
|
|
272
|
-
GCP Firestore endpoint.
|
|
273
|
-
|
|
274
|
-
#### Inherited from
|
|
275
|
-
|
|
276
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreEndpoint`](IEngineEnvironmentVariables.md#gcpfirestoreendpoint)
|
|
277
|
-
|
|
278
|
-
***
|
|
279
|
-
|
|
280
|
-
### gcpFirestoreProjectId? {#gcpfirestoreprojectid}
|
|
281
|
-
|
|
282
|
-
> `optional` **gcpFirestoreProjectId?**: `string`
|
|
283
|
-
|
|
284
|
-
GCP Firestore project id.
|
|
285
|
-
|
|
286
|
-
#### Inherited from
|
|
287
|
-
|
|
288
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreProjectId`](IEngineEnvironmentVariables.md#gcpfirestoreprojectid)
|
|
289
|
-
|
|
290
|
-
***
|
|
291
|
-
|
|
292
|
-
### scylladbHosts? {#scylladbhosts}
|
|
293
|
-
|
|
294
|
-
> `optional` **scylladbHosts?**: `string`
|
|
295
|
-
|
|
296
|
-
ScyllaDB hosts as comma separated string.
|
|
297
|
-
|
|
298
|
-
#### Inherited from
|
|
299
|
-
|
|
300
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbHosts`](IEngineEnvironmentVariables.md#scylladbhosts)
|
|
301
|
-
|
|
302
|
-
***
|
|
303
|
-
|
|
304
|
-
### scylladbKeyspace? {#scylladbkeyspace}
|
|
305
|
-
|
|
306
|
-
> `optional` **scylladbKeyspace?**: `string`
|
|
307
|
-
|
|
308
|
-
ScyllaDB keyspace.
|
|
309
|
-
|
|
310
|
-
#### Inherited from
|
|
311
|
-
|
|
312
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbKeyspace`](IEngineEnvironmentVariables.md#scylladbkeyspace)
|
|
313
|
-
|
|
314
|
-
***
|
|
315
|
-
|
|
316
|
-
### scylladbLocalDataCenter? {#scylladblocaldatacenter}
|
|
317
|
-
|
|
318
|
-
> `optional` **scylladbLocalDataCenter?**: `string`
|
|
319
|
-
|
|
320
|
-
ScyllaDB local data center.
|
|
321
|
-
|
|
322
|
-
#### Inherited from
|
|
323
|
-
|
|
324
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbLocalDataCenter`](IEngineEnvironmentVariables.md#scylladblocaldatacenter)
|
|
325
|
-
|
|
326
|
-
***
|
|
327
|
-
|
|
328
|
-
### scylladbPort? {#scylladbport}
|
|
329
|
-
|
|
330
|
-
> `optional` **scylladbPort?**: `string`
|
|
331
|
-
|
|
332
|
-
ScyllaDB port.
|
|
333
|
-
|
|
334
|
-
#### Inherited from
|
|
335
|
-
|
|
336
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbPort`](IEngineEnvironmentVariables.md#scylladbport)
|
|
337
|
-
|
|
338
|
-
***
|
|
339
|
-
|
|
340
|
-
### mySqlHost? {#mysqlhost}
|
|
341
|
-
|
|
342
|
-
> `optional` **mySqlHost?**: `string`
|
|
343
|
-
|
|
344
|
-
MySQL host.
|
|
345
|
-
|
|
346
|
-
#### Inherited from
|
|
347
|
-
|
|
348
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlHost`](IEngineEnvironmentVariables.md#mysqlhost)
|
|
349
|
-
|
|
350
|
-
***
|
|
351
|
-
|
|
352
|
-
### mySqlPort? {#mysqlport}
|
|
353
|
-
|
|
354
|
-
> `optional` **mySqlPort?**: `number`
|
|
355
|
-
|
|
356
|
-
MySQL port.
|
|
357
|
-
|
|
358
|
-
#### Inherited from
|
|
359
|
-
|
|
360
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlPort`](IEngineEnvironmentVariables.md#mysqlport)
|
|
361
|
-
|
|
362
|
-
***
|
|
363
|
-
|
|
364
|
-
### mySqlUser? {#mysqluser}
|
|
365
|
-
|
|
366
|
-
> `optional` **mySqlUser?**: `string`
|
|
367
|
-
|
|
368
|
-
MySQL username.
|
|
369
|
-
|
|
370
|
-
#### Inherited from
|
|
371
|
-
|
|
372
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlUser`](IEngineEnvironmentVariables.md#mysqluser)
|
|
373
|
-
|
|
374
|
-
***
|
|
375
|
-
|
|
376
|
-
### mySqlPassword? {#mysqlpassword}
|
|
377
|
-
|
|
378
|
-
> `optional` **mySqlPassword?**: `string`
|
|
379
|
-
|
|
380
|
-
MySQL password.
|
|
381
|
-
|
|
382
|
-
#### Inherited from
|
|
383
|
-
|
|
384
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlPassword`](IEngineEnvironmentVariables.md#mysqlpassword)
|
|
385
|
-
|
|
386
|
-
***
|
|
387
|
-
|
|
388
|
-
### mySqlDatabase? {#mysqldatabase}
|
|
389
|
-
|
|
390
|
-
> `optional` **mySqlDatabase?**: `string`
|
|
391
|
-
|
|
392
|
-
MySQL Database.
|
|
393
|
-
|
|
394
|
-
#### Inherited from
|
|
395
|
-
|
|
396
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlDatabase`](IEngineEnvironmentVariables.md#mysqldatabase)
|
|
397
|
-
|
|
398
|
-
***
|
|
399
|
-
|
|
400
|
-
### mongoDbHost? {#mongodbhost}
|
|
401
|
-
|
|
402
|
-
> `optional` **mongoDbHost?**: `string`
|
|
403
|
-
|
|
404
|
-
MongoDB host.
|
|
405
|
-
|
|
406
|
-
#### Inherited from
|
|
407
|
-
|
|
408
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbHost`](IEngineEnvironmentVariables.md#mongodbhost)
|
|
409
|
-
|
|
410
|
-
***
|
|
411
|
-
|
|
412
|
-
### mongoDbPort? {#mongodbport}
|
|
413
|
-
|
|
414
|
-
> `optional` **mongoDbPort?**: `number`
|
|
415
|
-
|
|
416
|
-
MongoDB port.
|
|
417
|
-
|
|
418
|
-
#### Inherited from
|
|
419
|
-
|
|
420
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbPort`](IEngineEnvironmentVariables.md#mongodbport)
|
|
421
|
-
|
|
422
|
-
***
|
|
423
|
-
|
|
424
|
-
### mongoDbUser? {#mongodbuser}
|
|
425
|
-
|
|
426
|
-
> `optional` **mongoDbUser?**: `string`
|
|
427
|
-
|
|
428
|
-
MongoDB username.
|
|
429
|
-
|
|
430
|
-
#### Inherited from
|
|
431
|
-
|
|
432
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbUser`](IEngineEnvironmentVariables.md#mongodbuser)
|
|
433
|
-
|
|
434
|
-
***
|
|
435
|
-
|
|
436
|
-
### mongoDbPassword? {#mongodbpassword}
|
|
437
|
-
|
|
438
|
-
> `optional` **mongoDbPassword?**: `string`
|
|
439
|
-
|
|
440
|
-
MongoDB password.
|
|
441
|
-
|
|
442
|
-
#### Inherited from
|
|
443
|
-
|
|
444
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbPassword`](IEngineEnvironmentVariables.md#mongodbpassword)
|
|
445
|
-
|
|
446
|
-
***
|
|
447
|
-
|
|
448
|
-
### mongoDbDatabase? {#mongodbdatabase}
|
|
449
|
-
|
|
450
|
-
> `optional` **mongoDbDatabase?**: `string`
|
|
451
|
-
|
|
452
|
-
MongoDB Database.
|
|
453
|
-
|
|
454
|
-
#### Inherited from
|
|
455
|
-
|
|
456
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbDatabase`](IEngineEnvironmentVariables.md#mongodbdatabase)
|
|
457
|
-
|
|
458
|
-
***
|
|
459
|
-
|
|
460
|
-
### postgreSqlHost? {#postgresqlhost}
|
|
461
|
-
|
|
462
|
-
> `optional` **postgreSqlHost?**: `string`
|
|
463
|
-
|
|
464
|
-
PostgreSQl host.
|
|
465
|
-
|
|
466
|
-
#### Inherited from
|
|
467
|
-
|
|
468
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlHost`](IEngineEnvironmentVariables.md#postgresqlhost)
|
|
469
|
-
|
|
470
|
-
***
|
|
471
|
-
|
|
472
|
-
### postgreSqlPort? {#postgresqlport}
|
|
473
|
-
|
|
474
|
-
> `optional` **postgreSqlPort?**: `number`
|
|
475
|
-
|
|
476
|
-
PostgreSQl port.
|
|
477
|
-
|
|
478
|
-
#### Inherited from
|
|
479
|
-
|
|
480
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlPort`](IEngineEnvironmentVariables.md#postgresqlport)
|
|
481
|
-
|
|
482
|
-
***
|
|
483
|
-
|
|
484
|
-
### postgreSqlUser? {#postgresqluser}
|
|
485
|
-
|
|
486
|
-
> `optional` **postgreSqlUser?**: `string`
|
|
487
|
-
|
|
488
|
-
PostgreSQl username.
|
|
489
|
-
|
|
490
|
-
#### Inherited from
|
|
491
|
-
|
|
492
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlUser`](IEngineEnvironmentVariables.md#postgresqluser)
|
|
493
|
-
|
|
494
|
-
***
|
|
495
|
-
|
|
496
|
-
### postgreSqlPassword? {#postgresqlpassword}
|
|
497
|
-
|
|
498
|
-
> `optional` **postgreSqlPassword?**: `string`
|
|
499
|
-
|
|
500
|
-
PostgreSQl password.
|
|
501
|
-
|
|
502
|
-
#### Inherited from
|
|
503
|
-
|
|
504
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlPassword`](IEngineEnvironmentVariables.md#postgresqlpassword)
|
|
505
|
-
|
|
506
|
-
***
|
|
507
|
-
|
|
508
|
-
### postgreSqlDatabase? {#postgresqldatabase}
|
|
509
|
-
|
|
510
|
-
> `optional` **postgreSqlDatabase?**: `string`
|
|
511
|
-
|
|
512
|
-
PostgreSQl Database.
|
|
513
|
-
|
|
514
|
-
#### Inherited from
|
|
515
|
-
|
|
516
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlDatabase`](IEngineEnvironmentVariables.md#postgresqldatabase)
|
|
517
|
-
|
|
518
|
-
***
|
|
519
|
-
|
|
520
|
-
### ipfsBearerToken? {#ipfsbearertoken}
|
|
521
|
-
|
|
522
|
-
> `optional` **ipfsBearerToken?**: `string`
|
|
523
|
-
|
|
524
|
-
The security token for accessing IPFS API.
|
|
525
|
-
|
|
526
|
-
#### Inherited from
|
|
527
|
-
|
|
528
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`ipfsBearerToken`](IEngineEnvironmentVariables.md#ipfsbearertoken)
|
|
529
|
-
|
|
530
|
-
***
|
|
531
|
-
|
|
532
|
-
### ipfsApiUrl? {#ipfsapiurl}
|
|
533
|
-
|
|
534
|
-
> `optional` **ipfsApiUrl?**: `string`
|
|
535
|
-
|
|
536
|
-
The url for accessing IPFS API.
|
|
537
|
-
|
|
538
|
-
#### Inherited from
|
|
539
|
-
|
|
540
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`ipfsApiUrl`](IEngineEnvironmentVariables.md#ipfsapiurl)
|
|
541
|
-
|
|
542
|
-
***
|
|
543
|
-
|
|
544
|
-
### blobStorageConnectorType? {#blobstorageconnectortype}
|
|
545
|
-
|
|
546
|
-
> `optional` **blobStorageConnectorType?**: `string`
|
|
547
|
-
|
|
548
|
-
The type of the entity storage to create, comma separate for more than one connector.
|
|
549
|
-
values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
|
|
550
|
-
|
|
551
|
-
#### Inherited from
|
|
552
|
-
|
|
553
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorType`](IEngineEnvironmentVariables.md#blobstorageconnectortype)
|
|
554
|
-
|
|
555
|
-
***
|
|
556
|
-
|
|
557
|
-
### blobStorageConnectorDefault? {#blobstorageconnectordefault}
|
|
558
|
-
|
|
559
|
-
> `optional` **blobStorageConnectorDefault?**: `string`
|
|
560
|
-
|
|
561
|
-
The default blob storage connector to use, defaults to the first one in the list.
|
|
562
|
-
|
|
563
|
-
#### Inherited from
|
|
564
|
-
|
|
565
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorDefault`](IEngineEnvironmentVariables.md#blobstorageconnectordefault)
|
|
566
|
-
|
|
567
|
-
***
|
|
568
|
-
|
|
569
|
-
### blobStorageEnableEncryption? {#blobstorageenableencryption}
|
|
570
|
-
|
|
571
|
-
> `optional` **blobStorageEnableEncryption?**: `string`
|
|
572
|
-
|
|
573
|
-
Enable encryption for the blob storage.
|
|
574
|
-
|
|
575
|
-
#### Inherited from
|
|
576
|
-
|
|
577
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEnableEncryption`](IEngineEnvironmentVariables.md#blobstorageenableencryption)
|
|
578
|
-
|
|
579
|
-
***
|
|
580
|
-
|
|
581
|
-
### blobStorageEncryptionKeyId? {#blobstorageencryptionkeyid}
|
|
582
|
-
|
|
583
|
-
> `optional` **blobStorageEncryptionKeyId?**: `string`
|
|
584
|
-
|
|
585
|
-
The id of the encryption key for the blob storage.
|
|
586
|
-
|
|
587
|
-
#### Inherited from
|
|
588
|
-
|
|
589
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEncryptionKeyId`](IEngineEnvironmentVariables.md#blobstorageencryptionkeyid)
|
|
590
|
-
|
|
591
|
-
***
|
|
592
|
-
|
|
593
|
-
### blobStoragePrefix? {#blobstorageprefix}
|
|
594
|
-
|
|
595
|
-
> `optional` **blobStoragePrefix?**: `string`
|
|
596
|
-
|
|
597
|
-
A prefix for all the blobs in blob-storage, can be empty.
|
|
598
|
-
|
|
599
|
-
#### Inherited from
|
|
600
|
-
|
|
601
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStoragePrefix`](IEngineEnvironmentVariables.md#blobstorageprefix)
|
|
602
|
-
|
|
603
|
-
***
|
|
604
|
-
|
|
605
|
-
### awsS3Region? {#awss3region}
|
|
606
|
-
|
|
607
|
-
> `optional` **awsS3Region?**: `string`
|
|
608
|
-
|
|
609
|
-
AWS S3 region.
|
|
610
|
-
|
|
611
|
-
#### Inherited from
|
|
612
|
-
|
|
613
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3Region`](IEngineEnvironmentVariables.md#awss3region)
|
|
614
|
-
|
|
615
|
-
***
|
|
616
|
-
|
|
617
|
-
### awsS3BucketName? {#awss3bucketname}
|
|
618
|
-
|
|
619
|
-
> `optional` **awsS3BucketName?**: `string`
|
|
620
|
-
|
|
621
|
-
AWS S3 bucket name.
|
|
622
|
-
|
|
623
|
-
#### Inherited from
|
|
624
|
-
|
|
625
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3BucketName`](IEngineEnvironmentVariables.md#awss3bucketname)
|
|
626
|
-
|
|
627
|
-
***
|
|
628
|
-
|
|
629
|
-
### awsS3AuthMode? {#awss3authmode}
|
|
630
|
-
|
|
631
|
-
> `optional` **awsS3AuthMode?**: `string`
|
|
632
|
-
|
|
633
|
-
AWS S3 auth mode, either credentials or pod, defaults to credentials.
|
|
634
|
-
|
|
635
|
-
#### Inherited from
|
|
636
|
-
|
|
637
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3AuthMode`](IEngineEnvironmentVariables.md#awss3authmode)
|
|
638
|
-
|
|
639
|
-
***
|
|
640
|
-
|
|
641
|
-
### awsS3AccessKeyId? {#awss3accesskeyid}
|
|
642
|
-
|
|
643
|
-
> `optional` **awsS3AccessKeyId?**: `string`
|
|
644
|
-
|
|
645
|
-
AWS S3 access key id.
|
|
646
|
-
|
|
647
|
-
#### Inherited from
|
|
648
|
-
|
|
649
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3AccessKeyId`](IEngineEnvironmentVariables.md#awss3accesskeyid)
|
|
650
|
-
|
|
651
|
-
***
|
|
652
|
-
|
|
653
|
-
### awsS3SecretAccessKey? {#awss3secretaccesskey}
|
|
654
|
-
|
|
655
|
-
> `optional` **awsS3SecretAccessKey?**: `string`
|
|
656
|
-
|
|
657
|
-
AWS S3 secret access key.
|
|
658
|
-
|
|
659
|
-
#### Inherited from
|
|
660
|
-
|
|
661
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3SecretAccessKey`](IEngineEnvironmentVariables.md#awss3secretaccesskey)
|
|
662
|
-
|
|
663
|
-
***
|
|
664
|
-
|
|
665
|
-
### awsS3Endpoint? {#awss3endpoint}
|
|
666
|
-
|
|
667
|
-
> `optional` **awsS3Endpoint?**: `string`
|
|
668
|
-
|
|
669
|
-
AWS S3 endpoint.
|
|
670
|
-
|
|
671
|
-
#### Inherited from
|
|
672
|
-
|
|
673
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3Endpoint`](IEngineEnvironmentVariables.md#awss3endpoint)
|
|
674
|
-
|
|
675
|
-
***
|
|
676
|
-
|
|
677
|
-
### azureStorageAccountKey? {#azurestorageaccountkey}
|
|
678
|
-
|
|
679
|
-
> `optional` **azureStorageAccountKey?**: `string`
|
|
680
|
-
|
|
681
|
-
Azure Storage account key.
|
|
682
|
-
|
|
683
|
-
#### Inherited from
|
|
684
|
-
|
|
685
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageAccountKey`](IEngineEnvironmentVariables.md#azurestorageaccountkey)
|
|
686
|
-
|
|
687
|
-
***
|
|
688
|
-
|
|
689
|
-
### azureStorageAccountName? {#azurestorageaccountname}
|
|
690
|
-
|
|
691
|
-
> `optional` **azureStorageAccountName?**: `string`
|
|
692
|
-
|
|
693
|
-
Azure Storage account name.
|
|
694
|
-
|
|
695
|
-
#### Inherited from
|
|
696
|
-
|
|
697
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageAccountName`](IEngineEnvironmentVariables.md#azurestorageaccountname)
|
|
698
|
-
|
|
699
|
-
***
|
|
700
|
-
|
|
701
|
-
### azureStorageContainerName? {#azurestoragecontainername}
|
|
702
|
-
|
|
703
|
-
> `optional` **azureStorageContainerName?**: `string`
|
|
704
|
-
|
|
705
|
-
Azure Storage container.
|
|
706
|
-
|
|
707
|
-
#### Inherited from
|
|
708
|
-
|
|
709
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageContainerName`](IEngineEnvironmentVariables.md#azurestoragecontainername)
|
|
710
|
-
|
|
711
|
-
***
|
|
712
|
-
|
|
713
|
-
### azureStorageEndpoint? {#azurestorageendpoint}
|
|
714
|
-
|
|
715
|
-
> `optional` **azureStorageEndpoint?**: `string`
|
|
716
|
-
|
|
717
|
-
Azure Storage endpoint.
|
|
718
|
-
|
|
719
|
-
#### Inherited from
|
|
720
|
-
|
|
721
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageEndpoint`](IEngineEnvironmentVariables.md#azurestorageendpoint)
|
|
722
|
-
|
|
723
|
-
***
|
|
724
|
-
|
|
725
|
-
### gcpStorageBucketName? {#gcpstoragebucketname}
|
|
726
|
-
|
|
727
|
-
> `optional` **gcpStorageBucketName?**: `string`
|
|
728
|
-
|
|
729
|
-
GCP Storage bucket.
|
|
730
|
-
|
|
731
|
-
#### Inherited from
|
|
732
|
-
|
|
733
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageBucketName`](IEngineEnvironmentVariables.md#gcpstoragebucketname)
|
|
734
|
-
|
|
735
|
-
***
|
|
736
|
-
|
|
737
|
-
### gcpStorageCredentials? {#gcpstoragecredentials}
|
|
738
|
-
|
|
739
|
-
> `optional` **gcpStorageCredentials?**: `string`
|
|
740
|
-
|
|
741
|
-
GCP Storage credentials.
|
|
742
|
-
|
|
743
|
-
#### Inherited from
|
|
744
|
-
|
|
745
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageCredentials`](IEngineEnvironmentVariables.md#gcpstoragecredentials)
|
|
746
|
-
|
|
747
|
-
***
|
|
748
|
-
|
|
749
|
-
### gcpStorageEndpoint? {#gcpstorageendpoint}
|
|
750
|
-
|
|
751
|
-
> `optional` **gcpStorageEndpoint?**: `string`
|
|
752
|
-
|
|
753
|
-
GCP Storage endpoint.
|
|
754
|
-
|
|
755
|
-
#### Inherited from
|
|
756
|
-
|
|
757
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageEndpoint`](IEngineEnvironmentVariables.md#gcpstorageendpoint)
|
|
758
|
-
|
|
759
|
-
***
|
|
760
|
-
|
|
761
|
-
### gcpStorageProjectId? {#gcpstorageprojectid}
|
|
762
|
-
|
|
763
|
-
> `optional` **gcpStorageProjectId?**: `string`
|
|
764
|
-
|
|
765
|
-
GCP Storage project id.
|
|
766
|
-
|
|
767
|
-
#### Inherited from
|
|
768
|
-
|
|
769
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageProjectId`](IEngineEnvironmentVariables.md#gcpstorageprojectid)
|
|
770
|
-
|
|
771
|
-
***
|
|
772
|
-
|
|
773
|
-
### vaultConnector? {#vaultconnector}
|
|
774
|
-
|
|
775
|
-
> `optional` **vaultConnector?**: `string`
|
|
776
|
-
|
|
777
|
-
The type of the default vault connector: entity-storage, hashicorp.
|
|
778
|
-
|
|
779
|
-
#### Inherited from
|
|
780
|
-
|
|
781
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vaultConnector`](IEngineEnvironmentVariables.md#vaultconnector)
|
|
782
|
-
|
|
783
|
-
***
|
|
784
|
-
|
|
785
|
-
### vaultPrefix? {#vaultprefix}
|
|
786
|
-
|
|
787
|
-
> `optional` **vaultPrefix?**: `string`
|
|
788
|
-
|
|
789
|
-
Prefix to prepend to entries in the vault.
|
|
790
|
-
|
|
791
|
-
#### Inherited from
|
|
792
|
-
|
|
793
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vaultPrefix`](IEngineEnvironmentVariables.md#vaultprefix)
|
|
794
|
-
|
|
795
|
-
***
|
|
796
|
-
|
|
797
|
-
### hashicorpVaultToken? {#hashicorpvaulttoken}
|
|
798
|
-
|
|
799
|
-
> `optional` **hashicorpVaultToken?**: `string`
|
|
800
|
-
|
|
801
|
-
Hashicorp Vault token.
|
|
802
|
-
|
|
803
|
-
#### Inherited from
|
|
804
|
-
|
|
805
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultToken`](IEngineEnvironmentVariables.md#hashicorpvaulttoken)
|
|
806
|
-
|
|
807
|
-
***
|
|
808
|
-
|
|
809
|
-
### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
|
|
810
|
-
|
|
811
|
-
> `optional` **hashicorpVaultEndpoint?**: `string`
|
|
812
|
-
|
|
813
|
-
Hashicorp Vault endpoint.
|
|
814
|
-
|
|
815
|
-
#### Inherited from
|
|
816
|
-
|
|
817
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultEndpoint`](IEngineEnvironmentVariables.md#hashicorpvaultendpoint)
|
|
818
|
-
|
|
819
|
-
***
|
|
820
|
-
|
|
821
|
-
### loggingConnector? {#loggingconnector}
|
|
822
|
-
|
|
823
|
-
> `optional` **loggingConnector?**: `string`
|
|
824
|
-
|
|
825
|
-
The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
826
|
-
|
|
827
|
-
#### Inherited from
|
|
828
|
-
|
|
829
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingConnector`](IEngineEnvironmentVariables.md#loggingconnector)
|
|
830
|
-
|
|
831
|
-
***
|
|
832
|
-
|
|
833
|
-
### loggingBatchSize? {#loggingbatchsize}
|
|
834
|
-
|
|
835
|
-
> `optional` **loggingBatchSize?**: `string`
|
|
836
|
-
|
|
837
|
-
The batch size for the logging task, set to 1 for no batching.
|
|
838
|
-
|
|
839
|
-
#### Inherited from
|
|
840
|
-
|
|
841
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingBatchSize`](IEngineEnvironmentVariables.md#loggingbatchsize)
|
|
842
|
-
|
|
843
|
-
***
|
|
844
|
-
|
|
845
|
-
### loggingBatchFlushIntervalSeconds? {#loggingbatchflushintervalseconds}
|
|
846
|
-
|
|
847
|
-
> `optional` **loggingBatchFlushIntervalSeconds?**: `string`
|
|
848
|
-
|
|
849
|
-
The batch flush interval in seconds for the logging task, how often to flush the logs when using batching, defaults to 5 seconds.
|
|
850
|
-
|
|
851
|
-
#### Inherited from
|
|
852
|
-
|
|
853
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingBatchFlushIntervalSeconds`](IEngineEnvironmentVariables.md#loggingbatchflushintervalseconds)
|
|
854
|
-
|
|
855
|
-
***
|
|
856
|
-
|
|
857
|
-
### loggingSilentComponents? {#loggingsilentcomponents}
|
|
858
|
-
|
|
859
|
-
> `optional` **loggingSilentComponents?**: `string`
|
|
860
|
-
|
|
861
|
-
A list of components to exclude from logging, can be a comma separated list of component Class names e.g. "ComponentA,ComponentB".
|
|
862
|
-
|
|
863
|
-
#### Inherited from
|
|
864
|
-
|
|
865
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingSilentComponents`](IEngineEnvironmentVariables.md#loggingsilentcomponents)
|
|
866
|
-
|
|
867
|
-
***
|
|
868
|
-
|
|
869
|
-
### eventBusConnector? {#eventbusconnector}
|
|
870
|
-
|
|
871
|
-
> `optional` **eventBusConnector?**: `string`
|
|
872
|
-
|
|
873
|
-
The type of event bus connector: local.
|
|
874
|
-
|
|
875
|
-
#### Inherited from
|
|
876
|
-
|
|
877
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`eventBusConnector`](IEngineEnvironmentVariables.md#eventbusconnector)
|
|
878
|
-
|
|
879
|
-
***
|
|
880
|
-
|
|
881
|
-
### eventBusComponent? {#eventbuscomponent}
|
|
882
|
-
|
|
883
|
-
> `optional` **eventBusComponent?**: `string`
|
|
884
|
-
|
|
885
|
-
The type of event bus component: service.
|
|
886
|
-
|
|
887
|
-
#### Inherited from
|
|
888
|
-
|
|
889
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`eventBusComponent`](IEngineEnvironmentVariables.md#eventbuscomponent)
|
|
890
|
-
|
|
891
|
-
***
|
|
892
|
-
|
|
893
|
-
### messagingEnabled? {#messagingenabled}
|
|
894
|
-
|
|
895
|
-
> `optional` **messagingEnabled?**: `string`
|
|
896
|
-
|
|
897
|
-
Are the messaging components enabled, defaults to false.
|
|
898
|
-
|
|
899
|
-
#### Inherited from
|
|
900
|
-
|
|
901
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingEnabled`](IEngineEnvironmentVariables.md#messagingenabled)
|
|
902
|
-
|
|
903
|
-
***
|
|
904
|
-
|
|
905
|
-
### awsSesRegion? {#awssesregion}
|
|
906
|
-
|
|
907
|
-
> `optional` **awsSesRegion?**: `string`
|
|
908
|
-
|
|
909
|
-
AWS SES region.
|
|
910
|
-
|
|
911
|
-
#### Inherited from
|
|
912
|
-
|
|
913
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsSesRegion`](IEngineEnvironmentVariables.md#awssesregion)
|
|
914
|
-
|
|
915
|
-
***
|
|
916
|
-
|
|
917
|
-
### awsSesAuthMode? {#awssesauthmode}
|
|
918
|
-
|
|
919
|
-
> `optional` **awsSesAuthMode?**: `string`
|
|
920
|
-
|
|
921
|
-
AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
922
|
-
|
|
923
|
-
#### Inherited from
|
|
924
|
-
|
|
925
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsSesAuthMode`](IEngineEnvironmentVariables.md#awssesauthmode)
|
|
926
|
-
|
|
927
|
-
***
|
|
928
|
-
|
|
929
|
-
### awsSesSecretAccessKey? {#awssessecretaccesskey}
|
|
930
|
-
|
|
931
|
-
> `optional` **awsSesSecretAccessKey?**: `string`
|
|
932
|
-
|
|
933
|
-
AWS SES secret access key.
|
|
934
|
-
|
|
935
|
-
#### Inherited from
|
|
936
|
-
|
|
937
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsSesSecretAccessKey`](IEngineEnvironmentVariables.md#awssessecretaccesskey)
|
|
938
|
-
|
|
939
|
-
***
|
|
940
|
-
|
|
941
|
-
### awsSesAccessKeyId? {#awssesaccesskeyid}
|
|
942
|
-
|
|
943
|
-
> `optional` **awsSesAccessKeyId?**: `string`
|
|
944
|
-
|
|
945
|
-
AWS SES access key id.
|
|
946
|
-
|
|
947
|
-
#### Inherited from
|
|
948
|
-
|
|
949
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsSesAccessKeyId`](IEngineEnvironmentVariables.md#awssesaccesskeyid)
|
|
950
|
-
|
|
951
|
-
***
|
|
952
|
-
|
|
953
|
-
### awsSesEndpoint? {#awssesendpoint}
|
|
954
|
-
|
|
955
|
-
> `optional` **awsSesEndpoint?**: `string`
|
|
956
|
-
|
|
957
|
-
AWS SES endpoint.
|
|
958
|
-
|
|
959
|
-
#### Inherited from
|
|
960
|
-
|
|
961
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsSesEndpoint`](IEngineEnvironmentVariables.md#awssesendpoint)
|
|
962
|
-
|
|
963
|
-
***
|
|
964
|
-
|
|
965
|
-
### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
|
|
966
|
-
|
|
967
|
-
> `optional` **awsMessagingPushNotificationApplications?**: `string`
|
|
968
|
-
|
|
969
|
-
The applications for the push notifications reference a separate json with @json: prefix.
|
|
970
|
-
|
|
971
|
-
#### Inherited from
|
|
972
|
-
|
|
973
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsMessagingPushNotificationApplications`](IEngineEnvironmentVariables.md#awsmessagingpushnotificationapplications)
|
|
974
|
-
|
|
975
|
-
***
|
|
976
|
-
|
|
977
|
-
### messagingEmailConnector? {#messagingemailconnector}
|
|
978
|
-
|
|
979
|
-
> `optional` **messagingEmailConnector?**: `string`
|
|
980
|
-
|
|
981
|
-
The type of messaging email connector: entity-storage, aws.
|
|
982
|
-
|
|
983
|
-
#### Inherited from
|
|
984
|
-
|
|
985
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingEmailConnector`](IEngineEnvironmentVariables.md#messagingemailconnector)
|
|
986
|
-
|
|
987
|
-
***
|
|
988
|
-
|
|
989
|
-
### messagingSmsConnector? {#messagingsmsconnector}
|
|
990
|
-
|
|
991
|
-
> `optional` **messagingSmsConnector?**: `string`
|
|
992
|
-
|
|
993
|
-
The type of messaging sms connector: entity-storage, aws.
|
|
994
|
-
|
|
995
|
-
#### Inherited from
|
|
996
|
-
|
|
997
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingSmsConnector`](IEngineEnvironmentVariables.md#messagingsmsconnector)
|
|
998
|
-
|
|
999
|
-
***
|
|
1000
|
-
|
|
1001
|
-
### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
|
|
1002
|
-
|
|
1003
|
-
> `optional` **messagingPushNotificationConnector?**: `string`
|
|
1004
|
-
|
|
1005
|
-
The type of messaging push notification connector: entity-storage, aws.
|
|
1006
|
-
|
|
1007
|
-
#### Inherited from
|
|
1008
|
-
|
|
1009
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingPushNotificationConnector`](IEngineEnvironmentVariables.md#messagingpushnotificationconnector)
|
|
1010
|
-
|
|
1011
|
-
***
|
|
1012
|
-
|
|
1013
|
-
### telemetryConnector? {#telemetryconnector}
|
|
1014
|
-
|
|
1015
|
-
> `optional` **telemetryConnector?**: `string`
|
|
1016
|
-
|
|
1017
|
-
The type of telemetry connector: entity-storage.
|
|
1018
|
-
|
|
1019
|
-
#### Inherited from
|
|
1020
|
-
|
|
1021
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryConnector`](IEngineEnvironmentVariables.md#telemetryconnector)
|
|
1022
|
-
|
|
1023
|
-
***
|
|
1024
|
-
|
|
1025
|
-
### openTelemetryMeterName? {#opentelemetrymetername}
|
|
1026
|
-
|
|
1027
|
-
> `optional` **openTelemetryMeterName?**: `string`
|
|
1028
|
-
|
|
1029
|
-
The name of the Open Telemetry meter to use, only required if using open-telemetry as telemetry connector, defaults to twin-node.
|
|
1030
|
-
|
|
1031
|
-
#### Inherited from
|
|
1032
|
-
|
|
1033
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryMeterName`](IEngineEnvironmentVariables.md#opentelemetrymetername)
|
|
1034
|
-
|
|
1035
|
-
***
|
|
1036
|
-
|
|
1037
|
-
### openTelemetryMeterVersion? {#opentelemetrymeterversion}
|
|
1038
|
-
|
|
1039
|
-
> `optional` **openTelemetryMeterVersion?**: `string`
|
|
1040
|
-
|
|
1041
|
-
The version of the Open Telemetry metrics specification to use, only required if using open-telemetry as telemetry connector, defaults to 1.0.0.
|
|
1042
|
-
|
|
1043
|
-
#### Inherited from
|
|
1044
|
-
|
|
1045
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryMeterVersion`](IEngineEnvironmentVariables.md#opentelemetrymeterversion)
|
|
1046
|
-
|
|
1047
|
-
***
|
|
1048
|
-
|
|
1049
|
-
### openTelemetryReader? {#opentelemetryreader}
|
|
1050
|
-
|
|
1051
|
-
> `optional` **openTelemetryReader?**: `string`
|
|
1052
|
-
|
|
1053
|
-
The type of Open Telemetry metric reader to use, only required if using open-telemetry as telemetry connector, values: prometheus.
|
|
1054
|
-
|
|
1055
|
-
#### Inherited from
|
|
1056
|
-
|
|
1057
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryReader`](IEngineEnvironmentVariables.md#opentelemetryreader)
|
|
1058
|
-
|
|
1059
|
-
***
|
|
1060
|
-
|
|
1061
|
-
### openTelemetryPrometheusPort? {#opentelemetryprometheusport}
|
|
1062
|
-
|
|
1063
|
-
> `optional` **openTelemetryPrometheusPort?**: `string`
|
|
1064
|
-
|
|
1065
|
-
The port to use for the Open Telemetry Prometheus metrics server, only required if using open-telemetry as telemetry connector and prometheus as reader, defaults to 9464.
|
|
1066
|
-
|
|
1067
|
-
#### Inherited from
|
|
1068
|
-
|
|
1069
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryPrometheusPort`](IEngineEnvironmentVariables.md#opentelemetryprometheusport)
|
|
1070
|
-
|
|
1071
|
-
***
|
|
1072
|
-
|
|
1073
|
-
### telemetryMetricsCollectorIntervalSeconds? {#telemetrymetricscollectorintervalseconds}
|
|
1074
|
-
|
|
1075
|
-
> `optional` **telemetryMetricsCollectorIntervalSeconds?**: `string`
|
|
1076
|
-
|
|
1077
|
-
Polling interval in seconds for the telemetry metrics collector. Defaults to 60.
|
|
1078
|
-
|
|
1079
|
-
#### Inherited from
|
|
1080
|
-
|
|
1081
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryMetricsCollectorIntervalSeconds`](IEngineEnvironmentVariables.md#telemetrymetricscollectorintervalseconds)
|
|
1082
|
-
|
|
1083
|
-
***
|
|
1084
|
-
|
|
1085
|
-
### telemetryMetricsProducers? {#telemetrymetricsproducers}
|
|
1086
|
-
|
|
1087
|
-
> `optional` **telemetryMetricsProducers?**: `string`
|
|
1088
|
-
|
|
1089
|
-
The type of telemetry metrics producers, can be a comma separated list: system, process.
|
|
1090
|
-
|
|
1091
|
-
#### Inherited from
|
|
1092
|
-
|
|
1093
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryMetricsProducers`](IEngineEnvironmentVariables.md#telemetrymetricsproducers)
|
|
1094
|
-
|
|
1095
|
-
***
|
|
1096
|
-
|
|
1097
|
-
### telemetryMetricsProducerMaxHistory? {#telemetrymetricsproducermaxhistory}
|
|
1098
|
-
|
|
1099
|
-
> `optional` **telemetryMetricsProducerMaxHistory?**: `string`
|
|
1100
|
-
|
|
1101
|
-
Maximum number of values retained per telemetry metric (count-based history cap). Defaults to 1440.
|
|
1102
|
-
|
|
1103
|
-
#### Inherited from
|
|
1104
|
-
|
|
1105
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryMetricsProducerMaxHistory`](IEngineEnvironmentVariables.md#telemetrymetricsproducermaxhistory)
|
|
1106
|
-
|
|
1107
|
-
***
|
|
1108
|
-
|
|
1109
|
-
### faucetConnector? {#faucetconnector}
|
|
1110
|
-
|
|
1111
|
-
> `optional` **faucetConnector?**: `string`
|
|
1112
|
-
|
|
1113
|
-
The type of faucet connector: entity-storage, iota.
|
|
1114
|
-
|
|
1115
|
-
#### Inherited from
|
|
1116
|
-
|
|
1117
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`faucetConnector`](IEngineEnvironmentVariables.md#faucetconnector)
|
|
1118
|
-
|
|
1119
|
-
***
|
|
1120
|
-
|
|
1121
|
-
### walletConnector? {#walletconnector}
|
|
1122
|
-
|
|
1123
|
-
> `optional` **walletConnector?**: `string`
|
|
1124
|
-
|
|
1125
|
-
The type of wallet connector: entity-storage, iota.
|
|
1126
|
-
|
|
1127
|
-
#### Inherited from
|
|
1128
|
-
|
|
1129
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`walletConnector`](IEngineEnvironmentVariables.md#walletconnector)
|
|
1130
|
-
|
|
1131
|
-
***
|
|
1132
|
-
|
|
1133
|
-
### nftConnector? {#nftconnector}
|
|
1134
|
-
|
|
1135
|
-
> `optional` **nftConnector?**: `string`
|
|
1136
|
-
|
|
1137
|
-
The type of NFT connector: entity-storage, iota.
|
|
1138
|
-
|
|
1139
|
-
#### Inherited from
|
|
1140
|
-
|
|
1141
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`nftConnector`](IEngineEnvironmentVariables.md#nftconnector)
|
|
1142
|
-
|
|
1143
|
-
***
|
|
1144
|
-
|
|
1145
|
-
### nftPackageId? {#nftpackageid}
|
|
1146
|
-
|
|
1147
|
-
> `optional` **nftPackageId?**: `string`
|
|
1148
|
-
|
|
1149
|
-
The NFT deployed package id, for custom deployments.
|
|
1150
|
-
|
|
1151
|
-
#### Inherited from
|
|
1152
|
-
|
|
1153
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`nftPackageId`](IEngineEnvironmentVariables.md#nftpackageid)
|
|
1154
|
-
|
|
1155
|
-
***
|
|
1156
|
-
|
|
1157
|
-
### notarizationConnector? {#notarizationconnector}
|
|
1158
|
-
|
|
1159
|
-
> `optional` **notarizationConnector?**: `string`
|
|
1160
|
-
|
|
1161
|
-
The type of notarization connector: entity-storage, iota.
|
|
1162
|
-
|
|
1163
|
-
#### Inherited from
|
|
1164
|
-
|
|
1165
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`notarizationConnector`](IEngineEnvironmentVariables.md#notarizationconnector)
|
|
1166
|
-
|
|
1167
|
-
***
|
|
1168
|
-
|
|
1169
|
-
### identityConnector? {#identityconnector}
|
|
1170
|
-
|
|
1171
|
-
> `optional` **identityConnector?**: `string`
|
|
1172
|
-
|
|
1173
|
-
The type of identity connector: entity-storage, iota.
|
|
1174
|
-
|
|
1175
|
-
#### Inherited from
|
|
1176
|
-
|
|
1177
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityConnector`](IEngineEnvironmentVariables.md#identityconnector)
|
|
1178
|
-
|
|
1179
|
-
***
|
|
1180
|
-
|
|
1181
|
-
### identityWalletAddressIndex? {#identitywalletaddressindex}
|
|
1182
|
-
|
|
1183
|
-
> `optional` **identityWalletAddressIndex?**: `string`
|
|
1184
|
-
|
|
1185
|
-
The index of the wallet address to use, defaults to 0.
|
|
1186
|
-
|
|
1187
|
-
#### Inherited from
|
|
1188
|
-
|
|
1189
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityWalletAddressIndex`](IEngineEnvironmentVariables.md#identitywalletaddressindex)
|
|
1190
|
-
|
|
1191
|
-
***
|
|
1192
|
-
|
|
1193
|
-
### identityResolverConnector? {#identityresolverconnector}
|
|
1194
|
-
|
|
1195
|
-
> `optional` **identityResolverConnector?**: `string`
|
|
1196
|
-
|
|
1197
|
-
The type of identity resolver connector: entity-storage, iota.
|
|
1198
|
-
|
|
1199
|
-
#### Inherited from
|
|
1200
|
-
|
|
1201
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityResolverConnector`](IEngineEnvironmentVariables.md#identityresolverconnector)
|
|
1202
|
-
|
|
1203
|
-
***
|
|
1204
|
-
|
|
1205
|
-
### iotaFaucetEndpoint? {#iotafaucetendpoint}
|
|
1206
|
-
|
|
1207
|
-
> `optional` **iotaFaucetEndpoint?**: `string`
|
|
1208
|
-
|
|
1209
|
-
IOTA Faucet Endpoint.
|
|
1210
|
-
|
|
1211
|
-
#### Inherited from
|
|
1212
|
-
|
|
1213
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaFaucetEndpoint`](IEngineEnvironmentVariables.md#iotafaucetendpoint)
|
|
1214
|
-
|
|
1215
|
-
***
|
|
1216
|
-
|
|
1217
|
-
### iotaNodeEndpoint? {#iotanodeendpoint}
|
|
1218
|
-
|
|
1219
|
-
> `optional` **iotaNodeEndpoint?**: `string`
|
|
1220
|
-
|
|
1221
|
-
IOTA Node Endpoint.
|
|
1222
|
-
|
|
1223
|
-
#### Inherited from
|
|
1224
|
-
|
|
1225
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaNodeEndpoint`](IEngineEnvironmentVariables.md#iotanodeendpoint)
|
|
1226
|
-
|
|
1227
|
-
***
|
|
1228
|
-
|
|
1229
|
-
### iotaNetwork? {#iotanetwork}
|
|
1230
|
-
|
|
1231
|
-
> `optional` **iotaNetwork?**: `string`
|
|
1232
|
-
|
|
1233
|
-
IOTA network.
|
|
1234
|
-
|
|
1235
|
-
#### Inherited from
|
|
1236
|
-
|
|
1237
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaNetwork`](IEngineEnvironmentVariables.md#iotanetwork)
|
|
1238
|
-
|
|
1239
|
-
***
|
|
1240
|
-
|
|
1241
|
-
### iotaCoinType? {#iotacointype}
|
|
1242
|
-
|
|
1243
|
-
> `optional` **iotaCoinType?**: `string`
|
|
1244
|
-
|
|
1245
|
-
IOTA coin type.
|
|
1246
|
-
|
|
1247
|
-
#### Inherited from
|
|
1248
|
-
|
|
1249
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaCoinType`](IEngineEnvironmentVariables.md#iotacointype)
|
|
1250
|
-
|
|
1251
|
-
***
|
|
1252
|
-
|
|
1253
|
-
### iotaExplorerEndpoint? {#iotaexplorerendpoint}
|
|
1254
|
-
|
|
1255
|
-
> `optional` **iotaExplorerEndpoint?**: `string`
|
|
1256
|
-
|
|
1257
|
-
IOTA Explorer Endpoint.
|
|
1258
|
-
|
|
1259
|
-
#### Inherited from
|
|
1260
|
-
|
|
1261
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaExplorerEndpoint`](IEngineEnvironmentVariables.md#iotaexplorerendpoint)
|
|
1262
|
-
|
|
1263
|
-
***
|
|
1264
|
-
|
|
1265
|
-
### iotaGasStationEndpoint? {#iotagasstationendpoint}
|
|
1266
|
-
|
|
1267
|
-
> `optional` **iotaGasStationEndpoint?**: `string`
|
|
1268
|
-
|
|
1269
|
-
IOTA Gas Station Endpoint.
|
|
1270
|
-
|
|
1271
|
-
#### Inherited from
|
|
1272
|
-
|
|
1273
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaGasStationEndpoint`](IEngineEnvironmentVariables.md#iotagasstationendpoint)
|
|
1274
|
-
|
|
1275
|
-
***
|
|
1276
|
-
|
|
1277
|
-
### iotaGasStationAuthToken? {#iotagasstationauthtoken}
|
|
1278
|
-
|
|
1279
|
-
> `optional` **iotaGasStationAuthToken?**: `string`
|
|
1280
|
-
|
|
1281
|
-
IOTA Gas Station Authentication Token.
|
|
1282
|
-
|
|
1283
|
-
#### Inherited from
|
|
1284
|
-
|
|
1285
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaGasStationAuthToken`](IEngineEnvironmentVariables.md#iotagasstationauthtoken)
|
|
1286
|
-
|
|
1287
|
-
***
|
|
1288
|
-
|
|
1289
|
-
### iotaIdentityPackageId? {#iotaidentitypackageid}
|
|
1290
|
-
|
|
1291
|
-
> `optional` **iotaIdentityPackageId?**: `string`
|
|
1292
|
-
|
|
1293
|
-
The IOTA Identity deployed package id, for custom deployments.
|
|
1294
|
-
|
|
1295
|
-
#### Inherited from
|
|
1296
|
-
|
|
1297
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaIdentityPackageId`](IEngineEnvironmentVariables.md#iotaidentitypackageid)
|
|
1298
|
-
|
|
1299
|
-
***
|
|
1300
|
-
|
|
1301
|
-
### universalResolverEndpoint? {#universalresolverendpoint}
|
|
1302
|
-
|
|
1303
|
-
> `optional` **universalResolverEndpoint?**: `string`
|
|
1304
|
-
|
|
1305
|
-
Universal Resolver Endpoint.
|
|
1306
|
-
|
|
1307
|
-
#### Inherited from
|
|
1308
|
-
|
|
1309
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`universalResolverEndpoint`](IEngineEnvironmentVariables.md#universalresolverendpoint)
|
|
1310
|
-
|
|
1311
|
-
***
|
|
1312
|
-
|
|
1313
|
-
### identityProfileConnector? {#identityprofileconnector}
|
|
1314
|
-
|
|
1315
|
-
> `optional` **identityProfileConnector?**: `string`
|
|
1316
|
-
|
|
1317
|
-
The type of identity profile connector: entity-storage.
|
|
1318
|
-
|
|
1319
|
-
#### Inherited from
|
|
1320
|
-
|
|
1321
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityProfileConnector`](IEngineEnvironmentVariables.md#identityprofileconnector)
|
|
1322
|
-
|
|
1323
|
-
***
|
|
1324
|
-
|
|
1325
|
-
### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
|
|
1326
|
-
|
|
1327
|
-
> `optional` **immutableProofVerificationMethodId?**: `string`
|
|
1328
|
-
|
|
1329
|
-
The identity verification method id to use with immutable proofs.
|
|
1330
|
-
|
|
1331
|
-
#### Inherited from
|
|
1332
|
-
|
|
1333
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`immutableProofVerificationMethodId`](IEngineEnvironmentVariables.md#immutableproofverificationmethodid)
|
|
1334
|
-
|
|
1335
|
-
***
|
|
1336
|
-
|
|
1337
|
-
### attestationConnector? {#attestationconnector}
|
|
1338
|
-
|
|
1339
|
-
> `optional` **attestationConnector?**: `string`
|
|
1340
|
-
|
|
1341
|
-
The type of attestation connector: entity-storage, iota.
|
|
1342
|
-
|
|
1343
|
-
#### Inherited from
|
|
1344
|
-
|
|
1345
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`attestationConnector`](IEngineEnvironmentVariables.md#attestationconnector)
|
|
1346
|
-
|
|
1347
|
-
***
|
|
1348
|
-
|
|
1349
|
-
### attestationVerificationMethodId? {#attestationverificationmethodid}
|
|
1350
|
-
|
|
1351
|
-
> `optional` **attestationVerificationMethodId?**: `string`
|
|
1352
|
-
|
|
1353
|
-
The identity verification method id to use with attestation.
|
|
1354
|
-
|
|
1355
|
-
#### Inherited from
|
|
1356
|
-
|
|
1357
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`attestationVerificationMethodId`](IEngineEnvironmentVariables.md#attestationverificationmethodid)
|
|
1358
|
-
|
|
1359
|
-
***
|
|
1360
|
-
|
|
1361
|
-
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
1362
|
-
|
|
1363
|
-
> `optional` **dataProcessingEnabled?**: `string`
|
|
1364
|
-
|
|
1365
|
-
Is the data processing enabled, defaults to false.
|
|
1366
|
-
|
|
1367
|
-
#### Inherited from
|
|
1368
|
-
|
|
1369
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataProcessingEnabled`](IEngineEnvironmentVariables.md#dataprocessingenabled)
|
|
1370
|
-
|
|
1371
|
-
***
|
|
1372
|
-
|
|
1373
|
-
### dataConverterConnectors? {#dataconverterconnectors}
|
|
1374
|
-
|
|
1375
|
-
> `optional` **dataConverterConnectors?**: `string`
|
|
1376
|
-
|
|
1377
|
-
The type of the default data converters, can be a comma separated list: json, xml.
|
|
1378
|
-
|
|
1379
|
-
#### Inherited from
|
|
1380
|
-
|
|
1381
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataConverterConnectors`](IEngineEnvironmentVariables.md#dataconverterconnectors)
|
|
1382
|
-
|
|
1383
|
-
***
|
|
1384
|
-
|
|
1385
|
-
### dataExtractorConnectors? {#dataextractorconnectors}
|
|
1386
|
-
|
|
1387
|
-
> `optional` **dataExtractorConnectors?**: `string`
|
|
1388
|
-
|
|
1389
|
-
The type of the default data extractor, can be a comma separated list: json-path.
|
|
1390
|
-
|
|
1391
|
-
#### Inherited from
|
|
1392
|
-
|
|
1393
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataExtractorConnectors`](IEngineEnvironmentVariables.md#dataextractorconnectors)
|
|
1394
|
-
|
|
1395
|
-
***
|
|
1396
|
-
|
|
1397
|
-
### taskSchedulerEnabled? {#taskschedulerenabled}
|
|
1398
|
-
|
|
1399
|
-
> `optional` **taskSchedulerEnabled?**: `string`
|
|
1400
|
-
|
|
1401
|
-
Enable the task scheduler regardless of which other components are active, defaults to false.
|
|
1402
|
-
|
|
1403
|
-
#### Inherited from
|
|
1404
|
-
|
|
1405
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`taskSchedulerEnabled`](IEngineEnvironmentVariables.md#taskschedulerenabled)
|
|
1406
|
-
|
|
1407
|
-
***
|
|
1408
|
-
|
|
1409
|
-
### auditableItemGraphEnabled? {#auditableitemgraphenabled}
|
|
1410
|
-
|
|
1411
|
-
> `optional` **auditableItemGraphEnabled?**: `string`
|
|
1412
|
-
|
|
1413
|
-
Is the auditable item graph enabled, defaults to false.
|
|
1414
|
-
|
|
1415
|
-
#### Inherited from
|
|
1416
|
-
|
|
1417
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`auditableItemGraphEnabled`](IEngineEnvironmentVariables.md#auditableitemgraphenabled)
|
|
1418
|
-
|
|
1419
|
-
***
|
|
1420
|
-
|
|
1421
|
-
### auditableItemStreamEnabled? {#auditableitemstreamenabled}
|
|
1422
|
-
|
|
1423
|
-
> `optional` **auditableItemStreamEnabled?**: `string`
|
|
1424
|
-
|
|
1425
|
-
Is the auditable item stream enabled, defaults to false.
|
|
1426
|
-
|
|
1427
|
-
#### Inherited from
|
|
1428
|
-
|
|
1429
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`auditableItemStreamEnabled`](IEngineEnvironmentVariables.md#auditableitemstreamenabled)
|
|
1430
|
-
|
|
1431
|
-
***
|
|
1432
|
-
|
|
1433
|
-
### documentManagementEnabled? {#documentmanagementenabled}
|
|
1434
|
-
|
|
1435
|
-
> `optional` **documentManagementEnabled?**: `string`
|
|
1436
|
-
|
|
1437
|
-
Is the document management enabled, defaults to false.
|
|
1438
|
-
|
|
1439
|
-
#### Inherited from
|
|
1440
|
-
|
|
1441
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`documentManagementEnabled`](IEngineEnvironmentVariables.md#documentmanagementenabled)
|
|
1442
|
-
|
|
1443
|
-
***
|
|
1444
|
-
|
|
1445
|
-
### federatedCatalogueEnabled? {#federatedcatalogueenabled}
|
|
1446
|
-
|
|
1447
|
-
> `optional` **federatedCatalogueEnabled?**: `string`
|
|
1448
|
-
|
|
1449
|
-
Enable the federated catalogue, defaults to false, automatically enabled if remote endpoint, filters or dataspace is enabled.
|
|
1450
|
-
|
|
1451
|
-
#### Inherited from
|
|
1452
|
-
|
|
1453
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueEnabled`](IEngineEnvironmentVariables.md#federatedcatalogueenabled)
|
|
1454
|
-
|
|
1455
|
-
***
|
|
1456
|
-
|
|
1457
|
-
### federatedCatalogueFilters? {#federatedcataloguefilters}
|
|
1458
|
-
|
|
1459
|
-
> `optional` **federatedCatalogueFilters?**: `string`
|
|
1460
|
-
|
|
1461
|
-
Federated catalog filters, command separated list of filters to add.
|
|
1462
|
-
|
|
1463
|
-
#### Inherited from
|
|
1464
|
-
|
|
1465
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineEnvironmentVariables.md#federatedcataloguefilters)
|
|
1466
|
-
|
|
1467
|
-
***
|
|
1468
|
-
|
|
1469
|
-
### federatedCatalogueRemoteEndpoint? {#federatedcatalogueremoteendpoint}
|
|
1470
|
-
|
|
1471
|
-
> `optional` **federatedCatalogueRemoteEndpoint?**: `string`
|
|
1472
|
-
|
|
1473
|
-
Federated catalog remote endpoint, if set will use a REST client instead of local service.
|
|
1474
|
-
|
|
1475
|
-
#### Inherited from
|
|
1476
|
-
|
|
1477
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueRemoteEndpoint`](IEngineEnvironmentVariables.md#federatedcatalogueremoteendpoint)
|
|
1478
|
-
|
|
1479
|
-
***
|
|
1480
|
-
|
|
1481
|
-
### trustGenerators? {#trustgenerators}
|
|
1482
|
-
|
|
1483
|
-
> `optional` **trustGenerators?**: `string`
|
|
1484
|
-
|
|
1485
|
-
The trust generators to add to the factory, comma separated list.
|
|
1486
|
-
|
|
1487
|
-
#### Inherited from
|
|
1488
|
-
|
|
1489
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustGenerators`](IEngineEnvironmentVariables.md#trustgenerators)
|
|
1490
|
-
|
|
1491
|
-
***
|
|
1492
|
-
|
|
1493
|
-
### trustVerifiers? {#trustverifiers}
|
|
1494
|
-
|
|
1495
|
-
> `optional` **trustVerifiers?**: `string`
|
|
1496
|
-
|
|
1497
|
-
The trust verifiers to add to the factory, comma separated list.
|
|
1498
|
-
|
|
1499
|
-
#### Inherited from
|
|
1500
|
-
|
|
1501
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerifiers`](IEngineEnvironmentVariables.md#trustverifiers)
|
|
1502
|
-
|
|
1503
|
-
***
|
|
1504
|
-
|
|
1505
|
-
### trustVerificationMethodId? {#trustverificationmethodid}
|
|
1506
|
-
|
|
1507
|
-
> `optional` **trustVerificationMethodId?**: `string`
|
|
1508
|
-
|
|
1509
|
-
The verification method to use for trust identities.
|
|
1510
|
-
Defaults to trust-assertion.
|
|
1511
|
-
|
|
1512
|
-
#### Inherited from
|
|
1513
|
-
|
|
1514
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineEnvironmentVariables.md#trustverificationmethodid)
|
|
1515
|
-
|
|
1516
|
-
***
|
|
1517
|
-
|
|
1518
|
-
### trustJwtTtlSeconds? {#trustjwtttlseconds}
|
|
1519
|
-
|
|
1520
|
-
> `optional` **trustJwtTtlSeconds?**: `string`
|
|
1521
|
-
|
|
1522
|
-
The trust time to live for generating JWTs.
|
|
1523
|
-
Defaults to undefined for never expiring.
|
|
1524
|
-
|
|
1525
|
-
#### Inherited from
|
|
1526
|
-
|
|
1527
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustJwtTtlSeconds`](IEngineEnvironmentVariables.md#trustjwtttlseconds)
|
|
1528
|
-
|
|
1529
|
-
***
|
|
1530
|
-
|
|
1531
|
-
### trustIdentitiesAllow? {#trustidentitiesallow}
|
|
1532
|
-
|
|
1533
|
-
> `optional` **trustIdentitiesAllow?**: `string`
|
|
1534
|
-
|
|
1535
|
-
The allow lists for the trust identity verifier, comma separated list of identities.
|
|
1536
|
-
|
|
1537
|
-
#### Inherited from
|
|
1538
|
-
|
|
1539
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustIdentitiesAllow`](IEngineEnvironmentVariables.md#trustidentitiesallow)
|
|
1540
|
-
|
|
1541
|
-
***
|
|
1542
|
-
|
|
1543
|
-
### trustIdentitiesDeny? {#trustidentitiesdeny}
|
|
1544
|
-
|
|
1545
|
-
> `optional` **trustIdentitiesDeny?**: `string`
|
|
1546
|
-
|
|
1547
|
-
The deny lists for the trust identity verifier, comma separated list of identities.
|
|
1548
|
-
|
|
1549
|
-
#### Inherited from
|
|
1550
|
-
|
|
1551
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustIdentitiesDeny`](IEngineEnvironmentVariables.md#trustidentitiesdeny)
|
|
1552
|
-
|
|
1553
|
-
***
|
|
1554
|
-
|
|
1555
|
-
### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
|
|
1556
|
-
|
|
1557
|
-
> `optional` **rightsManagementCallbackPath?**: `string`
|
|
1558
|
-
|
|
1559
|
-
Path under which the rights management service is mounted (single source
|
|
1560
|
-
of truth). The same value drives:
|
|
1561
|
-
- the server route mount (via engine config)
|
|
1562
|
-
- the PNP service's callback URL builder (`buildCallbackUrl`)
|
|
1563
|
-
- the PNP rest-client's pathPrefix (consumer side)
|
|
1564
|
-
Defaults to `rights-management`. Set when deploying behind a reverse proxy
|
|
1565
|
-
with path rewriting, K8s ingress with path-based routing, or any custom
|
|
1566
|
-
mount point.
|
|
1567
|
-
|
|
1568
|
-
#### Inherited from
|
|
1569
|
-
|
|
1570
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementCallbackPath`](IEngineEnvironmentVariables.md#rightsmanagementcallbackpath)
|
|
1571
|
-
|
|
1572
|
-
***
|
|
1573
|
-
|
|
1574
|
-
### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
|
|
1575
|
-
|
|
1576
|
-
> `optional` **rightsManagementPolicyInformationSources?**: `string`
|
|
1577
|
-
|
|
1578
|
-
The rights management policy information sources to add to the factory.
|
|
1579
|
-
|
|
1580
|
-
#### Inherited from
|
|
1581
|
-
|
|
1582
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
|
|
1583
|
-
|
|
1584
|
-
***
|
|
1585
|
-
|
|
1586
|
-
### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
|
|
1587
|
-
|
|
1588
|
-
> `optional` **rightsManagementPolicyNegotiators?**: `string`
|
|
1589
|
-
|
|
1590
|
-
The rights management policy negotiators sources to add to the factory.
|
|
1591
|
-
|
|
1592
|
-
#### Inherited from
|
|
1593
|
-
|
|
1594
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineEnvironmentVariables.md#rightsmanagementpolicynegotiators)
|
|
1595
|
-
|
|
1596
|
-
***
|
|
1597
|
-
|
|
1598
|
-
### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
|
|
1599
|
-
|
|
1600
|
-
> `optional` **rightsManagementPolicyRequesters?**: `string`
|
|
1601
|
-
|
|
1602
|
-
The rights management policy requesters to add to the factory.
|
|
1603
|
-
|
|
1604
|
-
#### Inherited from
|
|
1605
|
-
|
|
1606
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyrequesters)
|
|
1607
|
-
|
|
1608
|
-
***
|
|
1609
|
-
|
|
1610
|
-
### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
|
|
1611
|
-
|
|
1612
|
-
> `optional` **rightsManagementPolicyExecutionActions?**: `string`
|
|
1613
|
-
|
|
1614
|
-
The rights management policy execution actions to add to the factory.
|
|
1615
|
-
|
|
1616
|
-
#### Inherited from
|
|
1617
|
-
|
|
1618
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
|
|
1619
|
-
|
|
1620
|
-
***
|
|
1621
|
-
|
|
1622
|
-
### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
|
|
1623
|
-
|
|
1624
|
-
> `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
|
|
1625
|
-
|
|
1626
|
-
The rights management policy enforcement processors to add to the factory.
|
|
1627
|
-
|
|
1628
|
-
#### Inherited from
|
|
1629
|
-
|
|
1630
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
|
|
1631
|
-
|
|
1632
|
-
***
|
|
1633
|
-
|
|
1634
|
-
### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
|
|
1635
|
-
|
|
1636
|
-
> `optional` **rightsManagementPolicyArbiters?**: `string`
|
|
1637
|
-
|
|
1638
|
-
The rights management policy arbiters to add to the factory.
|
|
1639
|
-
|
|
1640
|
-
#### Inherited from
|
|
1641
|
-
|
|
1642
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyarbiters)
|
|
1643
|
-
|
|
1644
|
-
***
|
|
1645
|
-
|
|
1646
|
-
### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
|
|
1647
|
-
|
|
1648
|
-
> `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
|
|
1649
|
-
|
|
1650
|
-
The rights management policy obligation enforcers to add to the factory.
|
|
1651
|
-
|
|
1652
|
-
#### Inherited from
|
|
1653
|
-
|
|
1654
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyObligationEnforcers`](IEngineEnvironmentVariables.md#rightsmanagementpolicyobligationenforcers)
|
|
1655
|
-
|
|
1656
|
-
***
|
|
1657
|
-
|
|
1658
|
-
### dataspaceEnabled? {#dataspaceenabled}
|
|
1659
|
-
|
|
1660
|
-
> `optional` **dataspaceEnabled?**: `string`
|
|
1661
|
-
|
|
1662
|
-
Is the dataspace enabled, defaults to false.
|
|
1663
|
-
|
|
1664
|
-
#### Inherited from
|
|
1665
|
-
|
|
1666
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceEnabled`](IEngineEnvironmentVariables.md#dataspaceenabled)
|
|
1667
|
-
|
|
1668
|
-
***
|
|
1669
|
-
|
|
1670
|
-
### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
|
|
1671
|
-
|
|
1672
|
-
> `optional` **dataspaceRetainActivityLogsFor?**: `string`
|
|
1673
|
-
|
|
1674
|
-
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1675
|
-
|
|
1676
|
-
#### Default
|
|
1677
|
-
|
|
1678
|
-
```ts
|
|
1679
|
-
10
|
|
1680
|
-
```
|
|
1681
|
-
|
|
1682
|
-
#### Inherited from
|
|
1683
|
-
|
|
1684
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceRetainActivityLogsFor`](IEngineEnvironmentVariables.md#dataspaceretainactivitylogsfor)
|
|
1685
|
-
|
|
1686
|
-
***
|
|
1687
|
-
|
|
1688
|
-
### dataspaceActivityLogsCleanupInterval? {#dataspaceactivitylogscleanupinterval}
|
|
1689
|
-
|
|
1690
|
-
> `optional` **dataspaceActivityLogsCleanupInterval?**: `string`
|
|
1691
|
-
|
|
1692
|
-
The interval in minutes for cleaning up the activity logs.
|
|
1693
|
-
|
|
1694
|
-
#### Default
|
|
1695
|
-
|
|
1696
|
-
```ts
|
|
1697
|
-
60
|
|
1698
|
-
```
|
|
1699
|
-
|
|
1700
|
-
#### Inherited from
|
|
1701
|
-
|
|
1702
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceActivityLogsCleanupInterval`](IEngineEnvironmentVariables.md#dataspaceactivitylogscleanupinterval)
|
|
1703
|
-
|
|
1704
|
-
***
|
|
1705
|
-
|
|
1706
|
-
### dataspaceDataPlanePath? {#dataspacedataplanepath}
|
|
1707
|
-
|
|
1708
|
-
> `optional` **dataspaceDataPlanePath?**: `string`
|
|
1709
|
-
|
|
1710
|
-
The data plane path for PULL transfers (path only, not full URL).
|
|
1711
|
-
Will be combined with public origin.
|
|
1712
|
-
Required if PULL transfers should be supported.
|
|
1713
|
-
Example: "dataspace/entities"
|
|
1714
|
-
|
|
1715
|
-
#### Inherited from
|
|
1716
|
-
|
|
1717
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceDataPlanePath`](IEngineEnvironmentVariables.md#dataspacedataplanepath)
|
|
1718
|
-
|
|
1719
|
-
***
|
|
1720
|
-
|
|
1721
|
-
### dataspaceAutoStartTransfers? {#dataspaceautostarttransfers}
|
|
1722
|
-
|
|
1723
|
-
> `optional` **dataspaceAutoStartTransfers?**: `string`
|
|
1724
|
-
|
|
1725
|
-
Whether the provider immediately starts a transfer once it has been requested.
|
|
1726
|
-
When false the transfer stays in REQUESTED until the provider explicitly calls transferStarted.
|
|
1727
|
-
|
|
1728
|
-
#### Default
|
|
1729
|
-
|
|
1730
|
-
```ts
|
|
1731
|
-
false
|
|
1732
|
-
```
|
|
1733
|
-
|
|
1734
|
-
#### Inherited from
|
|
1735
|
-
|
|
1736
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceAutoStartTransfers`](IEngineEnvironmentVariables.md#dataspaceautostarttransfers)
|
|
1737
|
-
|
|
1738
|
-
***
|
|
1739
|
-
|
|
1740
|
-
### dataspaceStalledNegotiationTimeout? {#dataspacestallednegotiationtimeout}
|
|
1741
|
-
|
|
1742
|
-
> `optional` **dataspaceStalledNegotiationTimeout?**: `string`
|
|
1743
|
-
|
|
1744
|
-
How long in minutes a negotiation may sit without progress before it is treated as timed out.
|
|
1745
|
-
|
|
1746
|
-
#### Default
|
|
1747
|
-
|
|
1748
|
-
```ts
|
|
1749
|
-
30
|
|
1750
|
-
```
|
|
1751
|
-
|
|
1752
|
-
#### Inherited from
|
|
1753
|
-
|
|
1754
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceStalledNegotiationTimeout`](IEngineEnvironmentVariables.md#dataspacestallednegotiationtimeout)
|
|
1755
|
-
|
|
1756
|
-
***
|
|
1757
|
-
|
|
1758
|
-
### dataspaceStalledTransferTimeout? {#dataspacestalledtransfertimeout}
|
|
1759
|
-
|
|
1760
|
-
> `optional` **dataspaceStalledTransferTimeout?**: `string`
|
|
1761
|
-
|
|
1762
|
-
How long in minutes a consumer-initiated transfer may sit in REQUESTED without the provider
|
|
1763
|
-
progressing it before it is treated as timed out.
|
|
1764
|
-
|
|
1765
|
-
#### Default
|
|
1766
|
-
|
|
1767
|
-
```ts
|
|
1768
|
-
30
|
|
1769
|
-
```
|
|
1770
|
-
|
|
1771
|
-
#### Inherited from
|
|
1772
|
-
|
|
1773
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceStalledTransferTimeout`](IEngineEnvironmentVariables.md#dataspacestalledtransfertimeout)
|
|
1774
|
-
|
|
1775
|
-
***
|
|
1776
|
-
|
|
1777
|
-
### dataspaceCallbackPath? {#dataspacecallbackpath}
|
|
1778
|
-
|
|
1779
|
-
> `optional` **dataspaceCallbackPath?**: `string`
|
|
1780
|
-
|
|
1781
|
-
Path under which the dataspace control plane is mounted (path only, not full URL).
|
|
1782
|
-
This must match the control-plane REST mount, as it is combined with the public
|
|
1783
|
-
origin to build the consumer's advertised callback address.
|
|
1784
|
-
|
|
1785
|
-
#### Inherited from
|
|
1786
|
-
|
|
1787
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceCallbackPath`](IEngineEnvironmentVariables.md#dataspacecallbackpath)
|
|
1788
|
-
|
|
1789
|
-
***
|
|
1790
|
-
|
|
1791
|
-
### healthEnabled? {#healthenabled}
|
|
1792
|
-
|
|
1793
|
-
> `optional` **healthEnabled?**: `string`
|
|
1794
|
-
|
|
1795
|
-
Are the health components enabled, defaults to false.
|
|
1796
|
-
|
|
1797
|
-
#### Inherited from
|
|
1798
|
-
|
|
1799
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthEnabled`](IEngineEnvironmentVariables.md#healthenabled)
|
|
1800
|
-
|
|
1801
|
-
***
|
|
1802
|
-
|
|
1803
|
-
### healthIntervalSeconds? {#healthintervalseconds}
|
|
1804
|
-
|
|
1805
|
-
> `optional` **healthIntervalSeconds?**: `string`
|
|
1806
|
-
|
|
1807
|
-
The interval in seconds for performing health checks, defaults to 60.
|
|
1808
|
-
|
|
1809
|
-
#### Inherited from
|
|
1810
|
-
|
|
1811
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthIntervalSeconds`](IEngineEnvironmentVariables.md#healthintervalseconds)
|
|
1812
|
-
|
|
1813
|
-
***
|
|
1814
|
-
|
|
1815
|
-
### healthStartupIntervalSeconds? {#healthstartupintervalseconds}
|
|
1816
|
-
|
|
1817
|
-
> `optional` **healthStartupIntervalSeconds?**: `string`
|
|
1818
|
-
|
|
1819
|
-
The interval in seconds for performing health checks at startup, defaults to 2.
|
|
1820
|
-
This allows components that take a long time to initialize to be healthy before the first health check is performed.
|
|
1821
|
-
|
|
1822
|
-
#### Inherited from
|
|
1823
|
-
|
|
1824
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthStartupIntervalSeconds`](IEngineEnvironmentVariables.md#healthstartupintervalseconds)
|
|
1825
|
-
|
|
1826
|
-
***
|
|
1827
|
-
|
|
1828
|
-
### automationActionTypes? {#automationactiontypes}
|
|
1829
|
-
|
|
1830
|
-
> `optional` **automationActionTypes?**: `string`
|
|
1831
|
-
|
|
1832
|
-
The type of the automation action to create, comma separate for more than one connector.
|
|
1833
|
-
values: fetch
|
|
1834
|
-
|
|
1835
|
-
#### Inherited from
|
|
1836
|
-
|
|
1837
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`automationActionTypes`](IEngineEnvironmentVariables.md#automationactiontypes)
|
|
1838
|
-
|
|
1839
|
-
***
|
|
1840
|
-
|
|
1841
|
-
### mutexTimeoutMsDefault? {#mutextimeoutmsdefault}
|
|
1842
|
-
|
|
1843
|
-
> `optional` **mutexTimeoutMsDefault?**: `string`
|
|
1844
|
-
|
|
1845
|
-
The default mutex timeout in milliseconds, used when no component-specific timeout is set, defaults to 5000 if omitted.
|
|
1846
|
-
|
|
1847
|
-
#### Inherited from
|
|
1848
|
-
|
|
1849
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mutexTimeoutMsDefault`](IEngineEnvironmentVariables.md#mutextimeoutmsdefault)
|
|
1850
|
-
|
|
1851
|
-
***
|
|
1852
|
-
|
|
1853
|
-
### auditableItemGraphMutexTimeoutMs? {#auditableitemgraphmutextimeoutms}
|
|
1854
|
-
|
|
1855
|
-
> `optional` **auditableItemGraphMutexTimeoutMs?**: `string`
|
|
1856
|
-
|
|
1857
|
-
The mutex timeout in milliseconds for the auditable item graph component.
|
|
1858
|
-
|
|
1859
|
-
#### Inherited from
|
|
1860
|
-
|
|
1861
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`auditableItemGraphMutexTimeoutMs`](IEngineEnvironmentVariables.md#auditableitemgraphmutextimeoutms)
|
|
1862
|
-
|
|
1863
|
-
***
|
|
1864
|
-
|
|
1865
|
-
### auditableItemStreamMutexTimeoutMs? {#auditableitemstreammutextimeoutms}
|
|
1866
|
-
|
|
1867
|
-
> `optional` **auditableItemStreamMutexTimeoutMs?**: `string`
|
|
1868
|
-
|
|
1869
|
-
The mutex timeout in milliseconds for the auditable item stream component.
|
|
1870
|
-
|
|
1871
|
-
#### Inherited from
|
|
1872
|
-
|
|
1873
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`auditableItemStreamMutexTimeoutMs`](IEngineEnvironmentVariables.md#auditableitemstreammutextimeoutms)
|
|
1874
|
-
|
|
1875
|
-
***
|
|
1876
|
-
|
|
1877
|
-
### federatedCatalogueMutexTimeoutMs? {#federatedcataloguemutextimeoutms}
|
|
1878
|
-
|
|
1879
|
-
> `optional` **federatedCatalogueMutexTimeoutMs?**: `string`
|
|
1880
|
-
|
|
1881
|
-
The mutex timeout in milliseconds for the federated catalogue component.
|
|
1882
|
-
|
|
1883
|
-
#### Inherited from
|
|
1884
|
-
|
|
1885
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueMutexTimeoutMs`](IEngineEnvironmentVariables.md#federatedcataloguemutextimeoutms)
|
|
1886
|
-
|
|
1887
|
-
***
|
|
1888
|
-
|
|
1889
|
-
### documentManagementMutexTimeoutMs? {#documentmanagementmutextimeoutms}
|
|
1890
|
-
|
|
1891
|
-
> `optional` **documentManagementMutexTimeoutMs?**: `string`
|
|
1892
|
-
|
|
1893
|
-
The mutex timeout in milliseconds for the document management component.
|
|
1894
|
-
|
|
1895
|
-
#### Inherited from
|
|
1896
|
-
|
|
1897
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`documentManagementMutexTimeoutMs`](IEngineEnvironmentVariables.md#documentmanagementmutextimeoutms)
|
|
1898
|
-
|
|
1899
|
-
***
|
|
1900
|
-
|
|
1901
|
-
### loggingMutexTimeoutMs? {#loggingmutextimeoutms}
|
|
1902
|
-
|
|
1903
|
-
> `optional` **loggingMutexTimeoutMs?**: `string`
|
|
1904
|
-
|
|
1905
|
-
The mutex timeout in milliseconds for the logging component.
|
|
1906
|
-
|
|
1907
|
-
#### Inherited from
|
|
1908
|
-
|
|
1909
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingMutexTimeoutMs`](IEngineEnvironmentVariables.md#loggingmutextimeoutms)
|
|
1910
|
-
|
|
1911
|
-
***
|
|
1912
|
-
|
|
1913
|
-
### entityStorageMemoryMutexTimeoutMs? {#entitystoragememorymutextimeoutms}
|
|
1914
|
-
|
|
1915
|
-
> `optional` **entityStorageMemoryMutexTimeoutMs?**: `string`
|
|
1916
|
-
|
|
1917
|
-
The mutex timeout in milliseconds for the memory entity storage connector.
|
|
1918
|
-
|
|
1919
|
-
#### Inherited from
|
|
1920
|
-
|
|
1921
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageMemoryMutexTimeoutMs`](IEngineEnvironmentVariables.md#entitystoragememorymutextimeoutms)
|
|
1922
|
-
|
|
1923
|
-
***
|
|
1924
|
-
|
|
1925
|
-
### entityStorageFileMutexTimeoutMs? {#entitystoragefilemutextimeoutms}
|
|
1926
|
-
|
|
1927
|
-
> `optional` **entityStorageFileMutexTimeoutMs?**: `string`
|
|
1928
|
-
|
|
1929
|
-
The mutex timeout in milliseconds for the file entity storage connector.
|
|
1930
|
-
|
|
1931
|
-
#### Inherited from
|
|
1932
|
-
|
|
1933
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageFileMutexTimeoutMs`](IEngineEnvironmentVariables.md#entitystoragefilemutextimeoutms)
|
|
1934
|
-
|
|
1935
|
-
***
|
|
1936
|
-
|
|
1937
|
-
### rightsManagementMutexTimeoutMs? {#rightsmanagementmutextimeoutms}
|
|
1938
|
-
|
|
1939
|
-
> `optional` **rightsManagementMutexTimeoutMs?**: `string`
|
|
1940
|
-
|
|
1941
|
-
The mutex timeout in milliseconds for the rights management component.
|
|
1942
|
-
|
|
1943
|
-
#### Inherited from
|
|
1944
|
-
|
|
1945
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementMutexTimeoutMs`](IEngineEnvironmentVariables.md#rightsmanagementmutextimeoutms)
|
|
1946
|
-
|
|
1947
|
-
***
|
|
1948
|
-
|
|
1949
|
-
### extensions? {#extensions}
|
|
1950
|
-
|
|
1951
|
-
> `optional` **extensions?**: `string`
|
|
1952
|
-
|
|
1953
|
-
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|
|
1954
|
-
|
|
1955
|
-
#### Inherited from
|
|
1956
|
-
|
|
1957
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`extensions`](IEngineEnvironmentVariables.md#extensions)
|
|
1958
|
-
|
|
1959
|
-
***
|
|
1960
|
-
|
|
1961
7
|
### port? {#port}
|
|
1962
8
|
|
|
1963
9
|
> `optional` **port?**: `string`
|