@twin.org/node-core 0.0.3-next.3 → 0.0.3-next.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/es/builders/engineEnvBuilder.js +194 -123
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +51 -23
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/cli.js +247 -0
- package/dist/es/cli.js.map +1 -0
- package/dist/es/commands/bootstrapLegacy.js +186 -0
- package/dist/es/commands/bootstrapLegacy.js.map +1 -0
- package/dist/es/commands/help.js +85 -0
- package/dist/es/commands/help.js.map +1 -0
- package/dist/es/commands/identityCreate.js +316 -0
- package/dist/es/commands/identityCreate.js.map +1 -0
- package/dist/es/commands/identityImports.js +82 -0
- package/dist/es/commands/identityImports.js.map +1 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js +146 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodCreate.js +228 -0
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodImport.js +126 -0
- package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
- package/dist/es/commands/nodeSetIdentity.js +64 -0
- package/dist/es/commands/nodeSetIdentity.js.map +1 -0
- package/dist/es/commands/nodeSetTenant.js +68 -0
- package/dist/es/commands/nodeSetTenant.js.map +1 -0
- package/dist/es/commands/tenantCreate.js +139 -0
- package/dist/es/commands/tenantCreate.js.map +1 -0
- package/dist/es/commands/tenantImport.js +97 -0
- package/dist/es/commands/tenantImport.js.map +1 -0
- package/dist/es/commands/tenantUpdate.js +94 -0
- package/dist/es/commands/tenantUpdate.js.map +1 -0
- package/dist/es/commands/userCreate.js +212 -0
- package/dist/es/commands/userCreate.js.map +1 -0
- package/dist/es/commands/userUpdate.js +132 -0
- package/dist/es/commands/userUpdate.js.map +1 -0
- package/dist/es/commands/vaultKeyCreate.js +191 -0
- package/dist/es/commands/vaultKeyCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyImport.js +104 -0
- package/dist/es/commands/vaultKeyImport.js.map +1 -0
- package/dist/es/defaults.js +17 -1
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/index.js +7 -3
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/ICliArgs.js +4 -0
- package/dist/es/models/ICliArgs.js.map +1 -0
- package/dist/es/models/ICliCommand.js +2 -0
- package/dist/es/models/ICliCommand.js.map +1 -0
- package/dist/es/models/ICliCommandDefinition.js +2 -0
- package/dist/es/models/ICliCommandDefinition.js.map +1 -0
- package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
- package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeEngineState.js.map +1 -1
- package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeOptions.js.map +1 -1
- package/dist/es/models/cliCommandParamType.js +4 -0
- package/dist/es/models/cliCommandParamType.js.map +1 -0
- package/dist/es/node.js +84 -39
- package/dist/es/node.js.map +1 -1
- package/dist/es/start.js +139 -0
- package/dist/es/start.js.map +1 -0
- package/dist/es/utils.js +12 -22
- package/dist/es/utils.js.map +1 -1
- package/dist/types/builders/engineEnvBuilder.d.ts +1 -1
- package/dist/types/builders/engineServerEnvBuilder.d.ts +4 -2
- package/dist/types/cli.d.ts +56 -0
- package/dist/types/commands/bootstrapLegacy.d.ts +66 -0
- package/dist/types/commands/help.d.ts +23 -0
- package/dist/types/commands/identityCreate.d.ts +39 -0
- package/dist/types/commands/identityImports.d.ts +24 -0
- package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
- package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
- package/dist/types/commands/identityVerificationMethodImport.d.ts +31 -0
- package/dist/types/commands/nodeSetIdentity.d.ts +22 -0
- package/dist/types/commands/nodeSetTenant.d.ts +22 -0
- package/dist/types/commands/tenantCreate.d.ts +38 -0
- package/dist/types/commands/tenantImport.d.ts +26 -0
- package/dist/types/commands/tenantUpdate.d.ts +26 -0
- package/dist/types/commands/userCreate.d.ts +49 -0
- package/dist/types/commands/userUpdate.d.ts +38 -0
- package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
- package/dist/types/commands/vaultKeyImport.d.ts +28 -0
- package/dist/types/defaults.d.ts +9 -1
- package/dist/types/index.d.ts +7 -3
- package/dist/types/models/ICliArgs.d.ts +20 -0
- package/dist/types/models/ICliCommand.d.ts +17 -0
- package/dist/types/models/ICliCommandDefinition.d.ts +46 -0
- package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +72 -56
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +4 -0
- package/dist/types/models/INodeEngineState.d.ts +0 -8
- package/dist/types/models/INodeEnvironmentVariables.d.ts +0 -38
- package/dist/types/models/INodeOptions.d.ts +6 -2
- package/dist/types/models/cliCommandParamType.d.ts +4 -0
- package/dist/types/node.d.ts +5 -4
- package/dist/types/{server.d.ts → start.d.ts} +4 -2
- package/dist/types/utils.d.ts +6 -8
- package/docs/changelog.md +199 -1
- package/docs/examples.md +99 -1
- package/docs/reference/functions/buildConfiguration.md +1 -1
- package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
- package/docs/reference/functions/constructCliCommand.md +27 -0
- package/docs/reference/functions/executeCommand.md +29 -0
- package/docs/reference/functions/getEnvDefaults.md +19 -0
- package/docs/reference/functions/getScriptDirectory.md +19 -0
- package/docs/reference/functions/parseCommandLineArgs.md +19 -0
- package/docs/reference/functions/processEnvOptions.md +27 -0
- package/docs/reference/functions/registerCommands.md +9 -0
- package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
- package/docs/reference/functions/run.md +8 -2
- package/docs/reference/functions/start.md +9 -3
- package/docs/reference/functions/substituteEnvOptions.md +25 -0
- package/docs/reference/index.md +14 -12
- package/docs/reference/interfaces/ICacheMetadata.md +3 -3
- package/docs/reference/interfaces/ICliArgs.md +35 -0
- package/docs/reference/interfaces/ICliCommand.md +23 -0
- package/docs/reference/interfaces/ICliCommandDefinition.md +101 -0
- package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +349 -313
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +434 -370
- package/docs/reference/interfaces/IModuleProtocol.md +3 -3
- package/docs/reference/interfaces/INodeEngineState.md +4 -20
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +448 -464
- package/docs/reference/interfaces/INodeOptions.md +44 -36
- package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
- package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
- 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/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +3 -0
- package/locales/en.json +589 -30
- package/package.json +6 -4
- package/dist/es/bootstrap.js +0 -360
- package/dist/es/bootstrap.js.map +0 -1
- package/dist/es/identity.js +0 -169
- package/dist/es/identity.js.map +0 -1
- package/dist/es/models/nodeFeatures.js +0 -21
- package/dist/es/models/nodeFeatures.js.map +0 -1
- package/dist/es/server.js +0 -81
- package/dist/es/server.js.map +0 -1
- package/dist/types/bootstrap.d.ts +0 -68
- package/dist/types/identity.d.ts +0 -14
- package/dist/types/models/nodeFeatures.d.ts +0 -21
- package/docs/detailed-guide.md +0 -129
- package/docs/reference/functions/bootstrap.md +0 -29
- package/docs/reference/functions/bootstrapAuth.md +0 -35
- package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
- package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
- package/docs/reference/functions/bootstrapNodeAdminUser.md +0 -35
- package/docs/reference/functions/bootstrapNodeId.md +0 -35
- package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
- package/docs/reference/functions/bootstrapTenantId.md +0 -35
- package/docs/reference/functions/getFeatures.md +0 -19
- package/docs/reference/type-aliases/NodeFeatures.md +0 -5
- package/docs/reference/variables/NodeFeatures.md +0 -25
- package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
|
@@ -12,9 +12,9 @@ The engine server environment variables.
|
|
|
12
12
|
|
|
13
13
|
## Properties
|
|
14
14
|
|
|
15
|
-
### debug?
|
|
15
|
+
### debug? {#debug}
|
|
16
16
|
|
|
17
|
-
> `optional` **debug
|
|
17
|
+
> `optional` **debug?**: `string`
|
|
18
18
|
|
|
19
19
|
Start the engine in debug mode.
|
|
20
20
|
|
|
@@ -24,69 +24,69 @@ Start the engine in debug mode.
|
|
|
24
24
|
|
|
25
25
|
***
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### silent? {#silent}
|
|
28
28
|
|
|
29
|
-
> `optional` **
|
|
29
|
+
> `optional` **silent?**: `string`
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
Start the engine in silent mode.
|
|
32
32
|
|
|
33
33
|
#### Inherited from
|
|
34
34
|
|
|
35
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
35
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`silent`](IEngineEnvironmentVariables.md#silent)
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
39
|
-
###
|
|
39
|
+
### storageFileRoot? {#storagefileroot}
|
|
40
40
|
|
|
41
|
-
> `optional` **
|
|
41
|
+
> `optional` **storageFileRoot?**: `string`
|
|
42
42
|
|
|
43
|
-
The
|
|
43
|
+
The root directory for storing items like state file.
|
|
44
44
|
|
|
45
45
|
#### Inherited from
|
|
46
46
|
|
|
47
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
47
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`storageFileRoot`](IEngineEnvironmentVariables.md#storagefileroot)
|
|
48
48
|
|
|
49
49
|
***
|
|
50
50
|
|
|
51
|
-
###
|
|
51
|
+
### stateFilename? {#statefilename}
|
|
52
52
|
|
|
53
|
-
> `optional` **
|
|
53
|
+
> `optional` **stateFilename?**: `string`
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
The name of the state file.
|
|
56
56
|
|
|
57
57
|
#### Inherited from
|
|
58
58
|
|
|
59
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
59
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`stateFilename`](IEngineEnvironmentVariables.md#statefilename)
|
|
60
60
|
|
|
61
61
|
***
|
|
62
62
|
|
|
63
|
-
###
|
|
63
|
+
### nodeIdentityEnabled? {#nodeidentityenabled}
|
|
64
64
|
|
|
65
|
-
> `optional` **
|
|
65
|
+
> `optional` **nodeIdentityEnabled?**: `string`
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
Does the node have a unique ID, defaults to true.
|
|
68
68
|
|
|
69
69
|
#### Inherited from
|
|
70
70
|
|
|
71
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
71
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`nodeIdentityEnabled`](IEngineEnvironmentVariables.md#nodeidentityenabled)
|
|
72
72
|
|
|
73
73
|
***
|
|
74
74
|
|
|
75
|
-
###
|
|
75
|
+
### tenantEnabled? {#tenantenabled}
|
|
76
76
|
|
|
77
|
-
> `optional` **
|
|
77
|
+
> `optional` **tenantEnabled?**: `string`
|
|
78
78
|
|
|
79
|
-
|
|
79
|
+
Is multi-tenant support enabled, defaults to false.
|
|
80
80
|
|
|
81
81
|
#### Inherited from
|
|
82
82
|
|
|
83
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
83
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`tenantEnabled`](IEngineEnvironmentVariables.md#tenantenabled)
|
|
84
84
|
|
|
85
85
|
***
|
|
86
86
|
|
|
87
|
-
### entityStorageConnectorType?
|
|
87
|
+
### entityStorageConnectorType? {#entitystorageconnectortype}
|
|
88
88
|
|
|
89
|
-
> `optional` **entityStorageConnectorType
|
|
89
|
+
> `optional` **entityStorageConnectorType?**: `string`
|
|
90
90
|
|
|
91
91
|
The type of the entity storage to create, comma separate for more than one connector.
|
|
92
92
|
values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql
|
|
@@ -97,9 +97,9 @@ values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, m
|
|
|
97
97
|
|
|
98
98
|
***
|
|
99
99
|
|
|
100
|
-
### entityStorageConnectorDefault?
|
|
100
|
+
### entityStorageConnectorDefault? {#entitystorageconnectordefault}
|
|
101
101
|
|
|
102
|
-
> `optional` **entityStorageConnectorDefault
|
|
102
|
+
> `optional` **entityStorageConnectorDefault?**: `string`
|
|
103
103
|
|
|
104
104
|
The default entity storage connector to use, defaults to the first one in the list.
|
|
105
105
|
|
|
@@ -109,9 +109,9 @@ The default entity storage connector to use, defaults to the first one in the li
|
|
|
109
109
|
|
|
110
110
|
***
|
|
111
111
|
|
|
112
|
-
### entityStorageTablePrefix?
|
|
112
|
+
### entityStorageTablePrefix? {#entitystoragetableprefix}
|
|
113
113
|
|
|
114
|
-
> `optional` **entityStorageTablePrefix
|
|
114
|
+
> `optional` **entityStorageTablePrefix?**: `string`
|
|
115
115
|
|
|
116
116
|
A prefix for all the table in entity-storage, can be empty.
|
|
117
117
|
|
|
@@ -121,9 +121,9 @@ A prefix for all the table in entity-storage, can be empty.
|
|
|
121
121
|
|
|
122
122
|
***
|
|
123
123
|
|
|
124
|
-
### awsDynamodbAuthMode?
|
|
124
|
+
### awsDynamodbAuthMode? {#awsdynamodbauthmode}
|
|
125
125
|
|
|
126
|
-
> `optional` **awsDynamodbAuthMode
|
|
126
|
+
> `optional` **awsDynamodbAuthMode?**: `string`
|
|
127
127
|
|
|
128
128
|
AWS DynamoDB auth mode, either credentials or pod.
|
|
129
129
|
|
|
@@ -133,9 +133,9 @@ AWS DynamoDB auth mode, either credentials or pod.
|
|
|
133
133
|
|
|
134
134
|
***
|
|
135
135
|
|
|
136
|
-
### awsDynamodbAccessKeyId?
|
|
136
|
+
### awsDynamodbAccessKeyId? {#awsdynamodbaccesskeyid}
|
|
137
137
|
|
|
138
|
-
> `optional` **awsDynamodbAccessKeyId
|
|
138
|
+
> `optional` **awsDynamodbAccessKeyId?**: `string`
|
|
139
139
|
|
|
140
140
|
AWS Dynamo DB access key id.
|
|
141
141
|
|
|
@@ -145,9 +145,9 @@ AWS Dynamo DB access key id.
|
|
|
145
145
|
|
|
146
146
|
***
|
|
147
147
|
|
|
148
|
-
### awsDynamodbEndpoint?
|
|
148
|
+
### awsDynamodbEndpoint? {#awsdynamodbendpoint}
|
|
149
149
|
|
|
150
|
-
> `optional` **awsDynamodbEndpoint
|
|
150
|
+
> `optional` **awsDynamodbEndpoint?**: `string`
|
|
151
151
|
|
|
152
152
|
AWS Dynamo DB Endpoint if running local instance.
|
|
153
153
|
|
|
@@ -157,9 +157,9 @@ AWS Dynamo DB Endpoint if running local instance.
|
|
|
157
157
|
|
|
158
158
|
***
|
|
159
159
|
|
|
160
|
-
### awsDynamodbRegion?
|
|
160
|
+
### awsDynamodbRegion? {#awsdynamodbregion}
|
|
161
161
|
|
|
162
|
-
> `optional` **awsDynamodbRegion
|
|
162
|
+
> `optional` **awsDynamodbRegion?**: `string`
|
|
163
163
|
|
|
164
164
|
AWS Dynamo DB region.
|
|
165
165
|
|
|
@@ -169,9 +169,9 @@ AWS Dynamo DB region.
|
|
|
169
169
|
|
|
170
170
|
***
|
|
171
171
|
|
|
172
|
-
### awsDynamodbSecretAccessKey?
|
|
172
|
+
### awsDynamodbSecretAccessKey? {#awsdynamodbsecretaccesskey}
|
|
173
173
|
|
|
174
|
-
> `optional` **awsDynamodbSecretAccessKey
|
|
174
|
+
> `optional` **awsDynamodbSecretAccessKey?**: `string`
|
|
175
175
|
|
|
176
176
|
AWS Dynamo DB secret access key.
|
|
177
177
|
|
|
@@ -181,9 +181,21 @@ AWS Dynamo DB secret access key.
|
|
|
181
181
|
|
|
182
182
|
***
|
|
183
183
|
|
|
184
|
-
###
|
|
184
|
+
### awsDynamodbConnectionTimeoutMs? {#awsdynamodbconnectiontimeoutms}
|
|
185
|
+
|
|
186
|
+
> `optional` **awsDynamodbConnectionTimeoutMs?**: `string`
|
|
187
|
+
|
|
188
|
+
AWS Dynamo DB connection timeout.
|
|
189
|
+
|
|
190
|
+
#### Inherited from
|
|
191
|
+
|
|
192
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbConnectionTimeoutMs`](IEngineEnvironmentVariables.md#awsdynamodbconnectiontimeoutms)
|
|
193
|
+
|
|
194
|
+
***
|
|
195
|
+
|
|
196
|
+
### azureCosmosdbKey? {#azurecosmosdbkey}
|
|
185
197
|
|
|
186
|
-
> `optional` **azureCosmosdbKey
|
|
198
|
+
> `optional` **azureCosmosdbKey?**: `string`
|
|
187
199
|
|
|
188
200
|
Azure Cosmos DB key.
|
|
189
201
|
|
|
@@ -193,9 +205,9 @@ Azure Cosmos DB key.
|
|
|
193
205
|
|
|
194
206
|
***
|
|
195
207
|
|
|
196
|
-
### azureCosmosdbContainerId?
|
|
208
|
+
### azureCosmosdbContainerId? {#azurecosmosdbcontainerid}
|
|
197
209
|
|
|
198
|
-
> `optional` **azureCosmosdbContainerId
|
|
210
|
+
> `optional` **azureCosmosdbContainerId?**: `string`
|
|
199
211
|
|
|
200
212
|
Azure Cosmos DB container id.
|
|
201
213
|
|
|
@@ -205,9 +217,9 @@ Azure Cosmos DB container id.
|
|
|
205
217
|
|
|
206
218
|
***
|
|
207
219
|
|
|
208
|
-
### azureCosmosdbDatabaseId?
|
|
220
|
+
### azureCosmosdbDatabaseId? {#azurecosmosdbdatabaseid}
|
|
209
221
|
|
|
210
|
-
> `optional` **azureCosmosdbDatabaseId
|
|
222
|
+
> `optional` **azureCosmosdbDatabaseId?**: `string`
|
|
211
223
|
|
|
212
224
|
Azure Cosmos DB database id.
|
|
213
225
|
|
|
@@ -217,9 +229,9 @@ Azure Cosmos DB database id.
|
|
|
217
229
|
|
|
218
230
|
***
|
|
219
231
|
|
|
220
|
-
### azureCosmosdbEndpoint?
|
|
232
|
+
### azureCosmosdbEndpoint? {#azurecosmosdbendpoint}
|
|
221
233
|
|
|
222
|
-
> `optional` **azureCosmosdbEndpoint
|
|
234
|
+
> `optional` **azureCosmosdbEndpoint?**: `string`
|
|
223
235
|
|
|
224
236
|
Azure Cosmos DB endpoint.
|
|
225
237
|
|
|
@@ -229,9 +241,9 @@ Azure Cosmos DB endpoint.
|
|
|
229
241
|
|
|
230
242
|
***
|
|
231
243
|
|
|
232
|
-
### gcpFirestoreCollectionName?
|
|
244
|
+
### gcpFirestoreCollectionName? {#gcpfirestorecollectionname}
|
|
233
245
|
|
|
234
|
-
> `optional` **gcpFirestoreCollectionName
|
|
246
|
+
> `optional` **gcpFirestoreCollectionName?**: `string`
|
|
235
247
|
|
|
236
248
|
GCP Firestore collection name.
|
|
237
249
|
|
|
@@ -241,9 +253,9 @@ GCP Firestore collection name.
|
|
|
241
253
|
|
|
242
254
|
***
|
|
243
255
|
|
|
244
|
-
### gcpFirestoreCredentials?
|
|
256
|
+
### gcpFirestoreCredentials? {#gcpfirestorecredentials}
|
|
245
257
|
|
|
246
|
-
> `optional` **gcpFirestoreCredentials
|
|
258
|
+
> `optional` **gcpFirestoreCredentials?**: `string`
|
|
247
259
|
|
|
248
260
|
GCP Firestore credentials.
|
|
249
261
|
|
|
@@ -253,9 +265,9 @@ GCP Firestore credentials.
|
|
|
253
265
|
|
|
254
266
|
***
|
|
255
267
|
|
|
256
|
-
### gcpFirestoreDatabaseId?
|
|
268
|
+
### gcpFirestoreDatabaseId? {#gcpfirestoredatabaseid}
|
|
257
269
|
|
|
258
|
-
> `optional` **gcpFirestoreDatabaseId
|
|
270
|
+
> `optional` **gcpFirestoreDatabaseId?**: `string`
|
|
259
271
|
|
|
260
272
|
GCP Firestore database id.
|
|
261
273
|
|
|
@@ -265,9 +277,9 @@ GCP Firestore database id.
|
|
|
265
277
|
|
|
266
278
|
***
|
|
267
279
|
|
|
268
|
-
### gcpFirestoreApiEndpoint?
|
|
280
|
+
### gcpFirestoreApiEndpoint? {#gcpfirestoreapiendpoint}
|
|
269
281
|
|
|
270
|
-
> `optional` **gcpFirestoreApiEndpoint
|
|
282
|
+
> `optional` **gcpFirestoreApiEndpoint?**: `string`
|
|
271
283
|
|
|
272
284
|
GCP Firestore endpoint.
|
|
273
285
|
|
|
@@ -277,9 +289,9 @@ GCP Firestore endpoint.
|
|
|
277
289
|
|
|
278
290
|
***
|
|
279
291
|
|
|
280
|
-
### gcpFirestoreProjectId?
|
|
292
|
+
### gcpFirestoreProjectId? {#gcpfirestoreprojectid}
|
|
281
293
|
|
|
282
|
-
> `optional` **gcpFirestoreProjectId
|
|
294
|
+
> `optional` **gcpFirestoreProjectId?**: `string`
|
|
283
295
|
|
|
284
296
|
GCP Firestore project id.
|
|
285
297
|
|
|
@@ -289,9 +301,9 @@ GCP Firestore project id.
|
|
|
289
301
|
|
|
290
302
|
***
|
|
291
303
|
|
|
292
|
-
### scylladbHosts?
|
|
304
|
+
### scylladbHosts? {#scylladbhosts}
|
|
293
305
|
|
|
294
|
-
> `optional` **scylladbHosts
|
|
306
|
+
> `optional` **scylladbHosts?**: `string`
|
|
295
307
|
|
|
296
308
|
ScyllaDB hosts as comma separated string.
|
|
297
309
|
|
|
@@ -301,9 +313,9 @@ ScyllaDB hosts as comma separated string.
|
|
|
301
313
|
|
|
302
314
|
***
|
|
303
315
|
|
|
304
|
-
### scylladbKeyspace?
|
|
316
|
+
### scylladbKeyspace? {#scylladbkeyspace}
|
|
305
317
|
|
|
306
|
-
> `optional` **scylladbKeyspace
|
|
318
|
+
> `optional` **scylladbKeyspace?**: `string`
|
|
307
319
|
|
|
308
320
|
ScyllaDB keyspace.
|
|
309
321
|
|
|
@@ -313,9 +325,9 @@ ScyllaDB keyspace.
|
|
|
313
325
|
|
|
314
326
|
***
|
|
315
327
|
|
|
316
|
-
### scylladbLocalDataCenter?
|
|
328
|
+
### scylladbLocalDataCenter? {#scylladblocaldatacenter}
|
|
317
329
|
|
|
318
|
-
> `optional` **scylladbLocalDataCenter
|
|
330
|
+
> `optional` **scylladbLocalDataCenter?**: `string`
|
|
319
331
|
|
|
320
332
|
ScyllaDB local data center.
|
|
321
333
|
|
|
@@ -325,9 +337,9 @@ ScyllaDB local data center.
|
|
|
325
337
|
|
|
326
338
|
***
|
|
327
339
|
|
|
328
|
-
### scylladbPort?
|
|
340
|
+
### scylladbPort? {#scylladbport}
|
|
329
341
|
|
|
330
|
-
> `optional` **scylladbPort
|
|
342
|
+
> `optional` **scylladbPort?**: `string`
|
|
331
343
|
|
|
332
344
|
ScyllaDB port.
|
|
333
345
|
|
|
@@ -337,9 +349,9 @@ ScyllaDB port.
|
|
|
337
349
|
|
|
338
350
|
***
|
|
339
351
|
|
|
340
|
-
### mySqlHost?
|
|
352
|
+
### mySqlHost? {#mysqlhost}
|
|
341
353
|
|
|
342
|
-
> `optional` **mySqlHost
|
|
354
|
+
> `optional` **mySqlHost?**: `string`
|
|
343
355
|
|
|
344
356
|
MySQL host.
|
|
345
357
|
|
|
@@ -349,9 +361,9 @@ MySQL host.
|
|
|
349
361
|
|
|
350
362
|
***
|
|
351
363
|
|
|
352
|
-
### mySqlPort?
|
|
364
|
+
### mySqlPort? {#mysqlport}
|
|
353
365
|
|
|
354
|
-
> `optional` **mySqlPort
|
|
366
|
+
> `optional` **mySqlPort?**: `number`
|
|
355
367
|
|
|
356
368
|
MySQL port.
|
|
357
369
|
|
|
@@ -361,9 +373,9 @@ MySQL port.
|
|
|
361
373
|
|
|
362
374
|
***
|
|
363
375
|
|
|
364
|
-
### mySqlUser?
|
|
376
|
+
### mySqlUser? {#mysqluser}
|
|
365
377
|
|
|
366
|
-
> `optional` **mySqlUser
|
|
378
|
+
> `optional` **mySqlUser?**: `string`
|
|
367
379
|
|
|
368
380
|
MySQL username.
|
|
369
381
|
|
|
@@ -373,9 +385,9 @@ MySQL username.
|
|
|
373
385
|
|
|
374
386
|
***
|
|
375
387
|
|
|
376
|
-
### mySqlPassword?
|
|
388
|
+
### mySqlPassword? {#mysqlpassword}
|
|
377
389
|
|
|
378
|
-
> `optional` **mySqlPassword
|
|
390
|
+
> `optional` **mySqlPassword?**: `string`
|
|
379
391
|
|
|
380
392
|
MySQL password.
|
|
381
393
|
|
|
@@ -385,9 +397,9 @@ MySQL password.
|
|
|
385
397
|
|
|
386
398
|
***
|
|
387
399
|
|
|
388
|
-
### mySqlDatabase?
|
|
400
|
+
### mySqlDatabase? {#mysqldatabase}
|
|
389
401
|
|
|
390
|
-
> `optional` **mySqlDatabase
|
|
402
|
+
> `optional` **mySqlDatabase?**: `string`
|
|
391
403
|
|
|
392
404
|
MySQL Database.
|
|
393
405
|
|
|
@@ -397,9 +409,9 @@ MySQL Database.
|
|
|
397
409
|
|
|
398
410
|
***
|
|
399
411
|
|
|
400
|
-
### mongoDbHost?
|
|
412
|
+
### mongoDbHost? {#mongodbhost}
|
|
401
413
|
|
|
402
|
-
> `optional` **mongoDbHost
|
|
414
|
+
> `optional` **mongoDbHost?**: `string`
|
|
403
415
|
|
|
404
416
|
MongoDB host.
|
|
405
417
|
|
|
@@ -409,9 +421,9 @@ MongoDB host.
|
|
|
409
421
|
|
|
410
422
|
***
|
|
411
423
|
|
|
412
|
-
### mongoDbPort?
|
|
424
|
+
### mongoDbPort? {#mongodbport}
|
|
413
425
|
|
|
414
|
-
> `optional` **mongoDbPort
|
|
426
|
+
> `optional` **mongoDbPort?**: `number`
|
|
415
427
|
|
|
416
428
|
MongoDB port.
|
|
417
429
|
|
|
@@ -421,9 +433,9 @@ MongoDB port.
|
|
|
421
433
|
|
|
422
434
|
***
|
|
423
435
|
|
|
424
|
-
### mongoDbUser?
|
|
436
|
+
### mongoDbUser? {#mongodbuser}
|
|
425
437
|
|
|
426
|
-
> `optional` **mongoDbUser
|
|
438
|
+
> `optional` **mongoDbUser?**: `string`
|
|
427
439
|
|
|
428
440
|
MongoDB username.
|
|
429
441
|
|
|
@@ -433,9 +445,9 @@ MongoDB username.
|
|
|
433
445
|
|
|
434
446
|
***
|
|
435
447
|
|
|
436
|
-
### mongoDbPassword?
|
|
448
|
+
### mongoDbPassword? {#mongodbpassword}
|
|
437
449
|
|
|
438
|
-
> `optional` **mongoDbPassword
|
|
450
|
+
> `optional` **mongoDbPassword?**: `string`
|
|
439
451
|
|
|
440
452
|
MongoDB password.
|
|
441
453
|
|
|
@@ -445,9 +457,9 @@ MongoDB password.
|
|
|
445
457
|
|
|
446
458
|
***
|
|
447
459
|
|
|
448
|
-
### mongoDbDatabase?
|
|
460
|
+
### mongoDbDatabase? {#mongodbdatabase}
|
|
449
461
|
|
|
450
|
-
> `optional` **mongoDbDatabase
|
|
462
|
+
> `optional` **mongoDbDatabase?**: `string`
|
|
451
463
|
|
|
452
464
|
MongoDB Database.
|
|
453
465
|
|
|
@@ -457,9 +469,9 @@ MongoDB Database.
|
|
|
457
469
|
|
|
458
470
|
***
|
|
459
471
|
|
|
460
|
-
### postgreSqlHost?
|
|
472
|
+
### postgreSqlHost? {#postgresqlhost}
|
|
461
473
|
|
|
462
|
-
> `optional` **postgreSqlHost
|
|
474
|
+
> `optional` **postgreSqlHost?**: `string`
|
|
463
475
|
|
|
464
476
|
PostgreSQl host.
|
|
465
477
|
|
|
@@ -469,9 +481,9 @@ PostgreSQl host.
|
|
|
469
481
|
|
|
470
482
|
***
|
|
471
483
|
|
|
472
|
-
### postgreSqlPort?
|
|
484
|
+
### postgreSqlPort? {#postgresqlport}
|
|
473
485
|
|
|
474
|
-
> `optional` **postgreSqlPort
|
|
486
|
+
> `optional` **postgreSqlPort?**: `number`
|
|
475
487
|
|
|
476
488
|
PostgreSQl port.
|
|
477
489
|
|
|
@@ -481,9 +493,9 @@ PostgreSQl port.
|
|
|
481
493
|
|
|
482
494
|
***
|
|
483
495
|
|
|
484
|
-
### postgreSqlUser?
|
|
496
|
+
### postgreSqlUser? {#postgresqluser}
|
|
485
497
|
|
|
486
|
-
> `optional` **postgreSqlUser
|
|
498
|
+
> `optional` **postgreSqlUser?**: `string`
|
|
487
499
|
|
|
488
500
|
PostgreSQl username.
|
|
489
501
|
|
|
@@ -493,9 +505,9 @@ PostgreSQl username.
|
|
|
493
505
|
|
|
494
506
|
***
|
|
495
507
|
|
|
496
|
-
### postgreSqlPassword?
|
|
508
|
+
### postgreSqlPassword? {#postgresqlpassword}
|
|
497
509
|
|
|
498
|
-
> `optional` **postgreSqlPassword
|
|
510
|
+
> `optional` **postgreSqlPassword?**: `string`
|
|
499
511
|
|
|
500
512
|
PostgreSQl password.
|
|
501
513
|
|
|
@@ -505,9 +517,9 @@ PostgreSQl password.
|
|
|
505
517
|
|
|
506
518
|
***
|
|
507
519
|
|
|
508
|
-
### postgreSqlDatabase?
|
|
520
|
+
### postgreSqlDatabase? {#postgresqldatabase}
|
|
509
521
|
|
|
510
|
-
> `optional` **postgreSqlDatabase
|
|
522
|
+
> `optional` **postgreSqlDatabase?**: `string`
|
|
511
523
|
|
|
512
524
|
PostgreSQl Database.
|
|
513
525
|
|
|
@@ -517,9 +529,9 @@ PostgreSQl Database.
|
|
|
517
529
|
|
|
518
530
|
***
|
|
519
531
|
|
|
520
|
-
### ipfsBearerToken?
|
|
532
|
+
### ipfsBearerToken? {#ipfsbearertoken}
|
|
521
533
|
|
|
522
|
-
> `optional` **ipfsBearerToken
|
|
534
|
+
> `optional` **ipfsBearerToken?**: `string`
|
|
523
535
|
|
|
524
536
|
The security token for accessing IPFS API.
|
|
525
537
|
|
|
@@ -529,9 +541,9 @@ The security token for accessing IPFS API.
|
|
|
529
541
|
|
|
530
542
|
***
|
|
531
543
|
|
|
532
|
-
### ipfsApiUrl?
|
|
544
|
+
### ipfsApiUrl? {#ipfsapiurl}
|
|
533
545
|
|
|
534
|
-
> `optional` **ipfsApiUrl
|
|
546
|
+
> `optional` **ipfsApiUrl?**: `string`
|
|
535
547
|
|
|
536
548
|
The url for accessing IPFS API.
|
|
537
549
|
|
|
@@ -541,9 +553,9 @@ The url for accessing IPFS API.
|
|
|
541
553
|
|
|
542
554
|
***
|
|
543
555
|
|
|
544
|
-
### blobStorageConnectorType?
|
|
556
|
+
### blobStorageConnectorType? {#blobstorageconnectortype}
|
|
545
557
|
|
|
546
|
-
> `optional` **blobStorageConnectorType
|
|
558
|
+
> `optional` **blobStorageConnectorType?**: `string`
|
|
547
559
|
|
|
548
560
|
The type of the entity storage to create, comma separate for more than one connector.
|
|
549
561
|
values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
|
|
@@ -554,9 +566,9 @@ values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
|
|
|
554
566
|
|
|
555
567
|
***
|
|
556
568
|
|
|
557
|
-
### blobStorageConnectorDefault?
|
|
569
|
+
### blobStorageConnectorDefault? {#blobstorageconnectordefault}
|
|
558
570
|
|
|
559
|
-
> `optional` **blobStorageConnectorDefault
|
|
571
|
+
> `optional` **blobStorageConnectorDefault?**: `string`
|
|
560
572
|
|
|
561
573
|
The default blob storage connector to use, defaults to the first one in the list.
|
|
562
574
|
|
|
@@ -566,9 +578,9 @@ The default blob storage connector to use, defaults to the first one in the list
|
|
|
566
578
|
|
|
567
579
|
***
|
|
568
580
|
|
|
569
|
-
### blobStorageConnectorPublic?
|
|
581
|
+
### blobStorageConnectorPublic? {#blobstorageconnectorpublic}
|
|
570
582
|
|
|
571
|
-
> `optional` **blobStorageConnectorPublic
|
|
583
|
+
> `optional` **blobStorageConnectorPublic?**: `string`
|
|
572
584
|
|
|
573
585
|
Blog storage connector which has public access.
|
|
574
586
|
|
|
@@ -578,9 +590,9 @@ Blog storage connector which has public access.
|
|
|
578
590
|
|
|
579
591
|
***
|
|
580
592
|
|
|
581
|
-
### blobStorageEnableEncryption?
|
|
593
|
+
### blobStorageEnableEncryption? {#blobstorageenableencryption}
|
|
582
594
|
|
|
583
|
-
> `optional` **blobStorageEnableEncryption
|
|
595
|
+
> `optional` **blobStorageEnableEncryption?**: `string`
|
|
584
596
|
|
|
585
597
|
Enable encryption for the blob storage.
|
|
586
598
|
|
|
@@ -590,9 +602,9 @@ Enable encryption for the blob storage.
|
|
|
590
602
|
|
|
591
603
|
***
|
|
592
604
|
|
|
593
|
-
### blobStorageEncryptionKeyId?
|
|
605
|
+
### blobStorageEncryptionKeyId? {#blobstorageencryptionkeyid}
|
|
594
606
|
|
|
595
|
-
> `optional` **blobStorageEncryptionKeyId
|
|
607
|
+
> `optional` **blobStorageEncryptionKeyId?**: `string`
|
|
596
608
|
|
|
597
609
|
The id of the encryption key for the blob storage.
|
|
598
610
|
|
|
@@ -602,22 +614,9 @@ The id of the encryption key for the blob storage.
|
|
|
602
614
|
|
|
603
615
|
***
|
|
604
616
|
|
|
605
|
-
###
|
|
617
|
+
### blobStoragePrefix? {#blobstorageprefix}
|
|
606
618
|
|
|
607
|
-
> `optional` **
|
|
608
|
-
|
|
609
|
-
A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
|
|
610
|
-
If encryption is enabled but a key is not provided one will be generated.
|
|
611
|
-
|
|
612
|
-
#### Inherited from
|
|
613
|
-
|
|
614
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageSymmetricEncryptionKey`](IEngineEnvironmentVariables.md#blobstoragesymmetricencryptionkey)
|
|
615
|
-
|
|
616
|
-
***
|
|
617
|
-
|
|
618
|
-
### blobStoragePrefix?
|
|
619
|
-
|
|
620
|
-
> `optional` **blobStoragePrefix**: `string`
|
|
619
|
+
> `optional` **blobStoragePrefix?**: `string`
|
|
621
620
|
|
|
622
621
|
A prefix for all the blobs in blob-storage, can be empty.
|
|
623
622
|
|
|
@@ -627,9 +626,9 @@ A prefix for all the blobs in blob-storage, can be empty.
|
|
|
627
626
|
|
|
628
627
|
***
|
|
629
628
|
|
|
630
|
-
### awsS3Region?
|
|
629
|
+
### awsS3Region? {#awss3region}
|
|
631
630
|
|
|
632
|
-
> `optional` **awsS3Region
|
|
631
|
+
> `optional` **awsS3Region?**: `string`
|
|
633
632
|
|
|
634
633
|
AWS S3 region.
|
|
635
634
|
|
|
@@ -639,9 +638,9 @@ AWS S3 region.
|
|
|
639
638
|
|
|
640
639
|
***
|
|
641
640
|
|
|
642
|
-
### awsS3BucketName?
|
|
641
|
+
### awsS3BucketName? {#awss3bucketname}
|
|
643
642
|
|
|
644
|
-
> `optional` **awsS3BucketName
|
|
643
|
+
> `optional` **awsS3BucketName?**: `string`
|
|
645
644
|
|
|
646
645
|
AWS S3 bucket name.
|
|
647
646
|
|
|
@@ -651,9 +650,9 @@ AWS S3 bucket name.
|
|
|
651
650
|
|
|
652
651
|
***
|
|
653
652
|
|
|
654
|
-
### awsS3AuthMode?
|
|
653
|
+
### awsS3AuthMode? {#awss3authmode}
|
|
655
654
|
|
|
656
|
-
> `optional` **awsS3AuthMode
|
|
655
|
+
> `optional` **awsS3AuthMode?**: `string`
|
|
657
656
|
|
|
658
657
|
AWS S3 auth mode, either credentials or pod, defaults to credentials.
|
|
659
658
|
|
|
@@ -663,9 +662,9 @@ AWS S3 auth mode, either credentials or pod, defaults to credentials.
|
|
|
663
662
|
|
|
664
663
|
***
|
|
665
664
|
|
|
666
|
-
### awsS3AccessKeyId?
|
|
665
|
+
### awsS3AccessKeyId? {#awss3accesskeyid}
|
|
667
666
|
|
|
668
|
-
> `optional` **awsS3AccessKeyId
|
|
667
|
+
> `optional` **awsS3AccessKeyId?**: `string`
|
|
669
668
|
|
|
670
669
|
AWS S3 access key id.
|
|
671
670
|
|
|
@@ -675,9 +674,9 @@ AWS S3 access key id.
|
|
|
675
674
|
|
|
676
675
|
***
|
|
677
676
|
|
|
678
|
-
### awsS3SecretAccessKey?
|
|
677
|
+
### awsS3SecretAccessKey? {#awss3secretaccesskey}
|
|
679
678
|
|
|
680
|
-
> `optional` **awsS3SecretAccessKey
|
|
679
|
+
> `optional` **awsS3SecretAccessKey?**: `string`
|
|
681
680
|
|
|
682
681
|
AWS S3 secret access key.
|
|
683
682
|
|
|
@@ -687,9 +686,9 @@ AWS S3 secret access key.
|
|
|
687
686
|
|
|
688
687
|
***
|
|
689
688
|
|
|
690
|
-
### awsS3Endpoint?
|
|
689
|
+
### awsS3Endpoint? {#awss3endpoint}
|
|
691
690
|
|
|
692
|
-
> `optional` **awsS3Endpoint
|
|
691
|
+
> `optional` **awsS3Endpoint?**: `string`
|
|
693
692
|
|
|
694
693
|
AWS S3 endpoint.
|
|
695
694
|
|
|
@@ -699,9 +698,9 @@ AWS S3 endpoint.
|
|
|
699
698
|
|
|
700
699
|
***
|
|
701
700
|
|
|
702
|
-
### azureStorageAccountKey?
|
|
701
|
+
### azureStorageAccountKey? {#azurestorageaccountkey}
|
|
703
702
|
|
|
704
|
-
> `optional` **azureStorageAccountKey
|
|
703
|
+
> `optional` **azureStorageAccountKey?**: `string`
|
|
705
704
|
|
|
706
705
|
Azure Storage account key.
|
|
707
706
|
|
|
@@ -711,9 +710,9 @@ Azure Storage account key.
|
|
|
711
710
|
|
|
712
711
|
***
|
|
713
712
|
|
|
714
|
-
### azureStorageAccountName?
|
|
713
|
+
### azureStorageAccountName? {#azurestorageaccountname}
|
|
715
714
|
|
|
716
|
-
> `optional` **azureStorageAccountName
|
|
715
|
+
> `optional` **azureStorageAccountName?**: `string`
|
|
717
716
|
|
|
718
717
|
Azure Storage account name.
|
|
719
718
|
|
|
@@ -723,9 +722,9 @@ Azure Storage account name.
|
|
|
723
722
|
|
|
724
723
|
***
|
|
725
724
|
|
|
726
|
-
### azureStorageContainerName?
|
|
725
|
+
### azureStorageContainerName? {#azurestoragecontainername}
|
|
727
726
|
|
|
728
|
-
> `optional` **azureStorageContainerName
|
|
727
|
+
> `optional` **azureStorageContainerName?**: `string`
|
|
729
728
|
|
|
730
729
|
Azure Storage container.
|
|
731
730
|
|
|
@@ -735,9 +734,9 @@ Azure Storage container.
|
|
|
735
734
|
|
|
736
735
|
***
|
|
737
736
|
|
|
738
|
-
### azureStorageEndpoint?
|
|
737
|
+
### azureStorageEndpoint? {#azurestorageendpoint}
|
|
739
738
|
|
|
740
|
-
> `optional` **azureStorageEndpoint
|
|
739
|
+
> `optional` **azureStorageEndpoint?**: `string`
|
|
741
740
|
|
|
742
741
|
Azure Storage endpoint.
|
|
743
742
|
|
|
@@ -747,9 +746,9 @@ Azure Storage endpoint.
|
|
|
747
746
|
|
|
748
747
|
***
|
|
749
748
|
|
|
750
|
-
### gcpStorageBucketName?
|
|
749
|
+
### gcpStorageBucketName? {#gcpstoragebucketname}
|
|
751
750
|
|
|
752
|
-
> `optional` **gcpStorageBucketName
|
|
751
|
+
> `optional` **gcpStorageBucketName?**: `string`
|
|
753
752
|
|
|
754
753
|
GCP Storage bucket.
|
|
755
754
|
|
|
@@ -759,9 +758,9 @@ GCP Storage bucket.
|
|
|
759
758
|
|
|
760
759
|
***
|
|
761
760
|
|
|
762
|
-
### gcpStorageCredentials?
|
|
761
|
+
### gcpStorageCredentials? {#gcpstoragecredentials}
|
|
763
762
|
|
|
764
|
-
> `optional` **gcpStorageCredentials
|
|
763
|
+
> `optional` **gcpStorageCredentials?**: `string`
|
|
765
764
|
|
|
766
765
|
GCP Storage credentials.
|
|
767
766
|
|
|
@@ -771,9 +770,9 @@ GCP Storage credentials.
|
|
|
771
770
|
|
|
772
771
|
***
|
|
773
772
|
|
|
774
|
-
### gcpStorageEndpoint?
|
|
773
|
+
### gcpStorageEndpoint? {#gcpstorageendpoint}
|
|
775
774
|
|
|
776
|
-
> `optional` **gcpStorageEndpoint
|
|
775
|
+
> `optional` **gcpStorageEndpoint?**: `string`
|
|
777
776
|
|
|
778
777
|
GCP Storage endpoint.
|
|
779
778
|
|
|
@@ -783,9 +782,9 @@ GCP Storage endpoint.
|
|
|
783
782
|
|
|
784
783
|
***
|
|
785
784
|
|
|
786
|
-
### gcpStorageProjectId?
|
|
785
|
+
### gcpStorageProjectId? {#gcpstorageprojectid}
|
|
787
786
|
|
|
788
|
-
> `optional` **gcpStorageProjectId
|
|
787
|
+
> `optional` **gcpStorageProjectId?**: `string`
|
|
789
788
|
|
|
790
789
|
GCP Storage project id.
|
|
791
790
|
|
|
@@ -795,9 +794,9 @@ GCP Storage project id.
|
|
|
795
794
|
|
|
796
795
|
***
|
|
797
796
|
|
|
798
|
-
### vaultConnector?
|
|
797
|
+
### vaultConnector? {#vaultconnector}
|
|
799
798
|
|
|
800
|
-
> `optional` **vaultConnector
|
|
799
|
+
> `optional` **vaultConnector?**: `string`
|
|
801
800
|
|
|
802
801
|
The type of the default vault connector: entity-storage, hashicorp.
|
|
803
802
|
|
|
@@ -807,57 +806,57 @@ The type of the default vault connector: entity-storage, hashicorp.
|
|
|
807
806
|
|
|
808
807
|
***
|
|
809
808
|
|
|
810
|
-
###
|
|
809
|
+
### vaultPrefix? {#vaultprefix}
|
|
811
810
|
|
|
812
|
-
> `optional` **
|
|
811
|
+
> `optional` **vaultPrefix?**: `string`
|
|
813
812
|
|
|
814
|
-
|
|
813
|
+
Prefix to prepend to entries in the vault.
|
|
815
814
|
|
|
816
815
|
#### Inherited from
|
|
817
816
|
|
|
818
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
817
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vaultPrefix`](IEngineEnvironmentVariables.md#vaultprefix)
|
|
819
818
|
|
|
820
819
|
***
|
|
821
820
|
|
|
822
|
-
###
|
|
821
|
+
### hashicorpVaultToken? {#hashicorpvaulttoken}
|
|
823
822
|
|
|
824
|
-
> `optional` **
|
|
823
|
+
> `optional` **hashicorpVaultToken?**: `string`
|
|
825
824
|
|
|
826
|
-
Hashicorp Vault
|
|
825
|
+
Hashicorp Vault token.
|
|
827
826
|
|
|
828
827
|
#### Inherited from
|
|
829
828
|
|
|
830
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
829
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultToken`](IEngineEnvironmentVariables.md#hashicorpvaulttoken)
|
|
831
830
|
|
|
832
831
|
***
|
|
833
832
|
|
|
834
|
-
###
|
|
833
|
+
### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
|
|
835
834
|
|
|
836
|
-
> `optional` **
|
|
835
|
+
> `optional` **hashicorpVaultEndpoint?**: `string`
|
|
837
836
|
|
|
838
|
-
|
|
837
|
+
Hashicorp Vault endpoint.
|
|
839
838
|
|
|
840
839
|
#### Inherited from
|
|
841
840
|
|
|
842
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
841
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultEndpoint`](IEngineEnvironmentVariables.md#hashicorpvaultendpoint)
|
|
843
842
|
|
|
844
843
|
***
|
|
845
844
|
|
|
846
|
-
###
|
|
845
|
+
### loggingConnector? {#loggingconnector}
|
|
847
846
|
|
|
848
|
-
> `optional` **
|
|
847
|
+
> `optional` **loggingConnector?**: `string`
|
|
849
848
|
|
|
850
|
-
The type of
|
|
849
|
+
The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
851
850
|
|
|
852
851
|
#### Inherited from
|
|
853
852
|
|
|
854
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
853
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingConnector`](IEngineEnvironmentVariables.md#loggingconnector)
|
|
855
854
|
|
|
856
855
|
***
|
|
857
856
|
|
|
858
|
-
### eventBusConnector?
|
|
857
|
+
### eventBusConnector? {#eventbusconnector}
|
|
859
858
|
|
|
860
|
-
> `optional` **eventBusConnector
|
|
859
|
+
> `optional` **eventBusConnector?**: `string`
|
|
861
860
|
|
|
862
861
|
The type of event bus connector: local.
|
|
863
862
|
|
|
@@ -867,9 +866,9 @@ The type of event bus connector: local.
|
|
|
867
866
|
|
|
868
867
|
***
|
|
869
868
|
|
|
870
|
-
### eventBusComponent?
|
|
869
|
+
### eventBusComponent? {#eventbuscomponent}
|
|
871
870
|
|
|
872
|
-
> `optional` **eventBusComponent
|
|
871
|
+
> `optional` **eventBusComponent?**: `string`
|
|
873
872
|
|
|
874
873
|
The type of event bus component: service.
|
|
875
874
|
|
|
@@ -879,9 +878,9 @@ The type of event bus component: service.
|
|
|
879
878
|
|
|
880
879
|
***
|
|
881
880
|
|
|
882
|
-
### messagingEnabled?
|
|
881
|
+
### messagingEnabled? {#messagingenabled}
|
|
883
882
|
|
|
884
|
-
> `optional` **messagingEnabled
|
|
883
|
+
> `optional` **messagingEnabled?**: `string`
|
|
885
884
|
|
|
886
885
|
Are the messaging components enabled, defaults to false.
|
|
887
886
|
|
|
@@ -891,9 +890,9 @@ Are the messaging components enabled, defaults to false.
|
|
|
891
890
|
|
|
892
891
|
***
|
|
893
892
|
|
|
894
|
-
### awsSesRegion?
|
|
893
|
+
### awsSesRegion? {#awssesregion}
|
|
895
894
|
|
|
896
|
-
> `optional` **awsSesRegion
|
|
895
|
+
> `optional` **awsSesRegion?**: `string`
|
|
897
896
|
|
|
898
897
|
AWS SES region.
|
|
899
898
|
|
|
@@ -903,9 +902,9 @@ AWS SES region.
|
|
|
903
902
|
|
|
904
903
|
***
|
|
905
904
|
|
|
906
|
-
### awsSesAuthMode?
|
|
905
|
+
### awsSesAuthMode? {#awssesauthmode}
|
|
907
906
|
|
|
908
|
-
> `optional` **awsSesAuthMode
|
|
907
|
+
> `optional` **awsSesAuthMode?**: `string`
|
|
909
908
|
|
|
910
909
|
AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
911
910
|
|
|
@@ -915,9 +914,9 @@ AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
|
915
914
|
|
|
916
915
|
***
|
|
917
916
|
|
|
918
|
-
### awsSesSecretAccessKey?
|
|
917
|
+
### awsSesSecretAccessKey? {#awssessecretaccesskey}
|
|
919
918
|
|
|
920
|
-
> `optional` **awsSesSecretAccessKey
|
|
919
|
+
> `optional` **awsSesSecretAccessKey?**: `string`
|
|
921
920
|
|
|
922
921
|
AWS SES secret access key.
|
|
923
922
|
|
|
@@ -927,9 +926,9 @@ AWS SES secret access key.
|
|
|
927
926
|
|
|
928
927
|
***
|
|
929
928
|
|
|
930
|
-
### awsSesAccessKeyId?
|
|
929
|
+
### awsSesAccessKeyId? {#awssesaccesskeyid}
|
|
931
930
|
|
|
932
|
-
> `optional` **awsSesAccessKeyId
|
|
931
|
+
> `optional` **awsSesAccessKeyId?**: `string`
|
|
933
932
|
|
|
934
933
|
AWS SES access key id.
|
|
935
934
|
|
|
@@ -939,9 +938,9 @@ AWS SES access key id.
|
|
|
939
938
|
|
|
940
939
|
***
|
|
941
940
|
|
|
942
|
-
### awsSesEndpoint?
|
|
941
|
+
### awsSesEndpoint? {#awssesendpoint}
|
|
943
942
|
|
|
944
|
-
> `optional` **awsSesEndpoint
|
|
943
|
+
> `optional` **awsSesEndpoint?**: `string`
|
|
945
944
|
|
|
946
945
|
AWS SES endpoint.
|
|
947
946
|
|
|
@@ -951,11 +950,11 @@ AWS SES endpoint.
|
|
|
951
950
|
|
|
952
951
|
***
|
|
953
952
|
|
|
954
|
-
### awsMessagingPushNotificationApplications?
|
|
953
|
+
### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
|
|
955
954
|
|
|
956
|
-
> `optional` **awsMessagingPushNotificationApplications
|
|
955
|
+
> `optional` **awsMessagingPushNotificationApplications?**: `string`
|
|
957
956
|
|
|
958
|
-
The applications for the push notifications
|
|
957
|
+
The applications for the push notifications reference a separate json with @json: prefix.
|
|
959
958
|
|
|
960
959
|
#### Inherited from
|
|
961
960
|
|
|
@@ -963,9 +962,9 @@ The applications for the push notifications JSON stringified array of IAwsApplic
|
|
|
963
962
|
|
|
964
963
|
***
|
|
965
964
|
|
|
966
|
-
### messagingEmailConnector?
|
|
965
|
+
### messagingEmailConnector? {#messagingemailconnector}
|
|
967
966
|
|
|
968
|
-
> `optional` **messagingEmailConnector
|
|
967
|
+
> `optional` **messagingEmailConnector?**: `string`
|
|
969
968
|
|
|
970
969
|
The type of messaging email connector: entity-storage, aws.
|
|
971
970
|
|
|
@@ -975,9 +974,9 @@ The type of messaging email connector: entity-storage, aws.
|
|
|
975
974
|
|
|
976
975
|
***
|
|
977
976
|
|
|
978
|
-
### messagingSmsConnector?
|
|
977
|
+
### messagingSmsConnector? {#messagingsmsconnector}
|
|
979
978
|
|
|
980
|
-
> `optional` **messagingSmsConnector
|
|
979
|
+
> `optional` **messagingSmsConnector?**: `string`
|
|
981
980
|
|
|
982
981
|
The type of messaging sms connector: entity-storage, aws.
|
|
983
982
|
|
|
@@ -987,9 +986,9 @@ The type of messaging sms connector: entity-storage, aws.
|
|
|
987
986
|
|
|
988
987
|
***
|
|
989
988
|
|
|
990
|
-
### messagingPushNotificationConnector?
|
|
989
|
+
### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
|
|
991
990
|
|
|
992
|
-
> `optional` **messagingPushNotificationConnector
|
|
991
|
+
> `optional` **messagingPushNotificationConnector?**: `string`
|
|
993
992
|
|
|
994
993
|
The type of messaging push notification connector: entity-storage, aws.
|
|
995
994
|
|
|
@@ -999,9 +998,9 @@ The type of messaging push notification connector: entity-storage, aws.
|
|
|
999
998
|
|
|
1000
999
|
***
|
|
1001
1000
|
|
|
1002
|
-
### telemetryConnector?
|
|
1001
|
+
### telemetryConnector? {#telemetryconnector}
|
|
1003
1002
|
|
|
1004
|
-
> `optional` **telemetryConnector
|
|
1003
|
+
> `optional` **telemetryConnector?**: `string`
|
|
1005
1004
|
|
|
1006
1005
|
The type of telemetry connector: entity-storage.
|
|
1007
1006
|
|
|
@@ -1011,9 +1010,9 @@ The type of telemetry connector: entity-storage.
|
|
|
1011
1010
|
|
|
1012
1011
|
***
|
|
1013
1012
|
|
|
1014
|
-
### faucetConnector?
|
|
1013
|
+
### faucetConnector? {#faucetconnector}
|
|
1015
1014
|
|
|
1016
|
-
> `optional` **faucetConnector
|
|
1015
|
+
> `optional` **faucetConnector?**: `string`
|
|
1017
1016
|
|
|
1018
1017
|
The type of faucet connector: entity-storage, iota.
|
|
1019
1018
|
|
|
@@ -1023,9 +1022,9 @@ The type of faucet connector: entity-storage, iota.
|
|
|
1023
1022
|
|
|
1024
1023
|
***
|
|
1025
1024
|
|
|
1026
|
-
### walletConnector?
|
|
1025
|
+
### walletConnector? {#walletconnector}
|
|
1027
1026
|
|
|
1028
|
-
> `optional` **walletConnector
|
|
1027
|
+
> `optional` **walletConnector?**: `string`
|
|
1029
1028
|
|
|
1030
1029
|
The type of wallet connector: entity-storage, iota.
|
|
1031
1030
|
|
|
@@ -1035,9 +1034,9 @@ The type of wallet connector: entity-storage, iota.
|
|
|
1035
1034
|
|
|
1036
1035
|
***
|
|
1037
1036
|
|
|
1038
|
-
### nftConnector?
|
|
1037
|
+
### nftConnector? {#nftconnector}
|
|
1039
1038
|
|
|
1040
|
-
> `optional` **nftConnector
|
|
1039
|
+
> `optional` **nftConnector?**: `string`
|
|
1041
1040
|
|
|
1042
1041
|
The type of NFT connector: entity-storage, iota.
|
|
1043
1042
|
|
|
@@ -1047,9 +1046,9 @@ The type of NFT connector: entity-storage, iota.
|
|
|
1047
1046
|
|
|
1048
1047
|
***
|
|
1049
1048
|
|
|
1050
|
-
### identityConnector?
|
|
1049
|
+
### identityConnector? {#identityconnector}
|
|
1051
1050
|
|
|
1052
|
-
> `optional` **identityConnector
|
|
1051
|
+
> `optional` **identityConnector?**: `string`
|
|
1053
1052
|
|
|
1054
1053
|
The type of identity connector: entity-storage, iota.
|
|
1055
1054
|
|
|
@@ -1059,9 +1058,21 @@ The type of identity connector: entity-storage, iota.
|
|
|
1059
1058
|
|
|
1060
1059
|
***
|
|
1061
1060
|
|
|
1062
|
-
###
|
|
1061
|
+
### identityWalletAddressIndex? {#identitywalletaddressindex}
|
|
1062
|
+
|
|
1063
|
+
> `optional` **identityWalletAddressIndex?**: `string`
|
|
1064
|
+
|
|
1065
|
+
The index of the wallet address to use, defaults to 0.
|
|
1066
|
+
|
|
1067
|
+
#### Inherited from
|
|
1068
|
+
|
|
1069
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityWalletAddressIndex`](IEngineEnvironmentVariables.md#identitywalletaddressindex)
|
|
1070
|
+
|
|
1071
|
+
***
|
|
1072
|
+
|
|
1073
|
+
### identityResolverConnector? {#identityresolverconnector}
|
|
1063
1074
|
|
|
1064
|
-
> `optional` **identityResolverConnector
|
|
1075
|
+
> `optional` **identityResolverConnector?**: `string`
|
|
1065
1076
|
|
|
1066
1077
|
The type of identity resolver connector: entity-storage, iota.
|
|
1067
1078
|
|
|
@@ -1071,9 +1082,9 @@ The type of identity resolver connector: entity-storage, iota.
|
|
|
1071
1082
|
|
|
1072
1083
|
***
|
|
1073
1084
|
|
|
1074
|
-
### verifiableStorageConnector?
|
|
1085
|
+
### verifiableStorageConnector? {#verifiablestorageconnector}
|
|
1075
1086
|
|
|
1076
|
-
> `optional` **verifiableStorageConnector
|
|
1087
|
+
> `optional` **verifiableStorageConnector?**: `string`
|
|
1077
1088
|
|
|
1078
1089
|
The type of verifiable storage connector: entity-storage, iota.
|
|
1079
1090
|
|
|
@@ -1083,9 +1094,9 @@ The type of verifiable storage connector: entity-storage, iota.
|
|
|
1083
1094
|
|
|
1084
1095
|
***
|
|
1085
1096
|
|
|
1086
|
-
### iotaFaucetEndpoint?
|
|
1097
|
+
### iotaFaucetEndpoint? {#iotafaucetendpoint}
|
|
1087
1098
|
|
|
1088
|
-
> `optional` **iotaFaucetEndpoint
|
|
1099
|
+
> `optional` **iotaFaucetEndpoint?**: `string`
|
|
1089
1100
|
|
|
1090
1101
|
IOTA Faucet Endpoint.
|
|
1091
1102
|
|
|
@@ -1095,9 +1106,9 @@ IOTA Faucet Endpoint.
|
|
|
1095
1106
|
|
|
1096
1107
|
***
|
|
1097
1108
|
|
|
1098
|
-
### iotaNodeEndpoint?
|
|
1109
|
+
### iotaNodeEndpoint? {#iotanodeendpoint}
|
|
1099
1110
|
|
|
1100
|
-
> `optional` **iotaNodeEndpoint
|
|
1111
|
+
> `optional` **iotaNodeEndpoint?**: `string`
|
|
1101
1112
|
|
|
1102
1113
|
IOTA Node Endpoint.
|
|
1103
1114
|
|
|
@@ -1107,9 +1118,9 @@ IOTA Node Endpoint.
|
|
|
1107
1118
|
|
|
1108
1119
|
***
|
|
1109
1120
|
|
|
1110
|
-
### iotaNetwork?
|
|
1121
|
+
### iotaNetwork? {#iotanetwork}
|
|
1111
1122
|
|
|
1112
|
-
> `optional` **iotaNetwork
|
|
1123
|
+
> `optional` **iotaNetwork?**: `string`
|
|
1113
1124
|
|
|
1114
1125
|
IOTA network.
|
|
1115
1126
|
|
|
@@ -1119,9 +1130,9 @@ IOTA network.
|
|
|
1119
1130
|
|
|
1120
1131
|
***
|
|
1121
1132
|
|
|
1122
|
-
### iotaCoinType?
|
|
1133
|
+
### iotaCoinType? {#iotacointype}
|
|
1123
1134
|
|
|
1124
|
-
> `optional` **iotaCoinType
|
|
1135
|
+
> `optional` **iotaCoinType?**: `string`
|
|
1125
1136
|
|
|
1126
1137
|
IOTA coin type.
|
|
1127
1138
|
|
|
@@ -1131,9 +1142,9 @@ IOTA coin type.
|
|
|
1131
1142
|
|
|
1132
1143
|
***
|
|
1133
1144
|
|
|
1134
|
-
### iotaExplorerEndpoint?
|
|
1145
|
+
### iotaExplorerEndpoint? {#iotaexplorerendpoint}
|
|
1135
1146
|
|
|
1136
|
-
> `optional` **iotaExplorerEndpoint
|
|
1147
|
+
> `optional` **iotaExplorerEndpoint?**: `string`
|
|
1137
1148
|
|
|
1138
1149
|
IOTA Explorer Endpoint.
|
|
1139
1150
|
|
|
@@ -1143,9 +1154,9 @@ IOTA Explorer Endpoint.
|
|
|
1143
1154
|
|
|
1144
1155
|
***
|
|
1145
1156
|
|
|
1146
|
-
### iotaGasStationEndpoint?
|
|
1157
|
+
### iotaGasStationEndpoint? {#iotagasstationendpoint}
|
|
1147
1158
|
|
|
1148
|
-
> `optional` **iotaGasStationEndpoint
|
|
1159
|
+
> `optional` **iotaGasStationEndpoint?**: `string`
|
|
1149
1160
|
|
|
1150
1161
|
IOTA Gas Station Endpoint.
|
|
1151
1162
|
|
|
@@ -1155,9 +1166,9 @@ IOTA Gas Station Endpoint.
|
|
|
1155
1166
|
|
|
1156
1167
|
***
|
|
1157
1168
|
|
|
1158
|
-
### iotaGasStationAuthToken?
|
|
1169
|
+
### iotaGasStationAuthToken? {#iotagasstationauthtoken}
|
|
1159
1170
|
|
|
1160
|
-
> `optional` **iotaGasStationAuthToken
|
|
1171
|
+
> `optional` **iotaGasStationAuthToken?**: `string`
|
|
1161
1172
|
|
|
1162
1173
|
IOTA Gas Station Authentication Token.
|
|
1163
1174
|
|
|
@@ -1167,9 +1178,9 @@ IOTA Gas Station Authentication Token.
|
|
|
1167
1178
|
|
|
1168
1179
|
***
|
|
1169
1180
|
|
|
1170
|
-
### universalResolverEndpoint?
|
|
1181
|
+
### universalResolverEndpoint? {#universalresolverendpoint}
|
|
1171
1182
|
|
|
1172
|
-
> `optional` **universalResolverEndpoint
|
|
1183
|
+
> `optional` **universalResolverEndpoint?**: `string`
|
|
1173
1184
|
|
|
1174
1185
|
Universal Resolver Endpoint.
|
|
1175
1186
|
|
|
@@ -1179,9 +1190,9 @@ Universal Resolver Endpoint.
|
|
|
1179
1190
|
|
|
1180
1191
|
***
|
|
1181
1192
|
|
|
1182
|
-
### identityProfileConnector?
|
|
1193
|
+
### identityProfileConnector? {#identityprofileconnector}
|
|
1183
1194
|
|
|
1184
|
-
> `optional` **identityProfileConnector
|
|
1195
|
+
> `optional` **identityProfileConnector?**: `string`
|
|
1185
1196
|
|
|
1186
1197
|
The type of identity profile connector: entity-storage.
|
|
1187
1198
|
|
|
@@ -1191,9 +1202,9 @@ The type of identity profile connector: entity-storage.
|
|
|
1191
1202
|
|
|
1192
1203
|
***
|
|
1193
1204
|
|
|
1194
|
-
### immutableProofVerificationMethodId?
|
|
1205
|
+
### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
|
|
1195
1206
|
|
|
1196
|
-
> `optional` **immutableProofVerificationMethodId
|
|
1207
|
+
> `optional` **immutableProofVerificationMethodId?**: `string`
|
|
1197
1208
|
|
|
1198
1209
|
The identity verification method id to use with immutable proofs.
|
|
1199
1210
|
|
|
@@ -1203,9 +1214,9 @@ The identity verification method id to use with immutable proofs.
|
|
|
1203
1214
|
|
|
1204
1215
|
***
|
|
1205
1216
|
|
|
1206
|
-
### attestationConnector?
|
|
1217
|
+
### attestationConnector? {#attestationconnector}
|
|
1207
1218
|
|
|
1208
|
-
> `optional` **attestationConnector
|
|
1219
|
+
> `optional` **attestationConnector?**: `string`
|
|
1209
1220
|
|
|
1210
1221
|
The type of attestation connector: entity-storage, iota.
|
|
1211
1222
|
|
|
@@ -1215,9 +1226,9 @@ The type of attestation connector: entity-storage, iota.
|
|
|
1215
1226
|
|
|
1216
1227
|
***
|
|
1217
1228
|
|
|
1218
|
-
### attestationVerificationMethodId?
|
|
1229
|
+
### attestationVerificationMethodId? {#attestationverificationmethodid}
|
|
1219
1230
|
|
|
1220
|
-
> `optional` **attestationVerificationMethodId
|
|
1231
|
+
> `optional` **attestationVerificationMethodId?**: `string`
|
|
1221
1232
|
|
|
1222
1233
|
The identity verification method id to use with attestation.
|
|
1223
1234
|
|
|
@@ -1227,9 +1238,9 @@ The identity verification method id to use with attestation.
|
|
|
1227
1238
|
|
|
1228
1239
|
***
|
|
1229
1240
|
|
|
1230
|
-
### dataProcessingEnabled?
|
|
1241
|
+
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
1231
1242
|
|
|
1232
|
-
> `optional` **dataProcessingEnabled
|
|
1243
|
+
> `optional` **dataProcessingEnabled?**: `string`
|
|
1233
1244
|
|
|
1234
1245
|
Is the data processing enabled, defaults to false.
|
|
1235
1246
|
|
|
@@ -1239,9 +1250,9 @@ Is the data processing enabled, defaults to false.
|
|
|
1239
1250
|
|
|
1240
1251
|
***
|
|
1241
1252
|
|
|
1242
|
-
### dataConverterConnectors?
|
|
1253
|
+
### dataConverterConnectors? {#dataconverterconnectors}
|
|
1243
1254
|
|
|
1244
|
-
> `optional` **dataConverterConnectors
|
|
1255
|
+
> `optional` **dataConverterConnectors?**: `string`
|
|
1245
1256
|
|
|
1246
1257
|
The type of the default data converters, can be a comma separated list: json, xml.
|
|
1247
1258
|
|
|
@@ -1251,9 +1262,9 @@ The type of the default data converters, can be a comma separated list: json, xm
|
|
|
1251
1262
|
|
|
1252
1263
|
***
|
|
1253
1264
|
|
|
1254
|
-
### dataExtractorConnectors?
|
|
1265
|
+
### dataExtractorConnectors? {#dataextractorconnectors}
|
|
1255
1266
|
|
|
1256
|
-
> `optional` **dataExtractorConnectors
|
|
1267
|
+
> `optional` **dataExtractorConnectors?**: `string`
|
|
1257
1268
|
|
|
1258
1269
|
The type of the default data extractor, can be a comma separated list: json-path.
|
|
1259
1270
|
|
|
@@ -1263,9 +1274,9 @@ The type of the default data extractor, can be a comma separated list: json-path
|
|
|
1263
1274
|
|
|
1264
1275
|
***
|
|
1265
1276
|
|
|
1266
|
-
### auditableItemGraphEnabled?
|
|
1277
|
+
### auditableItemGraphEnabled? {#auditableitemgraphenabled}
|
|
1267
1278
|
|
|
1268
|
-
> `optional` **auditableItemGraphEnabled
|
|
1279
|
+
> `optional` **auditableItemGraphEnabled?**: `string`
|
|
1269
1280
|
|
|
1270
1281
|
Is the auditable item graph enabled, defaults to false.
|
|
1271
1282
|
|
|
@@ -1275,9 +1286,9 @@ Is the auditable item graph enabled, defaults to false.
|
|
|
1275
1286
|
|
|
1276
1287
|
***
|
|
1277
1288
|
|
|
1278
|
-
### auditableItemStreamEnabled?
|
|
1289
|
+
### auditableItemStreamEnabled? {#auditableitemstreamenabled}
|
|
1279
1290
|
|
|
1280
|
-
> `optional` **auditableItemStreamEnabled
|
|
1291
|
+
> `optional` **auditableItemStreamEnabled?**: `string`
|
|
1281
1292
|
|
|
1282
1293
|
Is the auditable item stream enabled, defaults to false.
|
|
1283
1294
|
|
|
@@ -1287,9 +1298,9 @@ Is the auditable item stream enabled, defaults to false.
|
|
|
1287
1298
|
|
|
1288
1299
|
***
|
|
1289
1300
|
|
|
1290
|
-
### documentManagementEnabled?
|
|
1301
|
+
### documentManagementEnabled? {#documentmanagementenabled}
|
|
1291
1302
|
|
|
1292
|
-
> `optional` **documentManagementEnabled
|
|
1303
|
+
> `optional` **documentManagementEnabled?**: `string`
|
|
1293
1304
|
|
|
1294
1305
|
Is the document management enabled, defaults to false.
|
|
1295
1306
|
|
|
@@ -1299,9 +1310,9 @@ Is the document management enabled, defaults to false.
|
|
|
1299
1310
|
|
|
1300
1311
|
***
|
|
1301
1312
|
|
|
1302
|
-
### synchronisedStorageEnabled?
|
|
1313
|
+
### synchronisedStorageEnabled? {#synchronisedstorageenabled}
|
|
1303
1314
|
|
|
1304
|
-
> `optional` **synchronisedStorageEnabled
|
|
1315
|
+
> `optional` **synchronisedStorageEnabled?**: `string`
|
|
1305
1316
|
|
|
1306
1317
|
Is the synchronised storage enabled, defaults to false.
|
|
1307
1318
|
|
|
@@ -1311,9 +1322,9 @@ Is the synchronised storage enabled, defaults to false.
|
|
|
1311
1322
|
|
|
1312
1323
|
***
|
|
1313
1324
|
|
|
1314
|
-
### synchronisedStorageTrustedUrl?
|
|
1325
|
+
### synchronisedStorageTrustedUrl? {#synchronisedstoragetrustedurl}
|
|
1315
1326
|
|
|
1316
|
-
> `optional` **synchronisedStorageTrustedUrl
|
|
1327
|
+
> `optional` **synchronisedStorageTrustedUrl?**: `string`
|
|
1317
1328
|
|
|
1318
1329
|
Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
|
|
1319
1330
|
|
|
@@ -1323,9 +1334,9 @@ Url which points to the api for a trusted synchronised storage node, not require
|
|
|
1323
1334
|
|
|
1324
1335
|
***
|
|
1325
1336
|
|
|
1326
|
-
### synchronisedStorageVerifiableStorageKeyId?
|
|
1337
|
+
### synchronisedStorageVerifiableStorageKeyId? {#synchronisedstorageverifiablestoragekeyid}
|
|
1327
1338
|
|
|
1328
|
-
> `optional` **synchronisedStorageVerifiableStorageKeyId
|
|
1339
|
+
> `optional` **synchronisedStorageVerifiableStorageKeyId?**: `string`
|
|
1329
1340
|
|
|
1330
1341
|
The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
|
|
1331
1342
|
This only required if using a custom verifiable storage item, otherwise it will default to the network name.
|
|
@@ -1336,9 +1347,9 @@ This only required if using a custom verifiable storage item, otherwise it will
|
|
|
1336
1347
|
|
|
1337
1348
|
***
|
|
1338
1349
|
|
|
1339
|
-
### synchronisedStorageBlobStorageEncryptionKeyId?
|
|
1350
|
+
### synchronisedStorageBlobStorageEncryptionKeyId? {#synchronisedstorageblobstorageencryptionkeyid}
|
|
1340
1351
|
|
|
1341
|
-
> `optional` **synchronisedStorageBlobStorageEncryptionKeyId
|
|
1352
|
+
> `optional` **synchronisedStorageBlobStorageEncryptionKeyId?**: `string`
|
|
1342
1353
|
|
|
1343
1354
|
The key from the vault which is used to encrypt the synchronised storage blobs.
|
|
1344
1355
|
Only required for trusted nodes, as regular nodes will request from the trusted nodes.
|
|
@@ -1350,9 +1361,9 @@ Defaults to synchronised-storage-blob-encryption
|
|
|
1350
1361
|
|
|
1351
1362
|
***
|
|
1352
1363
|
|
|
1353
|
-
### synchronisedStorageBlobStorageKey?
|
|
1364
|
+
### synchronisedStorageBlobStorageKey? {#synchronisedstorageblobstoragekey}
|
|
1354
1365
|
|
|
1355
|
-
> `optional` **synchronisedStorageBlobStorageKey
|
|
1366
|
+
> `optional` **synchronisedStorageBlobStorageKey?**: `string`
|
|
1356
1367
|
|
|
1357
1368
|
The key used for blob encryption, should be ChaCha20Poly1305 encoded as base64.
|
|
1358
1369
|
Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
@@ -1363,9 +1374,9 @@ Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
|
1363
1374
|
|
|
1364
1375
|
***
|
|
1365
1376
|
|
|
1366
|
-
### synchronisedStorageEntityUpdateIntervalMinutes?
|
|
1377
|
+
### synchronisedStorageEntityUpdateIntervalMinutes? {#synchronisedstorageentityupdateintervalminutes}
|
|
1367
1378
|
|
|
1368
|
-
> `optional` **synchronisedStorageEntityUpdateIntervalMinutes
|
|
1379
|
+
> `optional` **synchronisedStorageEntityUpdateIntervalMinutes?**: `string`
|
|
1369
1380
|
|
|
1370
1381
|
How often to check for entity updates in minutes.
|
|
1371
1382
|
|
|
@@ -1381,9 +1392,9 @@ How often to check for entity updates in minutes.
|
|
|
1381
1392
|
|
|
1382
1393
|
***
|
|
1383
1394
|
|
|
1384
|
-
### synchronisedStorageConsolidationIntervalMinutes?
|
|
1395
|
+
### synchronisedStorageConsolidationIntervalMinutes? {#synchronisedstorageconsolidationintervalminutes}
|
|
1385
1396
|
|
|
1386
|
-
> `optional` **synchronisedStorageConsolidationIntervalMinutes
|
|
1397
|
+
> `optional` **synchronisedStorageConsolidationIntervalMinutes?**: `string`
|
|
1387
1398
|
|
|
1388
1399
|
Interval to perform consolidation of changesets, only used if this is a trusted node.
|
|
1389
1400
|
|
|
@@ -1399,9 +1410,9 @@ Interval to perform consolidation of changesets, only used if this is a trusted
|
|
|
1399
1410
|
|
|
1400
1411
|
***
|
|
1401
1412
|
|
|
1402
|
-
### synchronisedStorageConsolidationBatchSize?
|
|
1413
|
+
### synchronisedStorageConsolidationBatchSize? {#synchronisedstorageconsolidationbatchsize}
|
|
1403
1414
|
|
|
1404
|
-
> `optional` **synchronisedStorageConsolidationBatchSize
|
|
1415
|
+
> `optional` **synchronisedStorageConsolidationBatchSize?**: `string`
|
|
1405
1416
|
|
|
1406
1417
|
The number of entities to process in a single consolidation batch, only used if this is a trusted node.
|
|
1407
1418
|
|
|
@@ -1417,9 +1428,9 @@ The number of entities to process in a single consolidation batch, only used if
|
|
|
1417
1428
|
|
|
1418
1429
|
***
|
|
1419
1430
|
|
|
1420
|
-
### synchronisedStorageMaxConsolidations?
|
|
1431
|
+
### synchronisedStorageMaxConsolidations? {#synchronisedstoragemaxconsolidations}
|
|
1421
1432
|
|
|
1422
|
-
> `optional` **synchronisedStorageMaxConsolidations
|
|
1433
|
+
> `optional` **synchronisedStorageMaxConsolidations?**: `string`
|
|
1423
1434
|
|
|
1424
1435
|
The maximum number of consolidations to keep in storage, only used if this is a trusted node.
|
|
1425
1436
|
|
|
@@ -1435,9 +1446,9 @@ The maximum number of consolidations to keep in storage, only used if this is a
|
|
|
1435
1446
|
|
|
1436
1447
|
***
|
|
1437
1448
|
|
|
1438
|
-
### federatedCatalogueEnabled?
|
|
1449
|
+
### federatedCatalogueEnabled? {#federatedcatalogueenabled}
|
|
1439
1450
|
|
|
1440
|
-
> `optional` **federatedCatalogueEnabled
|
|
1451
|
+
> `optional` **federatedCatalogueEnabled?**: `string`
|
|
1441
1452
|
|
|
1442
1453
|
Is the federated catalogue enabled, defaults to false.
|
|
1443
1454
|
|
|
@@ -1447,33 +1458,83 @@ Is the federated catalogue enabled, defaults to false.
|
|
|
1447
1458
|
|
|
1448
1459
|
***
|
|
1449
1460
|
|
|
1450
|
-
###
|
|
1461
|
+
### federatedCatalogueFilters? {#federatedcataloguefilters}
|
|
1451
1462
|
|
|
1452
|
-
> `optional` **
|
|
1463
|
+
> `optional` **federatedCatalogueFilters?**: `string`
|
|
1453
1464
|
|
|
1454
|
-
Federated catalog
|
|
1465
|
+
Federated catalog filters, command separated list of filters to add.
|
|
1455
1466
|
|
|
1456
1467
|
#### Inherited from
|
|
1457
1468
|
|
|
1458
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1469
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineEnvironmentVariables.md#federatedcataloguefilters)
|
|
1459
1470
|
|
|
1460
1471
|
***
|
|
1461
1472
|
|
|
1462
|
-
###
|
|
1473
|
+
### trustEnabled? {#trustenabled}
|
|
1463
1474
|
|
|
1464
|
-
> `optional` **
|
|
1475
|
+
> `optional` **trustEnabled?**: `string`
|
|
1465
1476
|
|
|
1466
|
-
|
|
1477
|
+
Is the trust management enabled, defaults to false.
|
|
1467
1478
|
|
|
1468
1479
|
#### Inherited from
|
|
1469
1480
|
|
|
1470
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1481
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustEnabled`](IEngineEnvironmentVariables.md#trustenabled)
|
|
1471
1482
|
|
|
1472
1483
|
***
|
|
1473
1484
|
|
|
1474
|
-
###
|
|
1485
|
+
### trustGenerators? {#trustgenerators}
|
|
1475
1486
|
|
|
1476
|
-
> `optional` **
|
|
1487
|
+
> `optional` **trustGenerators?**: `string`
|
|
1488
|
+
|
|
1489
|
+
The trust generators to add to the factory, comma separated list.
|
|
1490
|
+
|
|
1491
|
+
#### Inherited from
|
|
1492
|
+
|
|
1493
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustGenerators`](IEngineEnvironmentVariables.md#trustgenerators)
|
|
1494
|
+
|
|
1495
|
+
***
|
|
1496
|
+
|
|
1497
|
+
### trustVerifiers? {#trustverifiers}
|
|
1498
|
+
|
|
1499
|
+
> `optional` **trustVerifiers?**: `string`
|
|
1500
|
+
|
|
1501
|
+
The trust verifiers to add to the factory, comma separated list.
|
|
1502
|
+
|
|
1503
|
+
#### Inherited from
|
|
1504
|
+
|
|
1505
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerifiers`](IEngineEnvironmentVariables.md#trustverifiers)
|
|
1506
|
+
|
|
1507
|
+
***
|
|
1508
|
+
|
|
1509
|
+
### trustVerificationMethodId? {#trustverificationmethodid}
|
|
1510
|
+
|
|
1511
|
+
> `optional` **trustVerificationMethodId?**: `string`
|
|
1512
|
+
|
|
1513
|
+
The verification method to use for trust identities.
|
|
1514
|
+
Defaults to trust-assertion.
|
|
1515
|
+
|
|
1516
|
+
#### Inherited from
|
|
1517
|
+
|
|
1518
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineEnvironmentVariables.md#trustverificationmethodid)
|
|
1519
|
+
|
|
1520
|
+
***
|
|
1521
|
+
|
|
1522
|
+
### trustJwtTtlSeconds? {#trustjwtttlseconds}
|
|
1523
|
+
|
|
1524
|
+
> `optional` **trustJwtTtlSeconds?**: `string`
|
|
1525
|
+
|
|
1526
|
+
The trust time to live for generating JWTs.
|
|
1527
|
+
Defaults to undefined for never expiring.
|
|
1528
|
+
|
|
1529
|
+
#### Inherited from
|
|
1530
|
+
|
|
1531
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustJwtTtlSeconds`](IEngineEnvironmentVariables.md#trustjwtttlseconds)
|
|
1532
|
+
|
|
1533
|
+
***
|
|
1534
|
+
|
|
1535
|
+
### rightsManagementEnabled? {#rightsmanagementenabled}
|
|
1536
|
+
|
|
1537
|
+
> `optional` **rightsManagementEnabled?**: `string`
|
|
1477
1538
|
|
|
1478
1539
|
Is the rights management enabled, defaults to false.
|
|
1479
1540
|
|
|
@@ -1483,112 +1544,117 @@ Is the rights management enabled, defaults to false.
|
|
|
1483
1544
|
|
|
1484
1545
|
***
|
|
1485
1546
|
|
|
1486
|
-
###
|
|
1547
|
+
### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
|
|
1487
1548
|
|
|
1488
|
-
> `optional` **
|
|
1549
|
+
> `optional` **rightsManagementCallbackPath?**: `string`
|
|
1489
1550
|
|
|
1490
|
-
What is the
|
|
1551
|
+
What is the callback path for rights management negotiations, will be combined with hosting public url e.g. /callback.
|
|
1491
1552
|
|
|
1492
1553
|
#### Inherited from
|
|
1493
1554
|
|
|
1494
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1555
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementCallbackPath`](IEngineEnvironmentVariables.md#rightsmanagementcallbackpath)
|
|
1495
1556
|
|
|
1496
1557
|
***
|
|
1497
1558
|
|
|
1498
|
-
###
|
|
1559
|
+
### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
|
|
1499
1560
|
|
|
1500
|
-
> `optional` **
|
|
1561
|
+
> `optional` **rightsManagementPolicyInformationSources?**: `string`
|
|
1501
1562
|
|
|
1502
|
-
The rights management
|
|
1503
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1563
|
+
The rights management policy information sources to add to the factory.
|
|
1504
1564
|
|
|
1505
1565
|
#### Inherited from
|
|
1506
1566
|
|
|
1507
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1567
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
|
|
1508
1568
|
|
|
1509
1569
|
***
|
|
1510
1570
|
|
|
1511
|
-
###
|
|
1571
|
+
### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
|
|
1512
1572
|
|
|
1513
|
-
> `optional` **
|
|
1573
|
+
> `optional` **rightsManagementPolicyNegotiators?**: `string`
|
|
1514
1574
|
|
|
1515
|
-
The rights management
|
|
1516
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1575
|
+
The rights management policy negotiators sources to add to the factory.
|
|
1517
1576
|
|
|
1518
1577
|
#### Inherited from
|
|
1519
1578
|
|
|
1520
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1579
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineEnvironmentVariables.md#rightsmanagementpolicynegotiators)
|
|
1521
1580
|
|
|
1522
1581
|
***
|
|
1523
1582
|
|
|
1524
|
-
###
|
|
1583
|
+
### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
|
|
1525
1584
|
|
|
1526
|
-
> `optional` **
|
|
1585
|
+
> `optional` **rightsManagementPolicyRequesters?**: `string`
|
|
1527
1586
|
|
|
1528
|
-
The rights management
|
|
1529
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1587
|
+
The rights management policy requesters to add to the factory.
|
|
1530
1588
|
|
|
1531
1589
|
#### Inherited from
|
|
1532
1590
|
|
|
1533
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1591
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyrequesters)
|
|
1534
1592
|
|
|
1535
1593
|
***
|
|
1536
1594
|
|
|
1537
|
-
###
|
|
1595
|
+
### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
|
|
1538
1596
|
|
|
1539
|
-
> `optional` **
|
|
1597
|
+
> `optional` **rightsManagementPolicyExecutionActions?**: `string`
|
|
1540
1598
|
|
|
1541
|
-
The rights management
|
|
1542
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1599
|
+
The rights management policy execution actions to add to the factory.
|
|
1543
1600
|
|
|
1544
1601
|
#### Inherited from
|
|
1545
1602
|
|
|
1546
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1603
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
|
|
1547
1604
|
|
|
1548
1605
|
***
|
|
1549
1606
|
|
|
1550
|
-
###
|
|
1607
|
+
### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
|
|
1551
1608
|
|
|
1552
|
-
> `optional` **
|
|
1609
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
|
|
1553
1610
|
|
|
1554
|
-
The rights management
|
|
1555
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1611
|
+
The rights management policy enforcement processors to add to the factory.
|
|
1556
1612
|
|
|
1557
1613
|
#### Inherited from
|
|
1558
1614
|
|
|
1559
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1615
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
|
|
1560
1616
|
|
|
1561
1617
|
***
|
|
1562
1618
|
|
|
1563
|
-
###
|
|
1619
|
+
### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
|
|
1564
1620
|
|
|
1565
|
-
> `optional` **
|
|
1621
|
+
> `optional` **rightsManagementPolicyArbiters?**: `string`
|
|
1566
1622
|
|
|
1567
|
-
The rights management
|
|
1568
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1623
|
+
The rights management policy arbiters to add to the factory.
|
|
1569
1624
|
|
|
1570
1625
|
#### Inherited from
|
|
1571
1626
|
|
|
1572
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1627
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyarbiters)
|
|
1573
1628
|
|
|
1574
1629
|
***
|
|
1575
1630
|
|
|
1576
|
-
###
|
|
1631
|
+
### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
|
|
1577
1632
|
|
|
1578
|
-
> `optional` **
|
|
1633
|
+
> `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
|
|
1579
1634
|
|
|
1580
|
-
The rights management
|
|
1581
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1635
|
+
The rights management policy obligation enforcers to add to the factory.
|
|
1582
1636
|
|
|
1583
1637
|
#### Inherited from
|
|
1584
1638
|
|
|
1585
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1639
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyObligationEnforcers`](IEngineEnvironmentVariables.md#rightsmanagementpolicyobligationenforcers)
|
|
1586
1640
|
|
|
1587
1641
|
***
|
|
1588
1642
|
|
|
1589
|
-
###
|
|
1643
|
+
### backgroundTasksEnabled? {#backgroundtasksenabled}
|
|
1590
1644
|
|
|
1591
|
-
> `optional` **
|
|
1645
|
+
> `optional` **backgroundTasksEnabled?**: `string`
|
|
1646
|
+
|
|
1647
|
+
Are background tasks enabled, defaults to false.
|
|
1648
|
+
|
|
1649
|
+
#### Inherited from
|
|
1650
|
+
|
|
1651
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`backgroundTasksEnabled`](IEngineEnvironmentVariables.md#backgroundtasksenabled)
|
|
1652
|
+
|
|
1653
|
+
***
|
|
1654
|
+
|
|
1655
|
+
### taskSchedulerEnabled? {#taskschedulerenabled}
|
|
1656
|
+
|
|
1657
|
+
> `optional` **taskSchedulerEnabled?**: `string`
|
|
1592
1658
|
|
|
1593
1659
|
Is the task scheduler enabled, defaults to false.
|
|
1594
1660
|
|
|
@@ -1598,21 +1664,21 @@ Is the task scheduler enabled, defaults to false.
|
|
|
1598
1664
|
|
|
1599
1665
|
***
|
|
1600
1666
|
|
|
1601
|
-
###
|
|
1667
|
+
### dataspaceEnabled? {#dataspaceenabled}
|
|
1602
1668
|
|
|
1603
|
-
> `optional` **
|
|
1669
|
+
> `optional` **dataspaceEnabled?**: `string`
|
|
1604
1670
|
|
|
1605
|
-
Is the
|
|
1671
|
+
Is the dataspace enabled, defaults to false.
|
|
1606
1672
|
|
|
1607
1673
|
#### Inherited from
|
|
1608
1674
|
|
|
1609
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1675
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceEnabled`](IEngineEnvironmentVariables.md#dataspaceenabled)
|
|
1610
1676
|
|
|
1611
1677
|
***
|
|
1612
1678
|
|
|
1613
|
-
###
|
|
1679
|
+
### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
|
|
1614
1680
|
|
|
1615
|
-
> `optional` **
|
|
1681
|
+
> `optional` **dataspaceRetainActivityLogsFor?**: `string`
|
|
1616
1682
|
|
|
1617
1683
|
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1618
1684
|
|
|
@@ -1624,13 +1690,13 @@ The length of time to retain the activity logs for in minutes, set to -1 to keep
|
|
|
1624
1690
|
|
|
1625
1691
|
#### Inherited from
|
|
1626
1692
|
|
|
1627
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1693
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceRetainActivityLogsFor`](IEngineEnvironmentVariables.md#dataspaceretainactivitylogsfor)
|
|
1628
1694
|
|
|
1629
1695
|
***
|
|
1630
1696
|
|
|
1631
|
-
###
|
|
1697
|
+
### dataspaceActivityLogsCleanUpInterval? {#dataspaceactivitylogscleanupinterval}
|
|
1632
1698
|
|
|
1633
|
-
> `optional` **
|
|
1699
|
+
> `optional` **dataspaceActivityLogsCleanUpInterval?**: `string`
|
|
1634
1700
|
|
|
1635
1701
|
The interval for cleaning up the activity logs.
|
|
1636
1702
|
|
|
@@ -1642,38 +1708,28 @@ The interval for cleaning up the activity logs.
|
|
|
1642
1708
|
|
|
1643
1709
|
#### Inherited from
|
|
1644
1710
|
|
|
1645
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1711
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceActivityLogsCleanUpInterval`](IEngineEnvironmentVariables.md#dataspaceactivitylogscleanupinterval)
|
|
1646
1712
|
|
|
1647
1713
|
***
|
|
1648
1714
|
|
|
1649
|
-
###
|
|
1715
|
+
### dataspaceDataPlanePath? {#dataspacedataplanepath}
|
|
1650
1716
|
|
|
1651
|
-
> `optional` **
|
|
1717
|
+
> `optional` **dataspaceDataPlanePath?**: `string`
|
|
1652
1718
|
|
|
1653
|
-
|
|
1719
|
+
The data plane path for PULL transfers (path only, not full URL).
|
|
1720
|
+
Will be combined with public origin from hosting component.
|
|
1721
|
+
Required if PULL transfers should be supported.
|
|
1722
|
+
Example: "dataspace/entities"
|
|
1654
1723
|
|
|
1655
1724
|
#### Inherited from
|
|
1656
1725
|
|
|
1657
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1726
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceDataPlanePath`](IEngineEnvironmentVariables.md#dataspacedataplanepath)
|
|
1658
1727
|
|
|
1659
1728
|
***
|
|
1660
1729
|
|
|
1661
|
-
###
|
|
1662
|
-
|
|
1663
|
-
> `optional` **vcAuthenticationVerificationMethodId**: `string`
|
|
1730
|
+
### extensions? {#extensions}
|
|
1664
1731
|
|
|
1665
|
-
|
|
1666
|
-
Defaults to node-authentication-assertion.
|
|
1667
|
-
|
|
1668
|
-
#### Inherited from
|
|
1669
|
-
|
|
1670
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vcAuthenticationVerificationMethodId`](IEngineEnvironmentVariables.md#vcauthenticationverificationmethodid)
|
|
1671
|
-
|
|
1672
|
-
***
|
|
1673
|
-
|
|
1674
|
-
### extensions?
|
|
1675
|
-
|
|
1676
|
-
> `optional` **extensions**: `string`
|
|
1732
|
+
> `optional` **extensions?**: `string`
|
|
1677
1733
|
|
|
1678
1734
|
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|
|
1679
1735
|
|
|
@@ -1683,104 +1739,112 @@ A comma separated list of additional node extensions to load, the initialiseExte
|
|
|
1683
1739
|
|
|
1684
1740
|
***
|
|
1685
1741
|
|
|
1686
|
-
### port?
|
|
1742
|
+
### port? {#port}
|
|
1687
1743
|
|
|
1688
|
-
> `optional` **port
|
|
1744
|
+
> `optional` **port?**: `string`
|
|
1689
1745
|
|
|
1690
1746
|
The port to serve the API from.
|
|
1691
1747
|
|
|
1692
1748
|
***
|
|
1693
1749
|
|
|
1694
|
-
### host?
|
|
1750
|
+
### host? {#host}
|
|
1695
1751
|
|
|
1696
|
-
> `optional` **host
|
|
1752
|
+
> `optional` **host?**: `string`
|
|
1697
1753
|
|
|
1698
1754
|
The host to serve the API from.
|
|
1699
1755
|
|
|
1700
1756
|
***
|
|
1701
1757
|
|
|
1702
|
-
### corsOrigins?
|
|
1758
|
+
### corsOrigins? {#corsorigins}
|
|
1703
1759
|
|
|
1704
|
-
> `optional` **corsOrigins
|
|
1760
|
+
> `optional` **corsOrigins?**: `string`
|
|
1705
1761
|
|
|
1706
1762
|
The CORS origins to allow, defaults to *.
|
|
1707
1763
|
|
|
1708
1764
|
***
|
|
1709
1765
|
|
|
1710
|
-
### httpMethods?
|
|
1766
|
+
### httpMethods? {#httpmethods}
|
|
1711
1767
|
|
|
1712
|
-
> `optional` **httpMethods
|
|
1768
|
+
> `optional` **httpMethods?**: `string`
|
|
1713
1769
|
|
|
1714
1770
|
The CORS methods to allow, defaults to GET, POST, PUT, DELETE, OPTIONS.
|
|
1715
1771
|
|
|
1716
1772
|
***
|
|
1717
1773
|
|
|
1718
|
-
### httpAllowedHeaders?
|
|
1774
|
+
### httpAllowedHeaders? {#httpallowedheaders}
|
|
1719
1775
|
|
|
1720
|
-
> `optional` **httpAllowedHeaders
|
|
1776
|
+
> `optional` **httpAllowedHeaders?**: `string`
|
|
1721
1777
|
|
|
1722
1778
|
The CORS headers to allow.
|
|
1723
1779
|
|
|
1724
1780
|
***
|
|
1725
1781
|
|
|
1726
|
-
### httpExposedHeaders?
|
|
1782
|
+
### httpExposedHeaders? {#httpexposedheaders}
|
|
1727
1783
|
|
|
1728
|
-
> `optional` **httpExposedHeaders
|
|
1784
|
+
> `optional` **httpExposedHeaders?**: `string`
|
|
1729
1785
|
|
|
1730
1786
|
The CORS headers to expose.
|
|
1731
1787
|
|
|
1732
1788
|
***
|
|
1733
1789
|
|
|
1734
|
-
###
|
|
1790
|
+
### publicOrigin? {#publicorigin}
|
|
1791
|
+
|
|
1792
|
+
> `optional` **publicOrigin?**: `string`
|
|
1793
|
+
|
|
1794
|
+
The public origin URL for the API e.g. https://api.example.com:1234
|
|
1795
|
+
|
|
1796
|
+
***
|
|
1797
|
+
|
|
1798
|
+
### authAdminProcessorType? {#authadminprocessortype}
|
|
1735
1799
|
|
|
1736
|
-
> `optional` **authAdminProcessorType
|
|
1800
|
+
> `optional` **authAdminProcessorType?**: `string`
|
|
1737
1801
|
|
|
1738
1802
|
The type of auth admin processor to use on the API: entity-storage.
|
|
1739
1803
|
|
|
1740
1804
|
***
|
|
1741
1805
|
|
|
1742
|
-
### authProcessorType?
|
|
1806
|
+
### authProcessorType? {#authprocessortype}
|
|
1743
1807
|
|
|
1744
|
-
> `optional` **authProcessorType
|
|
1808
|
+
> `optional` **authProcessorType?**: `string`
|
|
1745
1809
|
|
|
1746
1810
|
The type of auth processor to use on the API: entity-storage.
|
|
1747
1811
|
|
|
1748
1812
|
***
|
|
1749
1813
|
|
|
1750
|
-
### authSigningKeyId?
|
|
1814
|
+
### authSigningKeyId? {#authsigningkeyid}
|
|
1751
1815
|
|
|
1752
|
-
> `optional` **authSigningKeyId
|
|
1816
|
+
> `optional` **authSigningKeyId?**: `string`
|
|
1753
1817
|
|
|
1754
1818
|
The id of the key in the vault to use for signing in auth operations.
|
|
1755
1819
|
|
|
1756
1820
|
***
|
|
1757
1821
|
|
|
1758
|
-
### mimeTypeProcessors?
|
|
1822
|
+
### mimeTypeProcessors? {#mimetypeprocessors}
|
|
1759
1823
|
|
|
1760
|
-
> `optional` **mimeTypeProcessors
|
|
1824
|
+
> `optional` **mimeTypeProcessors?**: `string`
|
|
1761
1825
|
|
|
1762
1826
|
Additional MIME type processors to include, comma separated.
|
|
1763
1827
|
|
|
1764
1828
|
***
|
|
1765
1829
|
|
|
1766
|
-
### routeLoggingIncludeBody?
|
|
1830
|
+
### routeLoggingIncludeBody? {#routeloggingincludebody}
|
|
1767
1831
|
|
|
1768
|
-
> `optional` **routeLoggingIncludeBody
|
|
1832
|
+
> `optional` **routeLoggingIncludeBody?**: `string`
|
|
1769
1833
|
|
|
1770
1834
|
Include the body in the REST logging output, useful for debugging.
|
|
1771
1835
|
|
|
1772
1836
|
***
|
|
1773
1837
|
|
|
1774
|
-
### routeLoggingFullBase64?
|
|
1838
|
+
### routeLoggingFullBase64? {#routeloggingfullbase64}
|
|
1775
1839
|
|
|
1776
|
-
> `optional` **routeLoggingFullBase64
|
|
1840
|
+
> `optional` **routeLoggingFullBase64?**: `string`
|
|
1777
1841
|
|
|
1778
1842
|
Include the full base 64 output in the REST logging output, useful for debugging.
|
|
1779
1843
|
|
|
1780
1844
|
***
|
|
1781
1845
|
|
|
1782
|
-
### routeLoggingObfuscateProperties?
|
|
1846
|
+
### routeLoggingObfuscateProperties? {#routeloggingobfuscateproperties}
|
|
1783
1847
|
|
|
1784
|
-
> `optional` **routeLoggingObfuscateProperties
|
|
1848
|
+
> `optional` **routeLoggingObfuscateProperties?**: `string`
|
|
1785
1849
|
|
|
1786
1850
|
List of properties to obfuscate in the REST logging output, comma separated.
|