@twin.org/node-core 0.0.3-next.28 → 0.0.3-next.29
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/node.js +1 -1
- package/dist/es/node.js.map +1 -1
- package/docs/changelog.md +7 -0
- package/docs/reference/functions/start.md +2 -2
- package/docs/reference/interfaces/ICacheMetadata.md +3 -3
- package/docs/reference/interfaces/ICliArgs.md +6 -6
- package/docs/reference/interfaces/ICliCommand.md +2 -2
- package/docs/reference/interfaces/ICliCommandDefinition.md +29 -11
- package/docs/reference/interfaces/ICliCommandDefinitionParam.md +17 -11
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +316 -280
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +344 -308
- package/docs/reference/interfaces/IModuleProtocol.md +3 -3
- package/docs/reference/interfaces/INodeEngineState.md +4 -4
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +384 -318
- package/docs/reference/interfaces/INodeOptions.md +42 -36
- package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +1 -1
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +1 -1
- package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +1 -1
- package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +1 -1
- package/docs/reference/variables/ModuleProtocol.md +5 -5
- package/package.json +1 -1
- package/docs/detailed-guide.md +0 -129
|
@@ -8,900 +8,900 @@ The engine core environment variables.
|
|
|
8
8
|
|
|
9
9
|
## Properties
|
|
10
10
|
|
|
11
|
-
### debug?
|
|
11
|
+
### debug? {#debug}
|
|
12
12
|
|
|
13
|
-
> `optional` **debug
|
|
13
|
+
> `optional` **debug?**: `string`
|
|
14
14
|
|
|
15
15
|
Start the engine in debug mode.
|
|
16
16
|
|
|
17
17
|
***
|
|
18
18
|
|
|
19
|
-
### silent?
|
|
19
|
+
### silent? {#silent}
|
|
20
20
|
|
|
21
|
-
> `optional` **silent
|
|
21
|
+
> `optional` **silent?**: `string`
|
|
22
22
|
|
|
23
23
|
Start the engine in silent mode.
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
27
|
-
### storageFileRoot?
|
|
27
|
+
### storageFileRoot? {#storagefileroot}
|
|
28
28
|
|
|
29
|
-
> `optional` **storageFileRoot
|
|
29
|
+
> `optional` **storageFileRoot?**: `string`
|
|
30
30
|
|
|
31
31
|
The root directory for storing items like state file.
|
|
32
32
|
|
|
33
33
|
***
|
|
34
34
|
|
|
35
|
-
### stateFilename?
|
|
35
|
+
### stateFilename? {#statefilename}
|
|
36
36
|
|
|
37
|
-
> `optional` **stateFilename
|
|
37
|
+
> `optional` **stateFilename?**: `string`
|
|
38
38
|
|
|
39
39
|
The name of the state file.
|
|
40
40
|
|
|
41
41
|
***
|
|
42
42
|
|
|
43
|
-
### nodeIdentityEnabled?
|
|
43
|
+
### nodeIdentityEnabled? {#nodeidentityenabled}
|
|
44
44
|
|
|
45
|
-
> `optional` **nodeIdentityEnabled
|
|
45
|
+
> `optional` **nodeIdentityEnabled?**: `string`
|
|
46
46
|
|
|
47
47
|
Does the node have a unique ID, defaults to true.
|
|
48
48
|
|
|
49
49
|
***
|
|
50
50
|
|
|
51
|
-
### tenantEnabled?
|
|
51
|
+
### tenantEnabled? {#tenantenabled}
|
|
52
52
|
|
|
53
|
-
> `optional` **tenantEnabled
|
|
53
|
+
> `optional` **tenantEnabled?**: `string`
|
|
54
54
|
|
|
55
55
|
Is multi-tenant support enabled, defaults to false.
|
|
56
56
|
|
|
57
57
|
***
|
|
58
58
|
|
|
59
|
-
### entityStorageConnectorType?
|
|
59
|
+
### entityStorageConnectorType? {#entitystorageconnectortype}
|
|
60
60
|
|
|
61
|
-
> `optional` **entityStorageConnectorType
|
|
61
|
+
> `optional` **entityStorageConnectorType?**: `string`
|
|
62
62
|
|
|
63
63
|
The type of the entity storage to create, comma separate for more than one connector.
|
|
64
64
|
values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql
|
|
65
65
|
|
|
66
66
|
***
|
|
67
67
|
|
|
68
|
-
### entityStorageConnectorDefault?
|
|
68
|
+
### entityStorageConnectorDefault? {#entitystorageconnectordefault}
|
|
69
69
|
|
|
70
|
-
> `optional` **entityStorageConnectorDefault
|
|
70
|
+
> `optional` **entityStorageConnectorDefault?**: `string`
|
|
71
71
|
|
|
72
72
|
The default entity storage connector to use, defaults to the first one in the list.
|
|
73
73
|
|
|
74
74
|
***
|
|
75
75
|
|
|
76
|
-
### entityStorageTablePrefix?
|
|
76
|
+
### entityStorageTablePrefix? {#entitystoragetableprefix}
|
|
77
77
|
|
|
78
|
-
> `optional` **entityStorageTablePrefix
|
|
78
|
+
> `optional` **entityStorageTablePrefix?**: `string`
|
|
79
79
|
|
|
80
80
|
A prefix for all the table in entity-storage, can be empty.
|
|
81
81
|
|
|
82
82
|
***
|
|
83
83
|
|
|
84
|
-
### awsDynamodbAuthMode?
|
|
84
|
+
### awsDynamodbAuthMode? {#awsdynamodbauthmode}
|
|
85
85
|
|
|
86
|
-
> `optional` **awsDynamodbAuthMode
|
|
86
|
+
> `optional` **awsDynamodbAuthMode?**: `string`
|
|
87
87
|
|
|
88
88
|
AWS DynamoDB auth mode, either credentials or pod.
|
|
89
89
|
|
|
90
90
|
***
|
|
91
91
|
|
|
92
|
-
### awsDynamodbAccessKeyId?
|
|
92
|
+
### awsDynamodbAccessKeyId? {#awsdynamodbaccesskeyid}
|
|
93
93
|
|
|
94
|
-
> `optional` **awsDynamodbAccessKeyId
|
|
94
|
+
> `optional` **awsDynamodbAccessKeyId?**: `string`
|
|
95
95
|
|
|
96
96
|
AWS Dynamo DB access key id.
|
|
97
97
|
|
|
98
98
|
***
|
|
99
99
|
|
|
100
|
-
### awsDynamodbEndpoint?
|
|
100
|
+
### awsDynamodbEndpoint? {#awsdynamodbendpoint}
|
|
101
101
|
|
|
102
|
-
> `optional` **awsDynamodbEndpoint
|
|
102
|
+
> `optional` **awsDynamodbEndpoint?**: `string`
|
|
103
103
|
|
|
104
104
|
AWS Dynamo DB Endpoint if running local instance.
|
|
105
105
|
|
|
106
106
|
***
|
|
107
107
|
|
|
108
|
-
### awsDynamodbRegion?
|
|
108
|
+
### awsDynamodbRegion? {#awsdynamodbregion}
|
|
109
109
|
|
|
110
|
-
> `optional` **awsDynamodbRegion
|
|
110
|
+
> `optional` **awsDynamodbRegion?**: `string`
|
|
111
111
|
|
|
112
112
|
AWS Dynamo DB region.
|
|
113
113
|
|
|
114
114
|
***
|
|
115
115
|
|
|
116
|
-
### awsDynamodbSecretAccessKey?
|
|
116
|
+
### awsDynamodbSecretAccessKey? {#awsdynamodbsecretaccesskey}
|
|
117
117
|
|
|
118
|
-
> `optional` **awsDynamodbSecretAccessKey
|
|
118
|
+
> `optional` **awsDynamodbSecretAccessKey?**: `string`
|
|
119
119
|
|
|
120
120
|
AWS Dynamo DB secret access key.
|
|
121
121
|
|
|
122
122
|
***
|
|
123
123
|
|
|
124
|
-
### awsDynamodbConnectionTimeoutMs?
|
|
124
|
+
### awsDynamodbConnectionTimeoutMs? {#awsdynamodbconnectiontimeoutms}
|
|
125
125
|
|
|
126
|
-
> `optional` **awsDynamodbConnectionTimeoutMs
|
|
126
|
+
> `optional` **awsDynamodbConnectionTimeoutMs?**: `string`
|
|
127
127
|
|
|
128
128
|
AWS Dynamo DB connection timeout.
|
|
129
129
|
|
|
130
130
|
***
|
|
131
131
|
|
|
132
|
-
### azureCosmosdbKey?
|
|
132
|
+
### azureCosmosdbKey? {#azurecosmosdbkey}
|
|
133
133
|
|
|
134
|
-
> `optional` **azureCosmosdbKey
|
|
134
|
+
> `optional` **azureCosmosdbKey?**: `string`
|
|
135
135
|
|
|
136
136
|
Azure Cosmos DB key.
|
|
137
137
|
|
|
138
138
|
***
|
|
139
139
|
|
|
140
|
-
### azureCosmosdbContainerId?
|
|
140
|
+
### azureCosmosdbContainerId? {#azurecosmosdbcontainerid}
|
|
141
141
|
|
|
142
|
-
> `optional` **azureCosmosdbContainerId
|
|
142
|
+
> `optional` **azureCosmosdbContainerId?**: `string`
|
|
143
143
|
|
|
144
144
|
Azure Cosmos DB container id.
|
|
145
145
|
|
|
146
146
|
***
|
|
147
147
|
|
|
148
|
-
### azureCosmosdbDatabaseId?
|
|
148
|
+
### azureCosmosdbDatabaseId? {#azurecosmosdbdatabaseid}
|
|
149
149
|
|
|
150
|
-
> `optional` **azureCosmosdbDatabaseId
|
|
150
|
+
> `optional` **azureCosmosdbDatabaseId?**: `string`
|
|
151
151
|
|
|
152
152
|
Azure Cosmos DB database id.
|
|
153
153
|
|
|
154
154
|
***
|
|
155
155
|
|
|
156
|
-
### azureCosmosdbEndpoint?
|
|
156
|
+
### azureCosmosdbEndpoint? {#azurecosmosdbendpoint}
|
|
157
157
|
|
|
158
|
-
> `optional` **azureCosmosdbEndpoint
|
|
158
|
+
> `optional` **azureCosmosdbEndpoint?**: `string`
|
|
159
159
|
|
|
160
160
|
Azure Cosmos DB endpoint.
|
|
161
161
|
|
|
162
162
|
***
|
|
163
163
|
|
|
164
|
-
### gcpFirestoreCollectionName?
|
|
164
|
+
### gcpFirestoreCollectionName? {#gcpfirestorecollectionname}
|
|
165
165
|
|
|
166
|
-
> `optional` **gcpFirestoreCollectionName
|
|
166
|
+
> `optional` **gcpFirestoreCollectionName?**: `string`
|
|
167
167
|
|
|
168
168
|
GCP Firestore collection name.
|
|
169
169
|
|
|
170
170
|
***
|
|
171
171
|
|
|
172
|
-
### gcpFirestoreCredentials?
|
|
172
|
+
### gcpFirestoreCredentials? {#gcpfirestorecredentials}
|
|
173
173
|
|
|
174
|
-
> `optional` **gcpFirestoreCredentials
|
|
174
|
+
> `optional` **gcpFirestoreCredentials?**: `string`
|
|
175
175
|
|
|
176
176
|
GCP Firestore credentials.
|
|
177
177
|
|
|
178
178
|
***
|
|
179
179
|
|
|
180
|
-
### gcpFirestoreDatabaseId?
|
|
180
|
+
### gcpFirestoreDatabaseId? {#gcpfirestoredatabaseid}
|
|
181
181
|
|
|
182
|
-
> `optional` **gcpFirestoreDatabaseId
|
|
182
|
+
> `optional` **gcpFirestoreDatabaseId?**: `string`
|
|
183
183
|
|
|
184
184
|
GCP Firestore database id.
|
|
185
185
|
|
|
186
186
|
***
|
|
187
187
|
|
|
188
|
-
### gcpFirestoreApiEndpoint?
|
|
188
|
+
### gcpFirestoreApiEndpoint? {#gcpfirestoreapiendpoint}
|
|
189
189
|
|
|
190
|
-
> `optional` **gcpFirestoreApiEndpoint
|
|
190
|
+
> `optional` **gcpFirestoreApiEndpoint?**: `string`
|
|
191
191
|
|
|
192
192
|
GCP Firestore endpoint.
|
|
193
193
|
|
|
194
194
|
***
|
|
195
195
|
|
|
196
|
-
### gcpFirestoreProjectId?
|
|
196
|
+
### gcpFirestoreProjectId? {#gcpfirestoreprojectid}
|
|
197
197
|
|
|
198
|
-
> `optional` **gcpFirestoreProjectId
|
|
198
|
+
> `optional` **gcpFirestoreProjectId?**: `string`
|
|
199
199
|
|
|
200
200
|
GCP Firestore project id.
|
|
201
201
|
|
|
202
202
|
***
|
|
203
203
|
|
|
204
|
-
### scylladbHosts?
|
|
204
|
+
### scylladbHosts? {#scylladbhosts}
|
|
205
205
|
|
|
206
|
-
> `optional` **scylladbHosts
|
|
206
|
+
> `optional` **scylladbHosts?**: `string`
|
|
207
207
|
|
|
208
208
|
ScyllaDB hosts as comma separated string.
|
|
209
209
|
|
|
210
210
|
***
|
|
211
211
|
|
|
212
|
-
### scylladbKeyspace?
|
|
212
|
+
### scylladbKeyspace? {#scylladbkeyspace}
|
|
213
213
|
|
|
214
|
-
> `optional` **scylladbKeyspace
|
|
214
|
+
> `optional` **scylladbKeyspace?**: `string`
|
|
215
215
|
|
|
216
216
|
ScyllaDB keyspace.
|
|
217
217
|
|
|
218
218
|
***
|
|
219
219
|
|
|
220
|
-
### scylladbLocalDataCenter?
|
|
220
|
+
### scylladbLocalDataCenter? {#scylladblocaldatacenter}
|
|
221
221
|
|
|
222
|
-
> `optional` **scylladbLocalDataCenter
|
|
222
|
+
> `optional` **scylladbLocalDataCenter?**: `string`
|
|
223
223
|
|
|
224
224
|
ScyllaDB local data center.
|
|
225
225
|
|
|
226
226
|
***
|
|
227
227
|
|
|
228
|
-
### scylladbPort?
|
|
228
|
+
### scylladbPort? {#scylladbport}
|
|
229
229
|
|
|
230
|
-
> `optional` **scylladbPort
|
|
230
|
+
> `optional` **scylladbPort?**: `string`
|
|
231
231
|
|
|
232
232
|
ScyllaDB port.
|
|
233
233
|
|
|
234
234
|
***
|
|
235
235
|
|
|
236
|
-
### mySqlHost?
|
|
236
|
+
### mySqlHost? {#mysqlhost}
|
|
237
237
|
|
|
238
|
-
> `optional` **mySqlHost
|
|
238
|
+
> `optional` **mySqlHost?**: `string`
|
|
239
239
|
|
|
240
240
|
MySQL host.
|
|
241
241
|
|
|
242
242
|
***
|
|
243
243
|
|
|
244
|
-
### mySqlPort?
|
|
244
|
+
### mySqlPort? {#mysqlport}
|
|
245
245
|
|
|
246
|
-
> `optional` **mySqlPort
|
|
246
|
+
> `optional` **mySqlPort?**: `number`
|
|
247
247
|
|
|
248
248
|
MySQL port.
|
|
249
249
|
|
|
250
250
|
***
|
|
251
251
|
|
|
252
|
-
### mySqlUser?
|
|
252
|
+
### mySqlUser? {#mysqluser}
|
|
253
253
|
|
|
254
|
-
> `optional` **mySqlUser
|
|
254
|
+
> `optional` **mySqlUser?**: `string`
|
|
255
255
|
|
|
256
256
|
MySQL username.
|
|
257
257
|
|
|
258
258
|
***
|
|
259
259
|
|
|
260
|
-
### mySqlPassword?
|
|
260
|
+
### mySqlPassword? {#mysqlpassword}
|
|
261
261
|
|
|
262
|
-
> `optional` **mySqlPassword
|
|
262
|
+
> `optional` **mySqlPassword?**: `string`
|
|
263
263
|
|
|
264
264
|
MySQL password.
|
|
265
265
|
|
|
266
266
|
***
|
|
267
267
|
|
|
268
|
-
### mySqlDatabase?
|
|
268
|
+
### mySqlDatabase? {#mysqldatabase}
|
|
269
269
|
|
|
270
|
-
> `optional` **mySqlDatabase
|
|
270
|
+
> `optional` **mySqlDatabase?**: `string`
|
|
271
271
|
|
|
272
272
|
MySQL Database.
|
|
273
273
|
|
|
274
274
|
***
|
|
275
275
|
|
|
276
|
-
### mongoDbHost?
|
|
276
|
+
### mongoDbHost? {#mongodbhost}
|
|
277
277
|
|
|
278
|
-
> `optional` **mongoDbHost
|
|
278
|
+
> `optional` **mongoDbHost?**: `string`
|
|
279
279
|
|
|
280
280
|
MongoDB host.
|
|
281
281
|
|
|
282
282
|
***
|
|
283
283
|
|
|
284
|
-
### mongoDbPort?
|
|
284
|
+
### mongoDbPort? {#mongodbport}
|
|
285
285
|
|
|
286
|
-
> `optional` **mongoDbPort
|
|
286
|
+
> `optional` **mongoDbPort?**: `number`
|
|
287
287
|
|
|
288
288
|
MongoDB port.
|
|
289
289
|
|
|
290
290
|
***
|
|
291
291
|
|
|
292
|
-
### mongoDbUser?
|
|
292
|
+
### mongoDbUser? {#mongodbuser}
|
|
293
293
|
|
|
294
|
-
> `optional` **mongoDbUser
|
|
294
|
+
> `optional` **mongoDbUser?**: `string`
|
|
295
295
|
|
|
296
296
|
MongoDB username.
|
|
297
297
|
|
|
298
298
|
***
|
|
299
299
|
|
|
300
|
-
### mongoDbPassword?
|
|
300
|
+
### mongoDbPassword? {#mongodbpassword}
|
|
301
301
|
|
|
302
|
-
> `optional` **mongoDbPassword
|
|
302
|
+
> `optional` **mongoDbPassword?**: `string`
|
|
303
303
|
|
|
304
304
|
MongoDB password.
|
|
305
305
|
|
|
306
306
|
***
|
|
307
307
|
|
|
308
|
-
### mongoDbDatabase?
|
|
308
|
+
### mongoDbDatabase? {#mongodbdatabase}
|
|
309
309
|
|
|
310
|
-
> `optional` **mongoDbDatabase
|
|
310
|
+
> `optional` **mongoDbDatabase?**: `string`
|
|
311
311
|
|
|
312
312
|
MongoDB Database.
|
|
313
313
|
|
|
314
314
|
***
|
|
315
315
|
|
|
316
|
-
### postgreSqlHost?
|
|
316
|
+
### postgreSqlHost? {#postgresqlhost}
|
|
317
317
|
|
|
318
|
-
> `optional` **postgreSqlHost
|
|
318
|
+
> `optional` **postgreSqlHost?**: `string`
|
|
319
319
|
|
|
320
320
|
PostgreSQl host.
|
|
321
321
|
|
|
322
322
|
***
|
|
323
323
|
|
|
324
|
-
### postgreSqlPort?
|
|
324
|
+
### postgreSqlPort? {#postgresqlport}
|
|
325
325
|
|
|
326
|
-
> `optional` **postgreSqlPort
|
|
326
|
+
> `optional` **postgreSqlPort?**: `number`
|
|
327
327
|
|
|
328
328
|
PostgreSQl port.
|
|
329
329
|
|
|
330
330
|
***
|
|
331
331
|
|
|
332
|
-
### postgreSqlUser?
|
|
332
|
+
### postgreSqlUser? {#postgresqluser}
|
|
333
333
|
|
|
334
|
-
> `optional` **postgreSqlUser
|
|
334
|
+
> `optional` **postgreSqlUser?**: `string`
|
|
335
335
|
|
|
336
336
|
PostgreSQl username.
|
|
337
337
|
|
|
338
338
|
***
|
|
339
339
|
|
|
340
|
-
### postgreSqlPassword?
|
|
340
|
+
### postgreSqlPassword? {#postgresqlpassword}
|
|
341
341
|
|
|
342
|
-
> `optional` **postgreSqlPassword
|
|
342
|
+
> `optional` **postgreSqlPassword?**: `string`
|
|
343
343
|
|
|
344
344
|
PostgreSQl password.
|
|
345
345
|
|
|
346
346
|
***
|
|
347
347
|
|
|
348
|
-
### postgreSqlDatabase?
|
|
348
|
+
### postgreSqlDatabase? {#postgresqldatabase}
|
|
349
349
|
|
|
350
|
-
> `optional` **postgreSqlDatabase
|
|
350
|
+
> `optional` **postgreSqlDatabase?**: `string`
|
|
351
351
|
|
|
352
352
|
PostgreSQl Database.
|
|
353
353
|
|
|
354
354
|
***
|
|
355
355
|
|
|
356
|
-
### ipfsBearerToken?
|
|
356
|
+
### ipfsBearerToken? {#ipfsbearertoken}
|
|
357
357
|
|
|
358
|
-
> `optional` **ipfsBearerToken
|
|
358
|
+
> `optional` **ipfsBearerToken?**: `string`
|
|
359
359
|
|
|
360
360
|
The security token for accessing IPFS API.
|
|
361
361
|
|
|
362
362
|
***
|
|
363
363
|
|
|
364
|
-
### ipfsApiUrl?
|
|
364
|
+
### ipfsApiUrl? {#ipfsapiurl}
|
|
365
365
|
|
|
366
|
-
> `optional` **ipfsApiUrl
|
|
366
|
+
> `optional` **ipfsApiUrl?**: `string`
|
|
367
367
|
|
|
368
368
|
The url for accessing IPFS API.
|
|
369
369
|
|
|
370
370
|
***
|
|
371
371
|
|
|
372
|
-
### blobStorageConnectorType?
|
|
372
|
+
### blobStorageConnectorType? {#blobstorageconnectortype}
|
|
373
373
|
|
|
374
|
-
> `optional` **blobStorageConnectorType
|
|
374
|
+
> `optional` **blobStorageConnectorType?**: `string`
|
|
375
375
|
|
|
376
376
|
The type of the entity storage to create, comma separate for more than one connector.
|
|
377
377
|
values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
|
|
378
378
|
|
|
379
379
|
***
|
|
380
380
|
|
|
381
|
-
### blobStorageConnectorDefault?
|
|
381
|
+
### blobStorageConnectorDefault? {#blobstorageconnectordefault}
|
|
382
382
|
|
|
383
|
-
> `optional` **blobStorageConnectorDefault
|
|
383
|
+
> `optional` **blobStorageConnectorDefault?**: `string`
|
|
384
384
|
|
|
385
385
|
The default blob storage connector to use, defaults to the first one in the list.
|
|
386
386
|
|
|
387
387
|
***
|
|
388
388
|
|
|
389
|
-
### blobStorageConnectorPublic?
|
|
389
|
+
### blobStorageConnectorPublic? {#blobstorageconnectorpublic}
|
|
390
390
|
|
|
391
|
-
> `optional` **blobStorageConnectorPublic
|
|
391
|
+
> `optional` **blobStorageConnectorPublic?**: `string`
|
|
392
392
|
|
|
393
393
|
Blog storage connector which has public access.
|
|
394
394
|
|
|
395
395
|
***
|
|
396
396
|
|
|
397
|
-
### blobStorageEnableEncryption?
|
|
397
|
+
### blobStorageEnableEncryption? {#blobstorageenableencryption}
|
|
398
398
|
|
|
399
|
-
> `optional` **blobStorageEnableEncryption
|
|
399
|
+
> `optional` **blobStorageEnableEncryption?**: `string`
|
|
400
400
|
|
|
401
401
|
Enable encryption for the blob storage.
|
|
402
402
|
|
|
403
403
|
***
|
|
404
404
|
|
|
405
|
-
### blobStorageEncryptionKeyId?
|
|
405
|
+
### blobStorageEncryptionKeyId? {#blobstorageencryptionkeyid}
|
|
406
406
|
|
|
407
|
-
> `optional` **blobStorageEncryptionKeyId
|
|
407
|
+
> `optional` **blobStorageEncryptionKeyId?**: `string`
|
|
408
408
|
|
|
409
409
|
The id of the encryption key for the blob storage.
|
|
410
410
|
|
|
411
411
|
***
|
|
412
412
|
|
|
413
|
-
### blobStoragePrefix?
|
|
413
|
+
### blobStoragePrefix? {#blobstorageprefix}
|
|
414
414
|
|
|
415
|
-
> `optional` **blobStoragePrefix
|
|
415
|
+
> `optional` **blobStoragePrefix?**: `string`
|
|
416
416
|
|
|
417
417
|
A prefix for all the blobs in blob-storage, can be empty.
|
|
418
418
|
|
|
419
419
|
***
|
|
420
420
|
|
|
421
|
-
### awsS3Region?
|
|
421
|
+
### awsS3Region? {#awss3region}
|
|
422
422
|
|
|
423
|
-
> `optional` **awsS3Region
|
|
423
|
+
> `optional` **awsS3Region?**: `string`
|
|
424
424
|
|
|
425
425
|
AWS S3 region.
|
|
426
426
|
|
|
427
427
|
***
|
|
428
428
|
|
|
429
|
-
### awsS3BucketName?
|
|
429
|
+
### awsS3BucketName? {#awss3bucketname}
|
|
430
430
|
|
|
431
|
-
> `optional` **awsS3BucketName
|
|
431
|
+
> `optional` **awsS3BucketName?**: `string`
|
|
432
432
|
|
|
433
433
|
AWS S3 bucket name.
|
|
434
434
|
|
|
435
435
|
***
|
|
436
436
|
|
|
437
|
-
### awsS3AuthMode?
|
|
437
|
+
### awsS3AuthMode? {#awss3authmode}
|
|
438
438
|
|
|
439
|
-
> `optional` **awsS3AuthMode
|
|
439
|
+
> `optional` **awsS3AuthMode?**: `string`
|
|
440
440
|
|
|
441
441
|
AWS S3 auth mode, either credentials or pod, defaults to credentials.
|
|
442
442
|
|
|
443
443
|
***
|
|
444
444
|
|
|
445
|
-
### awsS3AccessKeyId?
|
|
445
|
+
### awsS3AccessKeyId? {#awss3accesskeyid}
|
|
446
446
|
|
|
447
|
-
> `optional` **awsS3AccessKeyId
|
|
447
|
+
> `optional` **awsS3AccessKeyId?**: `string`
|
|
448
448
|
|
|
449
449
|
AWS S3 access key id.
|
|
450
450
|
|
|
451
451
|
***
|
|
452
452
|
|
|
453
|
-
### awsS3SecretAccessKey?
|
|
453
|
+
### awsS3SecretAccessKey? {#awss3secretaccesskey}
|
|
454
454
|
|
|
455
|
-
> `optional` **awsS3SecretAccessKey
|
|
455
|
+
> `optional` **awsS3SecretAccessKey?**: `string`
|
|
456
456
|
|
|
457
457
|
AWS S3 secret access key.
|
|
458
458
|
|
|
459
459
|
***
|
|
460
460
|
|
|
461
|
-
### awsS3Endpoint?
|
|
461
|
+
### awsS3Endpoint? {#awss3endpoint}
|
|
462
462
|
|
|
463
|
-
> `optional` **awsS3Endpoint
|
|
463
|
+
> `optional` **awsS3Endpoint?**: `string`
|
|
464
464
|
|
|
465
465
|
AWS S3 endpoint.
|
|
466
466
|
|
|
467
467
|
***
|
|
468
468
|
|
|
469
|
-
### azureStorageAccountKey?
|
|
469
|
+
### azureStorageAccountKey? {#azurestorageaccountkey}
|
|
470
470
|
|
|
471
|
-
> `optional` **azureStorageAccountKey
|
|
471
|
+
> `optional` **azureStorageAccountKey?**: `string`
|
|
472
472
|
|
|
473
473
|
Azure Storage account key.
|
|
474
474
|
|
|
475
475
|
***
|
|
476
476
|
|
|
477
|
-
### azureStorageAccountName?
|
|
477
|
+
### azureStorageAccountName? {#azurestorageaccountname}
|
|
478
478
|
|
|
479
|
-
> `optional` **azureStorageAccountName
|
|
479
|
+
> `optional` **azureStorageAccountName?**: `string`
|
|
480
480
|
|
|
481
481
|
Azure Storage account name.
|
|
482
482
|
|
|
483
483
|
***
|
|
484
484
|
|
|
485
|
-
### azureStorageContainerName?
|
|
485
|
+
### azureStorageContainerName? {#azurestoragecontainername}
|
|
486
486
|
|
|
487
|
-
> `optional` **azureStorageContainerName
|
|
487
|
+
> `optional` **azureStorageContainerName?**: `string`
|
|
488
488
|
|
|
489
489
|
Azure Storage container.
|
|
490
490
|
|
|
491
491
|
***
|
|
492
492
|
|
|
493
|
-
### azureStorageEndpoint?
|
|
493
|
+
### azureStorageEndpoint? {#azurestorageendpoint}
|
|
494
494
|
|
|
495
|
-
> `optional` **azureStorageEndpoint
|
|
495
|
+
> `optional` **azureStorageEndpoint?**: `string`
|
|
496
496
|
|
|
497
497
|
Azure Storage endpoint.
|
|
498
498
|
|
|
499
499
|
***
|
|
500
500
|
|
|
501
|
-
### gcpStorageBucketName?
|
|
501
|
+
### gcpStorageBucketName? {#gcpstoragebucketname}
|
|
502
502
|
|
|
503
|
-
> `optional` **gcpStorageBucketName
|
|
503
|
+
> `optional` **gcpStorageBucketName?**: `string`
|
|
504
504
|
|
|
505
505
|
GCP Storage bucket.
|
|
506
506
|
|
|
507
507
|
***
|
|
508
508
|
|
|
509
|
-
### gcpStorageCredentials?
|
|
509
|
+
### gcpStorageCredentials? {#gcpstoragecredentials}
|
|
510
510
|
|
|
511
|
-
> `optional` **gcpStorageCredentials
|
|
511
|
+
> `optional` **gcpStorageCredentials?**: `string`
|
|
512
512
|
|
|
513
513
|
GCP Storage credentials.
|
|
514
514
|
|
|
515
515
|
***
|
|
516
516
|
|
|
517
|
-
### gcpStorageEndpoint?
|
|
517
|
+
### gcpStorageEndpoint? {#gcpstorageendpoint}
|
|
518
518
|
|
|
519
|
-
> `optional` **gcpStorageEndpoint
|
|
519
|
+
> `optional` **gcpStorageEndpoint?**: `string`
|
|
520
520
|
|
|
521
521
|
GCP Storage endpoint.
|
|
522
522
|
|
|
523
523
|
***
|
|
524
524
|
|
|
525
|
-
### gcpStorageProjectId?
|
|
525
|
+
### gcpStorageProjectId? {#gcpstorageprojectid}
|
|
526
526
|
|
|
527
|
-
> `optional` **gcpStorageProjectId
|
|
527
|
+
> `optional` **gcpStorageProjectId?**: `string`
|
|
528
528
|
|
|
529
529
|
GCP Storage project id.
|
|
530
530
|
|
|
531
531
|
***
|
|
532
532
|
|
|
533
|
-
### vaultConnector?
|
|
533
|
+
### vaultConnector? {#vaultconnector}
|
|
534
534
|
|
|
535
|
-
> `optional` **vaultConnector
|
|
535
|
+
> `optional` **vaultConnector?**: `string`
|
|
536
536
|
|
|
537
537
|
The type of the default vault connector: entity-storage, hashicorp.
|
|
538
538
|
|
|
539
539
|
***
|
|
540
540
|
|
|
541
|
-
### vaultPrefix?
|
|
541
|
+
### vaultPrefix? {#vaultprefix}
|
|
542
542
|
|
|
543
|
-
> `optional` **vaultPrefix
|
|
543
|
+
> `optional` **vaultPrefix?**: `string`
|
|
544
544
|
|
|
545
545
|
Prefix to prepend to entries in the vault.
|
|
546
546
|
|
|
547
547
|
***
|
|
548
548
|
|
|
549
|
-
### hashicorpVaultToken?
|
|
549
|
+
### hashicorpVaultToken? {#hashicorpvaulttoken}
|
|
550
550
|
|
|
551
|
-
> `optional` **hashicorpVaultToken
|
|
551
|
+
> `optional` **hashicorpVaultToken?**: `string`
|
|
552
552
|
|
|
553
553
|
Hashicorp Vault token.
|
|
554
554
|
|
|
555
555
|
***
|
|
556
556
|
|
|
557
|
-
### hashicorpVaultEndpoint?
|
|
557
|
+
### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
|
|
558
558
|
|
|
559
|
-
> `optional` **hashicorpVaultEndpoint
|
|
559
|
+
> `optional` **hashicorpVaultEndpoint?**: `string`
|
|
560
560
|
|
|
561
561
|
Hashicorp Vault endpoint.
|
|
562
562
|
|
|
563
563
|
***
|
|
564
564
|
|
|
565
|
-
### loggingConnector?
|
|
565
|
+
### loggingConnector? {#loggingconnector}
|
|
566
566
|
|
|
567
|
-
> `optional` **loggingConnector
|
|
567
|
+
> `optional` **loggingConnector?**: `string`
|
|
568
568
|
|
|
569
569
|
The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
570
570
|
|
|
571
571
|
***
|
|
572
572
|
|
|
573
|
-
### eventBusConnector?
|
|
573
|
+
### eventBusConnector? {#eventbusconnector}
|
|
574
574
|
|
|
575
|
-
> `optional` **eventBusConnector
|
|
575
|
+
> `optional` **eventBusConnector?**: `string`
|
|
576
576
|
|
|
577
577
|
The type of event bus connector: local.
|
|
578
578
|
|
|
579
579
|
***
|
|
580
580
|
|
|
581
|
-
### eventBusComponent?
|
|
581
|
+
### eventBusComponent? {#eventbuscomponent}
|
|
582
582
|
|
|
583
|
-
> `optional` **eventBusComponent
|
|
583
|
+
> `optional` **eventBusComponent?**: `string`
|
|
584
584
|
|
|
585
585
|
The type of event bus component: service.
|
|
586
586
|
|
|
587
587
|
***
|
|
588
588
|
|
|
589
|
-
### messagingEnabled?
|
|
589
|
+
### messagingEnabled? {#messagingenabled}
|
|
590
590
|
|
|
591
|
-
> `optional` **messagingEnabled
|
|
591
|
+
> `optional` **messagingEnabled?**: `string`
|
|
592
592
|
|
|
593
593
|
Are the messaging components enabled, defaults to false.
|
|
594
594
|
|
|
595
595
|
***
|
|
596
596
|
|
|
597
|
-
### awsSesRegion?
|
|
597
|
+
### awsSesRegion? {#awssesregion}
|
|
598
598
|
|
|
599
|
-
> `optional` **awsSesRegion
|
|
599
|
+
> `optional` **awsSesRegion?**: `string`
|
|
600
600
|
|
|
601
601
|
AWS SES region.
|
|
602
602
|
|
|
603
603
|
***
|
|
604
604
|
|
|
605
|
-
### awsSesAuthMode?
|
|
605
|
+
### awsSesAuthMode? {#awssesauthmode}
|
|
606
606
|
|
|
607
|
-
> `optional` **awsSesAuthMode
|
|
607
|
+
> `optional` **awsSesAuthMode?**: `string`
|
|
608
608
|
|
|
609
609
|
AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
610
610
|
|
|
611
611
|
***
|
|
612
612
|
|
|
613
|
-
### awsSesSecretAccessKey?
|
|
613
|
+
### awsSesSecretAccessKey? {#awssessecretaccesskey}
|
|
614
614
|
|
|
615
|
-
> `optional` **awsSesSecretAccessKey
|
|
615
|
+
> `optional` **awsSesSecretAccessKey?**: `string`
|
|
616
616
|
|
|
617
617
|
AWS SES secret access key.
|
|
618
618
|
|
|
619
619
|
***
|
|
620
620
|
|
|
621
|
-
### awsSesAccessKeyId?
|
|
621
|
+
### awsSesAccessKeyId? {#awssesaccesskeyid}
|
|
622
622
|
|
|
623
|
-
> `optional` **awsSesAccessKeyId
|
|
623
|
+
> `optional` **awsSesAccessKeyId?**: `string`
|
|
624
624
|
|
|
625
625
|
AWS SES access key id.
|
|
626
626
|
|
|
627
627
|
***
|
|
628
628
|
|
|
629
|
-
### awsSesEndpoint?
|
|
629
|
+
### awsSesEndpoint? {#awssesendpoint}
|
|
630
630
|
|
|
631
|
-
> `optional` **awsSesEndpoint
|
|
631
|
+
> `optional` **awsSesEndpoint?**: `string`
|
|
632
632
|
|
|
633
633
|
AWS SES endpoint.
|
|
634
634
|
|
|
635
635
|
***
|
|
636
636
|
|
|
637
|
-
### awsMessagingPushNotificationApplications?
|
|
637
|
+
### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
|
|
638
638
|
|
|
639
|
-
> `optional` **awsMessagingPushNotificationApplications
|
|
639
|
+
> `optional` **awsMessagingPushNotificationApplications?**: `string`
|
|
640
640
|
|
|
641
641
|
The applications for the push notifications reference a separate json with @json: prefix.
|
|
642
642
|
|
|
643
643
|
***
|
|
644
644
|
|
|
645
|
-
### messagingEmailConnector?
|
|
645
|
+
### messagingEmailConnector? {#messagingemailconnector}
|
|
646
646
|
|
|
647
|
-
> `optional` **messagingEmailConnector
|
|
647
|
+
> `optional` **messagingEmailConnector?**: `string`
|
|
648
648
|
|
|
649
649
|
The type of messaging email connector: entity-storage, aws.
|
|
650
650
|
|
|
651
651
|
***
|
|
652
652
|
|
|
653
|
-
### messagingSmsConnector?
|
|
653
|
+
### messagingSmsConnector? {#messagingsmsconnector}
|
|
654
654
|
|
|
655
|
-
> `optional` **messagingSmsConnector
|
|
655
|
+
> `optional` **messagingSmsConnector?**: `string`
|
|
656
656
|
|
|
657
657
|
The type of messaging sms connector: entity-storage, aws.
|
|
658
658
|
|
|
659
659
|
***
|
|
660
660
|
|
|
661
|
-
### messagingPushNotificationConnector?
|
|
661
|
+
### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
|
|
662
662
|
|
|
663
|
-
> `optional` **messagingPushNotificationConnector
|
|
663
|
+
> `optional` **messagingPushNotificationConnector?**: `string`
|
|
664
664
|
|
|
665
665
|
The type of messaging push notification connector: entity-storage, aws.
|
|
666
666
|
|
|
667
667
|
***
|
|
668
668
|
|
|
669
|
-
### telemetryConnector?
|
|
669
|
+
### telemetryConnector? {#telemetryconnector}
|
|
670
670
|
|
|
671
|
-
> `optional` **telemetryConnector
|
|
671
|
+
> `optional` **telemetryConnector?**: `string`
|
|
672
672
|
|
|
673
673
|
The type of telemetry connector: entity-storage.
|
|
674
674
|
|
|
675
675
|
***
|
|
676
676
|
|
|
677
|
-
### faucetConnector?
|
|
677
|
+
### faucetConnector? {#faucetconnector}
|
|
678
678
|
|
|
679
|
-
> `optional` **faucetConnector
|
|
679
|
+
> `optional` **faucetConnector?**: `string`
|
|
680
680
|
|
|
681
681
|
The type of faucet connector: entity-storage, iota.
|
|
682
682
|
|
|
683
683
|
***
|
|
684
684
|
|
|
685
|
-
### walletConnector?
|
|
685
|
+
### walletConnector? {#walletconnector}
|
|
686
686
|
|
|
687
|
-
> `optional` **walletConnector
|
|
687
|
+
> `optional` **walletConnector?**: `string`
|
|
688
688
|
|
|
689
689
|
The type of wallet connector: entity-storage, iota.
|
|
690
690
|
|
|
691
691
|
***
|
|
692
692
|
|
|
693
|
-
### nftConnector?
|
|
693
|
+
### nftConnector? {#nftconnector}
|
|
694
694
|
|
|
695
|
-
> `optional` **nftConnector
|
|
695
|
+
> `optional` **nftConnector?**: `string`
|
|
696
696
|
|
|
697
697
|
The type of NFT connector: entity-storage, iota.
|
|
698
698
|
|
|
699
699
|
***
|
|
700
700
|
|
|
701
|
-
### identityConnector?
|
|
701
|
+
### identityConnector? {#identityconnector}
|
|
702
702
|
|
|
703
|
-
> `optional` **identityConnector
|
|
703
|
+
> `optional` **identityConnector?**: `string`
|
|
704
704
|
|
|
705
705
|
The type of identity connector: entity-storage, iota.
|
|
706
706
|
|
|
707
707
|
***
|
|
708
708
|
|
|
709
|
-
### identityWalletAddressIndex?
|
|
709
|
+
### identityWalletAddressIndex? {#identitywalletaddressindex}
|
|
710
710
|
|
|
711
|
-
> `optional` **identityWalletAddressIndex
|
|
711
|
+
> `optional` **identityWalletAddressIndex?**: `string`
|
|
712
712
|
|
|
713
713
|
The index of the wallet address to use, defaults to 0.
|
|
714
714
|
|
|
715
715
|
***
|
|
716
716
|
|
|
717
|
-
### identityResolverConnector?
|
|
717
|
+
### identityResolverConnector? {#identityresolverconnector}
|
|
718
718
|
|
|
719
|
-
> `optional` **identityResolverConnector
|
|
719
|
+
> `optional` **identityResolverConnector?**: `string`
|
|
720
720
|
|
|
721
721
|
The type of identity resolver connector: entity-storage, iota.
|
|
722
722
|
|
|
723
723
|
***
|
|
724
724
|
|
|
725
|
-
### verifiableStorageConnector?
|
|
725
|
+
### verifiableStorageConnector? {#verifiablestorageconnector}
|
|
726
726
|
|
|
727
|
-
> `optional` **verifiableStorageConnector
|
|
727
|
+
> `optional` **verifiableStorageConnector?**: `string`
|
|
728
728
|
|
|
729
729
|
The type of verifiable storage connector: entity-storage, iota.
|
|
730
730
|
|
|
731
731
|
***
|
|
732
732
|
|
|
733
|
-
### iotaFaucetEndpoint?
|
|
733
|
+
### iotaFaucetEndpoint? {#iotafaucetendpoint}
|
|
734
734
|
|
|
735
|
-
> `optional` **iotaFaucetEndpoint
|
|
735
|
+
> `optional` **iotaFaucetEndpoint?**: `string`
|
|
736
736
|
|
|
737
737
|
IOTA Faucet Endpoint.
|
|
738
738
|
|
|
739
739
|
***
|
|
740
740
|
|
|
741
|
-
### iotaNodeEndpoint?
|
|
741
|
+
### iotaNodeEndpoint? {#iotanodeendpoint}
|
|
742
742
|
|
|
743
|
-
> `optional` **iotaNodeEndpoint
|
|
743
|
+
> `optional` **iotaNodeEndpoint?**: `string`
|
|
744
744
|
|
|
745
745
|
IOTA Node Endpoint.
|
|
746
746
|
|
|
747
747
|
***
|
|
748
748
|
|
|
749
|
-
### iotaNetwork?
|
|
749
|
+
### iotaNetwork? {#iotanetwork}
|
|
750
750
|
|
|
751
|
-
> `optional` **iotaNetwork
|
|
751
|
+
> `optional` **iotaNetwork?**: `string`
|
|
752
752
|
|
|
753
753
|
IOTA network.
|
|
754
754
|
|
|
755
755
|
***
|
|
756
756
|
|
|
757
|
-
### iotaCoinType?
|
|
757
|
+
### iotaCoinType? {#iotacointype}
|
|
758
758
|
|
|
759
|
-
> `optional` **iotaCoinType
|
|
759
|
+
> `optional` **iotaCoinType?**: `string`
|
|
760
760
|
|
|
761
761
|
IOTA coin type.
|
|
762
762
|
|
|
763
763
|
***
|
|
764
764
|
|
|
765
|
-
### iotaExplorerEndpoint?
|
|
765
|
+
### iotaExplorerEndpoint? {#iotaexplorerendpoint}
|
|
766
766
|
|
|
767
|
-
> `optional` **iotaExplorerEndpoint
|
|
767
|
+
> `optional` **iotaExplorerEndpoint?**: `string`
|
|
768
768
|
|
|
769
769
|
IOTA Explorer Endpoint.
|
|
770
770
|
|
|
771
771
|
***
|
|
772
772
|
|
|
773
|
-
### iotaGasStationEndpoint?
|
|
773
|
+
### iotaGasStationEndpoint? {#iotagasstationendpoint}
|
|
774
774
|
|
|
775
|
-
> `optional` **iotaGasStationEndpoint
|
|
775
|
+
> `optional` **iotaGasStationEndpoint?**: `string`
|
|
776
776
|
|
|
777
777
|
IOTA Gas Station Endpoint.
|
|
778
778
|
|
|
779
779
|
***
|
|
780
780
|
|
|
781
|
-
### iotaGasStationAuthToken?
|
|
781
|
+
### iotaGasStationAuthToken? {#iotagasstationauthtoken}
|
|
782
782
|
|
|
783
|
-
> `optional` **iotaGasStationAuthToken
|
|
783
|
+
> `optional` **iotaGasStationAuthToken?**: `string`
|
|
784
784
|
|
|
785
785
|
IOTA Gas Station Authentication Token.
|
|
786
786
|
|
|
787
787
|
***
|
|
788
788
|
|
|
789
|
-
### universalResolverEndpoint?
|
|
789
|
+
### universalResolverEndpoint? {#universalresolverendpoint}
|
|
790
790
|
|
|
791
|
-
> `optional` **universalResolverEndpoint
|
|
791
|
+
> `optional` **universalResolverEndpoint?**: `string`
|
|
792
792
|
|
|
793
793
|
Universal Resolver Endpoint.
|
|
794
794
|
|
|
795
795
|
***
|
|
796
796
|
|
|
797
|
-
### identityProfileConnector?
|
|
797
|
+
### identityProfileConnector? {#identityprofileconnector}
|
|
798
798
|
|
|
799
|
-
> `optional` **identityProfileConnector
|
|
799
|
+
> `optional` **identityProfileConnector?**: `string`
|
|
800
800
|
|
|
801
801
|
The type of identity profile connector: entity-storage.
|
|
802
802
|
|
|
803
803
|
***
|
|
804
804
|
|
|
805
|
-
### immutableProofVerificationMethodId?
|
|
805
|
+
### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
|
|
806
806
|
|
|
807
|
-
> `optional` **immutableProofVerificationMethodId
|
|
807
|
+
> `optional` **immutableProofVerificationMethodId?**: `string`
|
|
808
808
|
|
|
809
809
|
The identity verification method id to use with immutable proofs.
|
|
810
810
|
|
|
811
811
|
***
|
|
812
812
|
|
|
813
|
-
### attestationConnector?
|
|
813
|
+
### attestationConnector? {#attestationconnector}
|
|
814
814
|
|
|
815
|
-
> `optional` **attestationConnector
|
|
815
|
+
> `optional` **attestationConnector?**: `string`
|
|
816
816
|
|
|
817
817
|
The type of attestation connector: entity-storage, iota.
|
|
818
818
|
|
|
819
819
|
***
|
|
820
820
|
|
|
821
|
-
### attestationVerificationMethodId?
|
|
821
|
+
### attestationVerificationMethodId? {#attestationverificationmethodid}
|
|
822
822
|
|
|
823
|
-
> `optional` **attestationVerificationMethodId
|
|
823
|
+
> `optional` **attestationVerificationMethodId?**: `string`
|
|
824
824
|
|
|
825
825
|
The identity verification method id to use with attestation.
|
|
826
826
|
|
|
827
827
|
***
|
|
828
828
|
|
|
829
|
-
### dataProcessingEnabled?
|
|
829
|
+
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
830
830
|
|
|
831
|
-
> `optional` **dataProcessingEnabled
|
|
831
|
+
> `optional` **dataProcessingEnabled?**: `string`
|
|
832
832
|
|
|
833
833
|
Is the data processing enabled, defaults to false.
|
|
834
834
|
|
|
835
835
|
***
|
|
836
836
|
|
|
837
|
-
### dataConverterConnectors?
|
|
837
|
+
### dataConverterConnectors? {#dataconverterconnectors}
|
|
838
838
|
|
|
839
|
-
> `optional` **dataConverterConnectors
|
|
839
|
+
> `optional` **dataConverterConnectors?**: `string`
|
|
840
840
|
|
|
841
841
|
The type of the default data converters, can be a comma separated list: json, xml.
|
|
842
842
|
|
|
843
843
|
***
|
|
844
844
|
|
|
845
|
-
### dataExtractorConnectors?
|
|
845
|
+
### dataExtractorConnectors? {#dataextractorconnectors}
|
|
846
846
|
|
|
847
|
-
> `optional` **dataExtractorConnectors
|
|
847
|
+
> `optional` **dataExtractorConnectors?**: `string`
|
|
848
848
|
|
|
849
849
|
The type of the default data extractor, can be a comma separated list: json-path.
|
|
850
850
|
|
|
851
851
|
***
|
|
852
852
|
|
|
853
|
-
### auditableItemGraphEnabled?
|
|
853
|
+
### auditableItemGraphEnabled? {#auditableitemgraphenabled}
|
|
854
854
|
|
|
855
|
-
> `optional` **auditableItemGraphEnabled
|
|
855
|
+
> `optional` **auditableItemGraphEnabled?**: `string`
|
|
856
856
|
|
|
857
857
|
Is the auditable item graph enabled, defaults to false.
|
|
858
858
|
|
|
859
859
|
***
|
|
860
860
|
|
|
861
|
-
### auditableItemStreamEnabled?
|
|
861
|
+
### auditableItemStreamEnabled? {#auditableitemstreamenabled}
|
|
862
862
|
|
|
863
|
-
> `optional` **auditableItemStreamEnabled
|
|
863
|
+
> `optional` **auditableItemStreamEnabled?**: `string`
|
|
864
864
|
|
|
865
865
|
Is the auditable item stream enabled, defaults to false.
|
|
866
866
|
|
|
867
867
|
***
|
|
868
868
|
|
|
869
|
-
### documentManagementEnabled?
|
|
869
|
+
### documentManagementEnabled? {#documentmanagementenabled}
|
|
870
870
|
|
|
871
|
-
> `optional` **documentManagementEnabled
|
|
871
|
+
> `optional` **documentManagementEnabled?**: `string`
|
|
872
872
|
|
|
873
873
|
Is the document management enabled, defaults to false.
|
|
874
874
|
|
|
875
875
|
***
|
|
876
876
|
|
|
877
|
-
### synchronisedStorageEnabled?
|
|
877
|
+
### synchronisedStorageEnabled? {#synchronisedstorageenabled}
|
|
878
878
|
|
|
879
|
-
> `optional` **synchronisedStorageEnabled
|
|
879
|
+
> `optional` **synchronisedStorageEnabled?**: `string`
|
|
880
880
|
|
|
881
881
|
Is the synchronised storage enabled, defaults to false.
|
|
882
882
|
|
|
883
883
|
***
|
|
884
884
|
|
|
885
|
-
### synchronisedStorageTrustedUrl?
|
|
885
|
+
### synchronisedStorageTrustedUrl? {#synchronisedstoragetrustedurl}
|
|
886
886
|
|
|
887
|
-
> `optional` **synchronisedStorageTrustedUrl
|
|
887
|
+
> `optional` **synchronisedStorageTrustedUrl?**: `string`
|
|
888
888
|
|
|
889
889
|
Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
|
|
890
890
|
|
|
891
891
|
***
|
|
892
892
|
|
|
893
|
-
### synchronisedStorageVerifiableStorageKeyId?
|
|
893
|
+
### synchronisedStorageVerifiableStorageKeyId? {#synchronisedstorageverifiablestoragekeyid}
|
|
894
894
|
|
|
895
|
-
> `optional` **synchronisedStorageVerifiableStorageKeyId
|
|
895
|
+
> `optional` **synchronisedStorageVerifiableStorageKeyId?**: `string`
|
|
896
896
|
|
|
897
897
|
The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
|
|
898
898
|
This only required if using a custom verifiable storage item, otherwise it will default to the network name.
|
|
899
899
|
|
|
900
900
|
***
|
|
901
901
|
|
|
902
|
-
### synchronisedStorageBlobStorageEncryptionKeyId?
|
|
902
|
+
### synchronisedStorageBlobStorageEncryptionKeyId? {#synchronisedstorageblobstorageencryptionkeyid}
|
|
903
903
|
|
|
904
|
-
> `optional` **synchronisedStorageBlobStorageEncryptionKeyId
|
|
904
|
+
> `optional` **synchronisedStorageBlobStorageEncryptionKeyId?**: `string`
|
|
905
905
|
|
|
906
906
|
The key from the vault which is used to encrypt the synchronised storage blobs.
|
|
907
907
|
Only required for trusted nodes, as regular nodes will request from the trusted nodes.
|
|
@@ -909,220 +909,256 @@ Defaults to synchronised-storage-blob-encryption
|
|
|
909
909
|
|
|
910
910
|
***
|
|
911
911
|
|
|
912
|
-
### synchronisedStorageBlobStorageKey?
|
|
912
|
+
### synchronisedStorageBlobStorageKey? {#synchronisedstorageblobstoragekey}
|
|
913
913
|
|
|
914
|
-
> `optional` **synchronisedStorageBlobStorageKey
|
|
914
|
+
> `optional` **synchronisedStorageBlobStorageKey?**: `string`
|
|
915
915
|
|
|
916
916
|
The key used for blob encryption, should be ChaCha20Poly1305 encoded as base64.
|
|
917
917
|
Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
918
918
|
|
|
919
919
|
***
|
|
920
920
|
|
|
921
|
-
### synchronisedStorageEntityUpdateIntervalMinutes?
|
|
921
|
+
### synchronisedStorageEntityUpdateIntervalMinutes? {#synchronisedstorageentityupdateintervalminutes}
|
|
922
922
|
|
|
923
|
-
> `optional` **synchronisedStorageEntityUpdateIntervalMinutes
|
|
923
|
+
> `optional` **synchronisedStorageEntityUpdateIntervalMinutes?**: `string`
|
|
924
924
|
|
|
925
925
|
How often to check for entity updates in minutes.
|
|
926
926
|
|
|
927
|
+
#### Default
|
|
928
|
+
|
|
929
|
+
```ts
|
|
930
|
+
5
|
|
931
|
+
```
|
|
932
|
+
|
|
927
933
|
***
|
|
928
934
|
|
|
929
|
-
### synchronisedStorageConsolidationIntervalMinutes?
|
|
935
|
+
### synchronisedStorageConsolidationIntervalMinutes? {#synchronisedstorageconsolidationintervalminutes}
|
|
930
936
|
|
|
931
|
-
> `optional` **synchronisedStorageConsolidationIntervalMinutes
|
|
937
|
+
> `optional` **synchronisedStorageConsolidationIntervalMinutes?**: `string`
|
|
932
938
|
|
|
933
939
|
Interval to perform consolidation of changesets, only used if this is a trusted node.
|
|
934
940
|
|
|
941
|
+
#### Default
|
|
942
|
+
|
|
943
|
+
```ts
|
|
944
|
+
60
|
|
945
|
+
```
|
|
946
|
+
|
|
935
947
|
***
|
|
936
948
|
|
|
937
|
-
### synchronisedStorageConsolidationBatchSize?
|
|
949
|
+
### synchronisedStorageConsolidationBatchSize? {#synchronisedstorageconsolidationbatchsize}
|
|
938
950
|
|
|
939
|
-
> `optional` **synchronisedStorageConsolidationBatchSize
|
|
951
|
+
> `optional` **synchronisedStorageConsolidationBatchSize?**: `string`
|
|
940
952
|
|
|
941
953
|
The number of entities to process in a single consolidation batch, only used if this is a trusted node.
|
|
942
954
|
|
|
955
|
+
#### Default
|
|
956
|
+
|
|
957
|
+
```ts
|
|
958
|
+
1000
|
|
959
|
+
```
|
|
960
|
+
|
|
943
961
|
***
|
|
944
962
|
|
|
945
|
-
### synchronisedStorageMaxConsolidations?
|
|
963
|
+
### synchronisedStorageMaxConsolidations? {#synchronisedstoragemaxconsolidations}
|
|
946
964
|
|
|
947
|
-
> `optional` **synchronisedStorageMaxConsolidations
|
|
965
|
+
> `optional` **synchronisedStorageMaxConsolidations?**: `string`
|
|
948
966
|
|
|
949
967
|
The maximum number of consolidations to keep in storage, only used if this is a trusted node.
|
|
950
968
|
|
|
969
|
+
#### Default
|
|
970
|
+
|
|
971
|
+
```ts
|
|
972
|
+
5
|
|
973
|
+
```
|
|
974
|
+
|
|
951
975
|
***
|
|
952
976
|
|
|
953
|
-
### federatedCatalogueEnabled?
|
|
977
|
+
### federatedCatalogueEnabled? {#federatedcatalogueenabled}
|
|
954
978
|
|
|
955
|
-
> `optional` **federatedCatalogueEnabled
|
|
979
|
+
> `optional` **federatedCatalogueEnabled?**: `string`
|
|
956
980
|
|
|
957
981
|
Is the federated catalogue enabled, defaults to false.
|
|
958
982
|
|
|
959
983
|
***
|
|
960
984
|
|
|
961
|
-
### federatedCatalogueFilters?
|
|
985
|
+
### federatedCatalogueFilters? {#federatedcataloguefilters}
|
|
962
986
|
|
|
963
|
-
> `optional` **federatedCatalogueFilters
|
|
987
|
+
> `optional` **federatedCatalogueFilters?**: `string`
|
|
964
988
|
|
|
965
989
|
Federated catalog filters, command separated list of filters to add.
|
|
966
990
|
|
|
967
991
|
***
|
|
968
992
|
|
|
969
|
-
### trustEnabled?
|
|
993
|
+
### trustEnabled? {#trustenabled}
|
|
970
994
|
|
|
971
|
-
> `optional` **trustEnabled
|
|
995
|
+
> `optional` **trustEnabled?**: `string`
|
|
972
996
|
|
|
973
997
|
Is the trust management enabled, defaults to false.
|
|
974
998
|
|
|
975
999
|
***
|
|
976
1000
|
|
|
977
|
-
### trustGenerators?
|
|
1001
|
+
### trustGenerators? {#trustgenerators}
|
|
978
1002
|
|
|
979
|
-
> `optional` **trustGenerators
|
|
1003
|
+
> `optional` **trustGenerators?**: `string`
|
|
980
1004
|
|
|
981
1005
|
The trust generators to add to the factory, comma separated list.
|
|
982
1006
|
|
|
983
1007
|
***
|
|
984
1008
|
|
|
985
|
-
### trustVerifiers?
|
|
1009
|
+
### trustVerifiers? {#trustverifiers}
|
|
986
1010
|
|
|
987
|
-
> `optional` **trustVerifiers
|
|
1011
|
+
> `optional` **trustVerifiers?**: `string`
|
|
988
1012
|
|
|
989
1013
|
The trust verifiers to add to the factory, comma separated list.
|
|
990
1014
|
|
|
991
1015
|
***
|
|
992
1016
|
|
|
993
|
-
### trustVerificationMethodId?
|
|
1017
|
+
### trustVerificationMethodId? {#trustverificationmethodid}
|
|
994
1018
|
|
|
995
|
-
> `optional` **trustVerificationMethodId
|
|
1019
|
+
> `optional` **trustVerificationMethodId?**: `string`
|
|
996
1020
|
|
|
997
1021
|
The verification method to use for trust identities.
|
|
998
1022
|
Defaults to trust-assertion.
|
|
999
1023
|
|
|
1000
1024
|
***
|
|
1001
1025
|
|
|
1002
|
-
### trustJwtTtlSeconds?
|
|
1026
|
+
### trustJwtTtlSeconds? {#trustjwtttlseconds}
|
|
1003
1027
|
|
|
1004
|
-
> `optional` **trustJwtTtlSeconds
|
|
1028
|
+
> `optional` **trustJwtTtlSeconds?**: `string`
|
|
1005
1029
|
|
|
1006
1030
|
The trust time to live for generating JWTs.
|
|
1007
1031
|
Defaults to undefined for never expiring.
|
|
1008
1032
|
|
|
1009
1033
|
***
|
|
1010
1034
|
|
|
1011
|
-
### rightsManagementEnabled?
|
|
1035
|
+
### rightsManagementEnabled? {#rightsmanagementenabled}
|
|
1012
1036
|
|
|
1013
|
-
> `optional` **rightsManagementEnabled
|
|
1037
|
+
> `optional` **rightsManagementEnabled?**: `string`
|
|
1014
1038
|
|
|
1015
1039
|
Is the rights management enabled, defaults to false.
|
|
1016
1040
|
|
|
1017
1041
|
***
|
|
1018
1042
|
|
|
1019
|
-
### rightsManagementCallbackPath?
|
|
1043
|
+
### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
|
|
1020
1044
|
|
|
1021
|
-
> `optional` **rightsManagementCallbackPath
|
|
1045
|
+
> `optional` **rightsManagementCallbackPath?**: `string`
|
|
1022
1046
|
|
|
1023
1047
|
What is the callback path for rights management negotiations, will be combined with hosting public url e.g. /callback.
|
|
1024
1048
|
|
|
1025
1049
|
***
|
|
1026
1050
|
|
|
1027
|
-
### rightsManagementPolicyInformationSources?
|
|
1051
|
+
### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
|
|
1028
1052
|
|
|
1029
|
-
> `optional` **rightsManagementPolicyInformationSources
|
|
1053
|
+
> `optional` **rightsManagementPolicyInformationSources?**: `string`
|
|
1030
1054
|
|
|
1031
1055
|
The rights management policy information sources to add to the factory.
|
|
1032
1056
|
|
|
1033
1057
|
***
|
|
1034
1058
|
|
|
1035
|
-
### rightsManagementPolicyNegotiators?
|
|
1059
|
+
### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
|
|
1036
1060
|
|
|
1037
|
-
> `optional` **rightsManagementPolicyNegotiators
|
|
1061
|
+
> `optional` **rightsManagementPolicyNegotiators?**: `string`
|
|
1038
1062
|
|
|
1039
1063
|
The rights management policy negotiators sources to add to the factory.
|
|
1040
1064
|
|
|
1041
1065
|
***
|
|
1042
1066
|
|
|
1043
|
-
### rightsManagementPolicyRequesters?
|
|
1067
|
+
### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
|
|
1044
1068
|
|
|
1045
|
-
> `optional` **rightsManagementPolicyRequesters
|
|
1069
|
+
> `optional` **rightsManagementPolicyRequesters?**: `string`
|
|
1046
1070
|
|
|
1047
1071
|
The rights management policy requesters to add to the factory.
|
|
1048
1072
|
|
|
1049
1073
|
***
|
|
1050
1074
|
|
|
1051
|
-
### rightsManagementPolicyExecutionActions?
|
|
1075
|
+
### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
|
|
1052
1076
|
|
|
1053
|
-
> `optional` **rightsManagementPolicyExecutionActions
|
|
1077
|
+
> `optional` **rightsManagementPolicyExecutionActions?**: `string`
|
|
1054
1078
|
|
|
1055
1079
|
The rights management policy execution actions to add to the factory.
|
|
1056
1080
|
|
|
1057
1081
|
***
|
|
1058
1082
|
|
|
1059
|
-
### rightsManagementPolicyEnforcementProcessors?
|
|
1083
|
+
### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
|
|
1060
1084
|
|
|
1061
|
-
> `optional` **rightsManagementPolicyEnforcementProcessors
|
|
1085
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
|
|
1062
1086
|
|
|
1063
1087
|
The rights management policy enforcement processors to add to the factory.
|
|
1064
1088
|
|
|
1065
1089
|
***
|
|
1066
1090
|
|
|
1067
|
-
### rightsManagementPolicyArbiters?
|
|
1091
|
+
### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
|
|
1068
1092
|
|
|
1069
|
-
> `optional` **rightsManagementPolicyArbiters
|
|
1093
|
+
> `optional` **rightsManagementPolicyArbiters?**: `string`
|
|
1070
1094
|
|
|
1071
1095
|
The rights management policy arbiters to add to the factory.
|
|
1072
1096
|
|
|
1073
1097
|
***
|
|
1074
1098
|
|
|
1075
|
-
### rightsManagementPolicyObligationEnforcers?
|
|
1099
|
+
### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
|
|
1076
1100
|
|
|
1077
|
-
> `optional` **rightsManagementPolicyObligationEnforcers
|
|
1101
|
+
> `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
|
|
1078
1102
|
|
|
1079
1103
|
The rights management policy obligation enforcers to add to the factory.
|
|
1080
1104
|
|
|
1081
1105
|
***
|
|
1082
1106
|
|
|
1083
|
-
### backgroundTasksEnabled?
|
|
1107
|
+
### backgroundTasksEnabled? {#backgroundtasksenabled}
|
|
1084
1108
|
|
|
1085
|
-
> `optional` **backgroundTasksEnabled
|
|
1109
|
+
> `optional` **backgroundTasksEnabled?**: `string`
|
|
1086
1110
|
|
|
1087
1111
|
Are background tasks enabled, defaults to false.
|
|
1088
1112
|
|
|
1089
1113
|
***
|
|
1090
1114
|
|
|
1091
|
-
### taskSchedulerEnabled?
|
|
1115
|
+
### taskSchedulerEnabled? {#taskschedulerenabled}
|
|
1092
1116
|
|
|
1093
|
-
> `optional` **taskSchedulerEnabled
|
|
1117
|
+
> `optional` **taskSchedulerEnabled?**: `string`
|
|
1094
1118
|
|
|
1095
1119
|
Is the task scheduler enabled, defaults to false.
|
|
1096
1120
|
|
|
1097
1121
|
***
|
|
1098
1122
|
|
|
1099
|
-
### dataspaceEnabled?
|
|
1123
|
+
### dataspaceEnabled? {#dataspaceenabled}
|
|
1100
1124
|
|
|
1101
|
-
> `optional` **dataspaceEnabled
|
|
1125
|
+
> `optional` **dataspaceEnabled?**: `string`
|
|
1102
1126
|
|
|
1103
1127
|
Is the dataspace enabled, defaults to false.
|
|
1104
1128
|
|
|
1105
1129
|
***
|
|
1106
1130
|
|
|
1107
|
-
### dataspaceRetainActivityLogsFor?
|
|
1131
|
+
### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
|
|
1108
1132
|
|
|
1109
|
-
> `optional` **dataspaceRetainActivityLogsFor
|
|
1133
|
+
> `optional` **dataspaceRetainActivityLogsFor?**: `string`
|
|
1110
1134
|
|
|
1111
1135
|
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1112
1136
|
|
|
1137
|
+
#### Default
|
|
1138
|
+
|
|
1139
|
+
```ts
|
|
1140
|
+
10
|
|
1141
|
+
```
|
|
1142
|
+
|
|
1113
1143
|
***
|
|
1114
1144
|
|
|
1115
|
-
### dataspaceActivityLogsCleanUpInterval?
|
|
1145
|
+
### dataspaceActivityLogsCleanUpInterval? {#dataspaceactivitylogscleanupinterval}
|
|
1116
1146
|
|
|
1117
|
-
> `optional` **dataspaceActivityLogsCleanUpInterval
|
|
1147
|
+
> `optional` **dataspaceActivityLogsCleanUpInterval?**: `string`
|
|
1118
1148
|
|
|
1119
1149
|
The interval for cleaning up the activity logs.
|
|
1120
1150
|
|
|
1151
|
+
#### Default
|
|
1152
|
+
|
|
1153
|
+
```ts
|
|
1154
|
+
60
|
|
1155
|
+
```
|
|
1156
|
+
|
|
1121
1157
|
***
|
|
1122
1158
|
|
|
1123
|
-
### dataspaceDataPlanePath?
|
|
1159
|
+
### dataspaceDataPlanePath? {#dataspacedataplanepath}
|
|
1124
1160
|
|
|
1125
|
-
> `optional` **dataspaceDataPlanePath
|
|
1161
|
+
> `optional` **dataspaceDataPlanePath?**: `string`
|
|
1126
1162
|
|
|
1127
1163
|
The data plane path for PULL transfers (path only, not full URL).
|
|
1128
1164
|
Will be combined with public origin from hosting component.
|
|
@@ -1131,8 +1167,8 @@ Example: "dataspace/entities"
|
|
|
1131
1167
|
|
|
1132
1168
|
***
|
|
1133
1169
|
|
|
1134
|
-
### extensions?
|
|
1170
|
+
### extensions? {#extensions}
|
|
1135
1171
|
|
|
1136
|
-
> `optional` **extensions
|
|
1172
|
+
> `optional` **extensions?**: `string`
|
|
1137
1173
|
|
|
1138
1174
|
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|