@twin.org/node-core 0.0.3-next.4 → 0.0.3-next.40
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 +443 -126
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +89 -32
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/builders/extensionsBuilder.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 +199 -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 +327 -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 +239 -0
- package/dist/es/commands/userCreate.js.map +1 -0
- package/dist/es/commands/userUpdate.js +154 -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 +19 -1
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/index.js +11 -4
- 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/models/nodeExtensionInitialiseEngineMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseEngineMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionShutdownMethod.js +4 -0
- package/dist/es/models/nodeExtensionShutdownMethod.js.map +1 -0
- package/dist/es/node.js +86 -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 +64 -1
- package/dist/types/builders/engineServerEnvBuilder.d.ts +11 -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 +51 -0
- package/dist/types/commands/userUpdate.d.ts +40 -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 +10 -1
- package/dist/types/index.d.ts +11 -4
- 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 +117 -60
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +8 -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/models/nodeExtensionInitialiseEngineMethod.d.ts +7 -0
- package/dist/types/models/nodeExtensionInitialiseEngineServerMethod.d.ts +8 -0
- package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +8 -0
- package/dist/types/models/nodeExtensionShutdownMethod.d.ts +5 -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 +532 -176
- 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/isAuthEntityStorageRequired.md +20 -0
- package/docs/reference/functions/isAutomationRequired.md +20 -0
- package/docs/reference/functions/isBackgroundTasksRequired.md +20 -0
- package/docs/reference/functions/isFederatedCatalogueRequired.md +20 -0
- package/docs/reference/functions/isImmutableProofRequired.md +20 -0
- package/docs/reference/functions/isRightsManagementRequired.md +20 -0
- package/docs/reference/functions/isTaskSchedulerRequired.md +20 -0
- package/docs/reference/functions/isTelemetryRequired.md +20 -0
- package/docs/reference/functions/isTrustRequired.md +20 -0
- package/docs/reference/functions/isUrlTransformerRequired.md +20 -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 +26 -13
- 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 +420 -311
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +545 -368
- package/docs/reference/interfaces/IModuleProtocol.md +3 -3
- package/docs/reference/interfaces/INodeEngineState.md +4 -20
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +551 -450
- 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/docs/reference/variables/URL_TRANSFORMER_ENCRYPTION_KEY_ID.md +3 -0
- package/locales/en.json +600 -30
- package/package.json +10 -6
- package/dist/es/bootstrap.js +0 -366
- package/dist/es/bootstrap.js.map +0 -1
- package/dist/es/identity.js +0 -182
- package/dist/es/identity.js.map +0 -1
- package/dist/es/models/nodeExtensionMethods.js +0 -2
- package/dist/es/models/nodeExtensionMethods.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/nodeExtensionMethods.d.ts +0 -27
- 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,93 @@ The type of telemetry connector: entity-storage.
|
|
|
1011
1010
|
|
|
1012
1011
|
***
|
|
1013
1012
|
|
|
1014
|
-
###
|
|
1013
|
+
### openTelemetryMeterName? {#opentelemetrymetername}
|
|
1014
|
+
|
|
1015
|
+
> `optional` **openTelemetryMeterName?**: `string`
|
|
1016
|
+
|
|
1017
|
+
The name of the Open Telemetry meter to use, only required if using open-telemetry as telemetry connector, defaults to twin-node.
|
|
1018
|
+
|
|
1019
|
+
#### Inherited from
|
|
1020
|
+
|
|
1021
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryMeterName`](IEngineEnvironmentVariables.md#opentelemetrymetername)
|
|
1022
|
+
|
|
1023
|
+
***
|
|
1024
|
+
|
|
1025
|
+
### openTelemetryMeterVersion? {#opentelemetrymeterversion}
|
|
1026
|
+
|
|
1027
|
+
> `optional` **openTelemetryMeterVersion?**: `string`
|
|
1028
|
+
|
|
1029
|
+
The version of the Open Telemetry metrics specification to use, only required if using open-telemetry as telemetry connector, defaults to 1.0.0.
|
|
1030
|
+
|
|
1031
|
+
#### Inherited from
|
|
1032
|
+
|
|
1033
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryMeterVersion`](IEngineEnvironmentVariables.md#opentelemetrymeterversion)
|
|
1034
|
+
|
|
1035
|
+
***
|
|
1036
|
+
|
|
1037
|
+
### openTelemetryReader? {#opentelemetryreader}
|
|
1038
|
+
|
|
1039
|
+
> `optional` **openTelemetryReader?**: `string`
|
|
1040
|
+
|
|
1041
|
+
The type of Open Telemetry metric reader to use, only required if using open-telemetry as telemetry connector, values: prometheus.
|
|
1042
|
+
|
|
1043
|
+
#### Inherited from
|
|
1044
|
+
|
|
1045
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryReader`](IEngineEnvironmentVariables.md#opentelemetryreader)
|
|
1046
|
+
|
|
1047
|
+
***
|
|
1048
|
+
|
|
1049
|
+
### openTelemetryPrometheusPort? {#opentelemetryprometheusport}
|
|
1050
|
+
|
|
1051
|
+
> `optional` **openTelemetryPrometheusPort?**: `string`
|
|
1052
|
+
|
|
1053
|
+
The port to use for the Open Telemetry Prometheus metrics server, only required if using open-telemetry as telemetry connector and prometheus as reader, defaults to 9464.
|
|
1054
|
+
|
|
1055
|
+
#### Inherited from
|
|
1056
|
+
|
|
1057
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`openTelemetryPrometheusPort`](IEngineEnvironmentVariables.md#opentelemetryprometheusport)
|
|
1058
|
+
|
|
1059
|
+
***
|
|
1060
|
+
|
|
1061
|
+
### telemetryMetricsCollectorIntervalSeconds? {#telemetrymetricscollectorintervalseconds}
|
|
1062
|
+
|
|
1063
|
+
> `optional` **telemetryMetricsCollectorIntervalSeconds?**: `string`
|
|
1064
|
+
|
|
1065
|
+
Polling interval in seconds for the telemetry metrics collector. Defaults to 60.
|
|
1066
|
+
|
|
1067
|
+
#### Inherited from
|
|
1068
|
+
|
|
1069
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryMetricsCollectorIntervalSeconds`](IEngineEnvironmentVariables.md#telemetrymetricscollectorintervalseconds)
|
|
1070
|
+
|
|
1071
|
+
***
|
|
1072
|
+
|
|
1073
|
+
### telemetryMetricsProducers? {#telemetrymetricsproducers}
|
|
1074
|
+
|
|
1075
|
+
> `optional` **telemetryMetricsProducers?**: `string`
|
|
1076
|
+
|
|
1077
|
+
The type of telemetry metrics producers, can be a comma separated list: system, process.
|
|
1078
|
+
|
|
1079
|
+
#### Inherited from
|
|
1080
|
+
|
|
1081
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryMetricsProducers`](IEngineEnvironmentVariables.md#telemetrymetricsproducers)
|
|
1082
|
+
|
|
1083
|
+
***
|
|
1084
|
+
|
|
1085
|
+
### telemetryMetricsProducerMaxHistory? {#telemetrymetricsproducermaxhistory}
|
|
1086
|
+
|
|
1087
|
+
> `optional` **telemetryMetricsProducerMaxHistory?**: `string`
|
|
1088
|
+
|
|
1089
|
+
Maximum number of values retained per telemetry metric (count-based history cap). Defaults to 1440.
|
|
1090
|
+
|
|
1091
|
+
#### Inherited from
|
|
1092
|
+
|
|
1093
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryMetricsProducerMaxHistory`](IEngineEnvironmentVariables.md#telemetrymetricsproducermaxhistory)
|
|
1094
|
+
|
|
1095
|
+
***
|
|
1096
|
+
|
|
1097
|
+
### faucetConnector? {#faucetconnector}
|
|
1015
1098
|
|
|
1016
|
-
> `optional` **faucetConnector
|
|
1099
|
+
> `optional` **faucetConnector?**: `string`
|
|
1017
1100
|
|
|
1018
1101
|
The type of faucet connector: entity-storage, iota.
|
|
1019
1102
|
|
|
@@ -1023,9 +1106,9 @@ The type of faucet connector: entity-storage, iota.
|
|
|
1023
1106
|
|
|
1024
1107
|
***
|
|
1025
1108
|
|
|
1026
|
-
### walletConnector?
|
|
1109
|
+
### walletConnector? {#walletconnector}
|
|
1027
1110
|
|
|
1028
|
-
> `optional` **walletConnector
|
|
1111
|
+
> `optional` **walletConnector?**: `string`
|
|
1029
1112
|
|
|
1030
1113
|
The type of wallet connector: entity-storage, iota.
|
|
1031
1114
|
|
|
@@ -1035,9 +1118,9 @@ The type of wallet connector: entity-storage, iota.
|
|
|
1035
1118
|
|
|
1036
1119
|
***
|
|
1037
1120
|
|
|
1038
|
-
### nftConnector?
|
|
1121
|
+
### nftConnector? {#nftconnector}
|
|
1039
1122
|
|
|
1040
|
-
> `optional` **nftConnector
|
|
1123
|
+
> `optional` **nftConnector?**: `string`
|
|
1041
1124
|
|
|
1042
1125
|
The type of NFT connector: entity-storage, iota.
|
|
1043
1126
|
|
|
@@ -1047,9 +1130,21 @@ The type of NFT connector: entity-storage, iota.
|
|
|
1047
1130
|
|
|
1048
1131
|
***
|
|
1049
1132
|
|
|
1050
|
-
###
|
|
1133
|
+
### notarizationConnector? {#notarizationconnector}
|
|
1134
|
+
|
|
1135
|
+
> `optional` **notarizationConnector?**: `string`
|
|
1051
1136
|
|
|
1052
|
-
|
|
1137
|
+
The type of notarization connector: entity-storage, iota.
|
|
1138
|
+
|
|
1139
|
+
#### Inherited from
|
|
1140
|
+
|
|
1141
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`notarizationConnector`](IEngineEnvironmentVariables.md#notarizationconnector)
|
|
1142
|
+
|
|
1143
|
+
***
|
|
1144
|
+
|
|
1145
|
+
### identityConnector? {#identityconnector}
|
|
1146
|
+
|
|
1147
|
+
> `optional` **identityConnector?**: `string`
|
|
1053
1148
|
|
|
1054
1149
|
The type of identity connector: entity-storage, iota.
|
|
1055
1150
|
|
|
@@ -1059,9 +1154,21 @@ The type of identity connector: entity-storage, iota.
|
|
|
1059
1154
|
|
|
1060
1155
|
***
|
|
1061
1156
|
|
|
1062
|
-
###
|
|
1157
|
+
### identityWalletAddressIndex? {#identitywalletaddressindex}
|
|
1158
|
+
|
|
1159
|
+
> `optional` **identityWalletAddressIndex?**: `string`
|
|
1063
1160
|
|
|
1064
|
-
|
|
1161
|
+
The index of the wallet address to use, defaults to 0.
|
|
1162
|
+
|
|
1163
|
+
#### Inherited from
|
|
1164
|
+
|
|
1165
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityWalletAddressIndex`](IEngineEnvironmentVariables.md#identitywalletaddressindex)
|
|
1166
|
+
|
|
1167
|
+
***
|
|
1168
|
+
|
|
1169
|
+
### identityResolverConnector? {#identityresolverconnector}
|
|
1170
|
+
|
|
1171
|
+
> `optional` **identityResolverConnector?**: `string`
|
|
1065
1172
|
|
|
1066
1173
|
The type of identity resolver connector: entity-storage, iota.
|
|
1067
1174
|
|
|
@@ -1071,9 +1178,9 @@ The type of identity resolver connector: entity-storage, iota.
|
|
|
1071
1178
|
|
|
1072
1179
|
***
|
|
1073
1180
|
|
|
1074
|
-
### verifiableStorageConnector?
|
|
1181
|
+
### verifiableStorageConnector? {#verifiablestorageconnector}
|
|
1075
1182
|
|
|
1076
|
-
> `optional` **verifiableStorageConnector
|
|
1183
|
+
> `optional` **verifiableStorageConnector?**: `string`
|
|
1077
1184
|
|
|
1078
1185
|
The type of verifiable storage connector: entity-storage, iota.
|
|
1079
1186
|
|
|
@@ -1083,9 +1190,9 @@ The type of verifiable storage connector: entity-storage, iota.
|
|
|
1083
1190
|
|
|
1084
1191
|
***
|
|
1085
1192
|
|
|
1086
|
-
### iotaFaucetEndpoint?
|
|
1193
|
+
### iotaFaucetEndpoint? {#iotafaucetendpoint}
|
|
1087
1194
|
|
|
1088
|
-
> `optional` **iotaFaucetEndpoint
|
|
1195
|
+
> `optional` **iotaFaucetEndpoint?**: `string`
|
|
1089
1196
|
|
|
1090
1197
|
IOTA Faucet Endpoint.
|
|
1091
1198
|
|
|
@@ -1095,9 +1202,9 @@ IOTA Faucet Endpoint.
|
|
|
1095
1202
|
|
|
1096
1203
|
***
|
|
1097
1204
|
|
|
1098
|
-
### iotaNodeEndpoint?
|
|
1205
|
+
### iotaNodeEndpoint? {#iotanodeendpoint}
|
|
1099
1206
|
|
|
1100
|
-
> `optional` **iotaNodeEndpoint
|
|
1207
|
+
> `optional` **iotaNodeEndpoint?**: `string`
|
|
1101
1208
|
|
|
1102
1209
|
IOTA Node Endpoint.
|
|
1103
1210
|
|
|
@@ -1107,9 +1214,9 @@ IOTA Node Endpoint.
|
|
|
1107
1214
|
|
|
1108
1215
|
***
|
|
1109
1216
|
|
|
1110
|
-
### iotaNetwork?
|
|
1217
|
+
### iotaNetwork? {#iotanetwork}
|
|
1111
1218
|
|
|
1112
|
-
> `optional` **iotaNetwork
|
|
1219
|
+
> `optional` **iotaNetwork?**: `string`
|
|
1113
1220
|
|
|
1114
1221
|
IOTA network.
|
|
1115
1222
|
|
|
@@ -1119,9 +1226,9 @@ IOTA network.
|
|
|
1119
1226
|
|
|
1120
1227
|
***
|
|
1121
1228
|
|
|
1122
|
-
### iotaCoinType?
|
|
1229
|
+
### iotaCoinType? {#iotacointype}
|
|
1123
1230
|
|
|
1124
|
-
> `optional` **iotaCoinType
|
|
1231
|
+
> `optional` **iotaCoinType?**: `string`
|
|
1125
1232
|
|
|
1126
1233
|
IOTA coin type.
|
|
1127
1234
|
|
|
@@ -1131,9 +1238,9 @@ IOTA coin type.
|
|
|
1131
1238
|
|
|
1132
1239
|
***
|
|
1133
1240
|
|
|
1134
|
-
### iotaExplorerEndpoint?
|
|
1241
|
+
### iotaExplorerEndpoint? {#iotaexplorerendpoint}
|
|
1135
1242
|
|
|
1136
|
-
> `optional` **iotaExplorerEndpoint
|
|
1243
|
+
> `optional` **iotaExplorerEndpoint?**: `string`
|
|
1137
1244
|
|
|
1138
1245
|
IOTA Explorer Endpoint.
|
|
1139
1246
|
|
|
@@ -1143,9 +1250,9 @@ IOTA Explorer Endpoint.
|
|
|
1143
1250
|
|
|
1144
1251
|
***
|
|
1145
1252
|
|
|
1146
|
-
### iotaGasStationEndpoint?
|
|
1253
|
+
### iotaGasStationEndpoint? {#iotagasstationendpoint}
|
|
1147
1254
|
|
|
1148
|
-
> `optional` **iotaGasStationEndpoint
|
|
1255
|
+
> `optional` **iotaGasStationEndpoint?**: `string`
|
|
1149
1256
|
|
|
1150
1257
|
IOTA Gas Station Endpoint.
|
|
1151
1258
|
|
|
@@ -1155,9 +1262,9 @@ IOTA Gas Station Endpoint.
|
|
|
1155
1262
|
|
|
1156
1263
|
***
|
|
1157
1264
|
|
|
1158
|
-
### iotaGasStationAuthToken?
|
|
1265
|
+
### iotaGasStationAuthToken? {#iotagasstationauthtoken}
|
|
1159
1266
|
|
|
1160
|
-
> `optional` **iotaGasStationAuthToken
|
|
1267
|
+
> `optional` **iotaGasStationAuthToken?**: `string`
|
|
1161
1268
|
|
|
1162
1269
|
IOTA Gas Station Authentication Token.
|
|
1163
1270
|
|
|
@@ -1167,9 +1274,9 @@ IOTA Gas Station Authentication Token.
|
|
|
1167
1274
|
|
|
1168
1275
|
***
|
|
1169
1276
|
|
|
1170
|
-
### universalResolverEndpoint?
|
|
1277
|
+
### universalResolverEndpoint? {#universalresolverendpoint}
|
|
1171
1278
|
|
|
1172
|
-
> `optional` **universalResolverEndpoint
|
|
1279
|
+
> `optional` **universalResolverEndpoint?**: `string`
|
|
1173
1280
|
|
|
1174
1281
|
Universal Resolver Endpoint.
|
|
1175
1282
|
|
|
@@ -1179,9 +1286,9 @@ Universal Resolver Endpoint.
|
|
|
1179
1286
|
|
|
1180
1287
|
***
|
|
1181
1288
|
|
|
1182
|
-
### identityProfileConnector?
|
|
1289
|
+
### identityProfileConnector? {#identityprofileconnector}
|
|
1183
1290
|
|
|
1184
|
-
> `optional` **identityProfileConnector
|
|
1291
|
+
> `optional` **identityProfileConnector?**: `string`
|
|
1185
1292
|
|
|
1186
1293
|
The type of identity profile connector: entity-storage.
|
|
1187
1294
|
|
|
@@ -1191,9 +1298,9 @@ The type of identity profile connector: entity-storage.
|
|
|
1191
1298
|
|
|
1192
1299
|
***
|
|
1193
1300
|
|
|
1194
|
-
### immutableProofVerificationMethodId?
|
|
1301
|
+
### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
|
|
1195
1302
|
|
|
1196
|
-
> `optional` **immutableProofVerificationMethodId
|
|
1303
|
+
> `optional` **immutableProofVerificationMethodId?**: `string`
|
|
1197
1304
|
|
|
1198
1305
|
The identity verification method id to use with immutable proofs.
|
|
1199
1306
|
|
|
@@ -1203,9 +1310,9 @@ The identity verification method id to use with immutable proofs.
|
|
|
1203
1310
|
|
|
1204
1311
|
***
|
|
1205
1312
|
|
|
1206
|
-
### attestationConnector?
|
|
1313
|
+
### attestationConnector? {#attestationconnector}
|
|
1207
1314
|
|
|
1208
|
-
> `optional` **attestationConnector
|
|
1315
|
+
> `optional` **attestationConnector?**: `string`
|
|
1209
1316
|
|
|
1210
1317
|
The type of attestation connector: entity-storage, iota.
|
|
1211
1318
|
|
|
@@ -1215,9 +1322,9 @@ The type of attestation connector: entity-storage, iota.
|
|
|
1215
1322
|
|
|
1216
1323
|
***
|
|
1217
1324
|
|
|
1218
|
-
### attestationVerificationMethodId?
|
|
1325
|
+
### attestationVerificationMethodId? {#attestationverificationmethodid}
|
|
1219
1326
|
|
|
1220
|
-
> `optional` **attestationVerificationMethodId
|
|
1327
|
+
> `optional` **attestationVerificationMethodId?**: `string`
|
|
1221
1328
|
|
|
1222
1329
|
The identity verification method id to use with attestation.
|
|
1223
1330
|
|
|
@@ -1227,9 +1334,9 @@ The identity verification method id to use with attestation.
|
|
|
1227
1334
|
|
|
1228
1335
|
***
|
|
1229
1336
|
|
|
1230
|
-
### dataProcessingEnabled?
|
|
1337
|
+
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
1231
1338
|
|
|
1232
|
-
> `optional` **dataProcessingEnabled
|
|
1339
|
+
> `optional` **dataProcessingEnabled?**: `string`
|
|
1233
1340
|
|
|
1234
1341
|
Is the data processing enabled, defaults to false.
|
|
1235
1342
|
|
|
@@ -1239,9 +1346,9 @@ Is the data processing enabled, defaults to false.
|
|
|
1239
1346
|
|
|
1240
1347
|
***
|
|
1241
1348
|
|
|
1242
|
-
### dataConverterConnectors?
|
|
1349
|
+
### dataConverterConnectors? {#dataconverterconnectors}
|
|
1243
1350
|
|
|
1244
|
-
> `optional` **dataConverterConnectors
|
|
1351
|
+
> `optional` **dataConverterConnectors?**: `string`
|
|
1245
1352
|
|
|
1246
1353
|
The type of the default data converters, can be a comma separated list: json, xml.
|
|
1247
1354
|
|
|
@@ -1251,9 +1358,9 @@ The type of the default data converters, can be a comma separated list: json, xm
|
|
|
1251
1358
|
|
|
1252
1359
|
***
|
|
1253
1360
|
|
|
1254
|
-
### dataExtractorConnectors?
|
|
1361
|
+
### dataExtractorConnectors? {#dataextractorconnectors}
|
|
1255
1362
|
|
|
1256
|
-
> `optional` **dataExtractorConnectors
|
|
1363
|
+
> `optional` **dataExtractorConnectors?**: `string`
|
|
1257
1364
|
|
|
1258
1365
|
The type of the default data extractor, can be a comma separated list: json-path.
|
|
1259
1366
|
|
|
@@ -1263,9 +1370,9 @@ The type of the default data extractor, can be a comma separated list: json-path
|
|
|
1263
1370
|
|
|
1264
1371
|
***
|
|
1265
1372
|
|
|
1266
|
-
### auditableItemGraphEnabled?
|
|
1373
|
+
### auditableItemGraphEnabled? {#auditableitemgraphenabled}
|
|
1267
1374
|
|
|
1268
|
-
> `optional` **auditableItemGraphEnabled
|
|
1375
|
+
> `optional` **auditableItemGraphEnabled?**: `string`
|
|
1269
1376
|
|
|
1270
1377
|
Is the auditable item graph enabled, defaults to false.
|
|
1271
1378
|
|
|
@@ -1275,9 +1382,9 @@ Is the auditable item graph enabled, defaults to false.
|
|
|
1275
1382
|
|
|
1276
1383
|
***
|
|
1277
1384
|
|
|
1278
|
-
### auditableItemStreamEnabled?
|
|
1385
|
+
### auditableItemStreamEnabled? {#auditableitemstreamenabled}
|
|
1279
1386
|
|
|
1280
|
-
> `optional` **auditableItemStreamEnabled
|
|
1387
|
+
> `optional` **auditableItemStreamEnabled?**: `string`
|
|
1281
1388
|
|
|
1282
1389
|
Is the auditable item stream enabled, defaults to false.
|
|
1283
1390
|
|
|
@@ -1287,9 +1394,9 @@ Is the auditable item stream enabled, defaults to false.
|
|
|
1287
1394
|
|
|
1288
1395
|
***
|
|
1289
1396
|
|
|
1290
|
-
### documentManagementEnabled?
|
|
1397
|
+
### documentManagementEnabled? {#documentmanagementenabled}
|
|
1291
1398
|
|
|
1292
|
-
> `optional` **documentManagementEnabled
|
|
1399
|
+
> `optional` **documentManagementEnabled?**: `string`
|
|
1293
1400
|
|
|
1294
1401
|
Is the document management enabled, defaults to false.
|
|
1295
1402
|
|
|
@@ -1299,9 +1406,9 @@ Is the document management enabled, defaults to false.
|
|
|
1299
1406
|
|
|
1300
1407
|
***
|
|
1301
1408
|
|
|
1302
|
-
### synchronisedStorageEnabled?
|
|
1409
|
+
### synchronisedStorageEnabled? {#synchronisedstorageenabled}
|
|
1303
1410
|
|
|
1304
|
-
> `optional` **synchronisedStorageEnabled
|
|
1411
|
+
> `optional` **synchronisedStorageEnabled?**: `string`
|
|
1305
1412
|
|
|
1306
1413
|
Is the synchronised storage enabled, defaults to false.
|
|
1307
1414
|
|
|
@@ -1311,9 +1418,9 @@ Is the synchronised storage enabled, defaults to false.
|
|
|
1311
1418
|
|
|
1312
1419
|
***
|
|
1313
1420
|
|
|
1314
|
-
### synchronisedStorageTrustedUrl?
|
|
1421
|
+
### synchronisedStorageTrustedUrl? {#synchronisedstoragetrustedurl}
|
|
1315
1422
|
|
|
1316
|
-
> `optional` **synchronisedStorageTrustedUrl
|
|
1423
|
+
> `optional` **synchronisedStorageTrustedUrl?**: `string`
|
|
1317
1424
|
|
|
1318
1425
|
Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
|
|
1319
1426
|
|
|
@@ -1323,9 +1430,9 @@ Url which points to the api for a trusted synchronised storage node, not require
|
|
|
1323
1430
|
|
|
1324
1431
|
***
|
|
1325
1432
|
|
|
1326
|
-
### synchronisedStorageVerifiableStorageKeyId?
|
|
1433
|
+
### synchronisedStorageVerifiableStorageKeyId? {#synchronisedstorageverifiablestoragekeyid}
|
|
1327
1434
|
|
|
1328
|
-
> `optional` **synchronisedStorageVerifiableStorageKeyId
|
|
1435
|
+
> `optional` **synchronisedStorageVerifiableStorageKeyId?**: `string`
|
|
1329
1436
|
|
|
1330
1437
|
The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
|
|
1331
1438
|
This only required if using a custom verifiable storage item, otherwise it will default to the network name.
|
|
@@ -1336,9 +1443,9 @@ This only required if using a custom verifiable storage item, otherwise it will
|
|
|
1336
1443
|
|
|
1337
1444
|
***
|
|
1338
1445
|
|
|
1339
|
-
### synchronisedStorageBlobStorageEncryptionKeyId?
|
|
1446
|
+
### synchronisedStorageBlobStorageEncryptionKeyId? {#synchronisedstorageblobstorageencryptionkeyid}
|
|
1340
1447
|
|
|
1341
|
-
> `optional` **synchronisedStorageBlobStorageEncryptionKeyId
|
|
1448
|
+
> `optional` **synchronisedStorageBlobStorageEncryptionKeyId?**: `string`
|
|
1342
1449
|
|
|
1343
1450
|
The key from the vault which is used to encrypt the synchronised storage blobs.
|
|
1344
1451
|
Only required for trusted nodes, as regular nodes will request from the trusted nodes.
|
|
@@ -1350,9 +1457,9 @@ Defaults to synchronised-storage-blob-encryption
|
|
|
1350
1457
|
|
|
1351
1458
|
***
|
|
1352
1459
|
|
|
1353
|
-
### synchronisedStorageBlobStorageKey?
|
|
1460
|
+
### synchronisedStorageBlobStorageKey? {#synchronisedstorageblobstoragekey}
|
|
1354
1461
|
|
|
1355
|
-
> `optional` **synchronisedStorageBlobStorageKey
|
|
1462
|
+
> `optional` **synchronisedStorageBlobStorageKey?**: `string`
|
|
1356
1463
|
|
|
1357
1464
|
The key used for blob encryption, should be ChaCha20Poly1305 encoded as base64.
|
|
1358
1465
|
Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
@@ -1363,9 +1470,9 @@ Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
|
1363
1470
|
|
|
1364
1471
|
***
|
|
1365
1472
|
|
|
1366
|
-
### synchronisedStorageEntityUpdateIntervalMinutes?
|
|
1473
|
+
### synchronisedStorageEntityUpdateIntervalMinutes? {#synchronisedstorageentityupdateintervalminutes}
|
|
1367
1474
|
|
|
1368
|
-
> `optional` **synchronisedStorageEntityUpdateIntervalMinutes
|
|
1475
|
+
> `optional` **synchronisedStorageEntityUpdateIntervalMinutes?**: `string`
|
|
1369
1476
|
|
|
1370
1477
|
How often to check for entity updates in minutes.
|
|
1371
1478
|
|
|
@@ -1381,9 +1488,9 @@ How often to check for entity updates in minutes.
|
|
|
1381
1488
|
|
|
1382
1489
|
***
|
|
1383
1490
|
|
|
1384
|
-
### synchronisedStorageConsolidationIntervalMinutes?
|
|
1491
|
+
### synchronisedStorageConsolidationIntervalMinutes? {#synchronisedstorageconsolidationintervalminutes}
|
|
1385
1492
|
|
|
1386
|
-
> `optional` **synchronisedStorageConsolidationIntervalMinutes
|
|
1493
|
+
> `optional` **synchronisedStorageConsolidationIntervalMinutes?**: `string`
|
|
1387
1494
|
|
|
1388
1495
|
Interval to perform consolidation of changesets, only used if this is a trusted node.
|
|
1389
1496
|
|
|
@@ -1399,9 +1506,9 @@ Interval to perform consolidation of changesets, only used if this is a trusted
|
|
|
1399
1506
|
|
|
1400
1507
|
***
|
|
1401
1508
|
|
|
1402
|
-
### synchronisedStorageConsolidationBatchSize?
|
|
1509
|
+
### synchronisedStorageConsolidationBatchSize? {#synchronisedstorageconsolidationbatchsize}
|
|
1403
1510
|
|
|
1404
|
-
> `optional` **synchronisedStorageConsolidationBatchSize
|
|
1511
|
+
> `optional` **synchronisedStorageConsolidationBatchSize?**: `string`
|
|
1405
1512
|
|
|
1406
1513
|
The number of entities to process in a single consolidation batch, only used if this is a trusted node.
|
|
1407
1514
|
|
|
@@ -1417,9 +1524,9 @@ The number of entities to process in a single consolidation batch, only used if
|
|
|
1417
1524
|
|
|
1418
1525
|
***
|
|
1419
1526
|
|
|
1420
|
-
### synchronisedStorageMaxConsolidations?
|
|
1527
|
+
### synchronisedStorageMaxConsolidations? {#synchronisedstoragemaxconsolidations}
|
|
1421
1528
|
|
|
1422
|
-
> `optional` **synchronisedStorageMaxConsolidations
|
|
1529
|
+
> `optional` **synchronisedStorageMaxConsolidations?**: `string`
|
|
1423
1530
|
|
|
1424
1531
|
The maximum number of consolidations to keep in storage, only used if this is a trusted node.
|
|
1425
1532
|
|
|
@@ -1435,184 +1542,186 @@ The maximum number of consolidations to keep in storage, only used if this is a
|
|
|
1435
1542
|
|
|
1436
1543
|
***
|
|
1437
1544
|
|
|
1438
|
-
###
|
|
1545
|
+
### federatedCatalogueFilters? {#federatedcataloguefilters}
|
|
1439
1546
|
|
|
1440
|
-
> `optional` **
|
|
1547
|
+
> `optional` **federatedCatalogueFilters?**: `string`
|
|
1441
1548
|
|
|
1442
|
-
|
|
1549
|
+
Federated catalog filters, command separated list of filters to add.
|
|
1443
1550
|
|
|
1444
1551
|
#### Inherited from
|
|
1445
1552
|
|
|
1446
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1553
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineEnvironmentVariables.md#federatedcataloguefilters)
|
|
1447
1554
|
|
|
1448
1555
|
***
|
|
1449
1556
|
|
|
1450
|
-
###
|
|
1557
|
+
### trustGenerators? {#trustgenerators}
|
|
1451
1558
|
|
|
1452
|
-
> `optional` **
|
|
1559
|
+
> `optional` **trustGenerators?**: `string`
|
|
1453
1560
|
|
|
1454
|
-
|
|
1561
|
+
The trust generators to add to the factory, comma separated list.
|
|
1455
1562
|
|
|
1456
1563
|
#### Inherited from
|
|
1457
1564
|
|
|
1458
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1565
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustGenerators`](IEngineEnvironmentVariables.md#trustgenerators)
|
|
1459
1566
|
|
|
1460
1567
|
***
|
|
1461
1568
|
|
|
1462
|
-
###
|
|
1569
|
+
### trustVerifiers? {#trustverifiers}
|
|
1463
1570
|
|
|
1464
|
-
> `optional` **
|
|
1571
|
+
> `optional` **trustVerifiers?**: `string`
|
|
1465
1572
|
|
|
1466
|
-
|
|
1573
|
+
The trust verifiers to add to the factory, comma separated list.
|
|
1467
1574
|
|
|
1468
1575
|
#### Inherited from
|
|
1469
1576
|
|
|
1470
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1577
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerifiers`](IEngineEnvironmentVariables.md#trustverifiers)
|
|
1471
1578
|
|
|
1472
1579
|
***
|
|
1473
1580
|
|
|
1474
|
-
###
|
|
1581
|
+
### trustVerificationMethodId? {#trustverificationmethodid}
|
|
1475
1582
|
|
|
1476
|
-
> `optional` **
|
|
1583
|
+
> `optional` **trustVerificationMethodId?**: `string`
|
|
1477
1584
|
|
|
1478
|
-
|
|
1585
|
+
The verification method to use for trust identities.
|
|
1586
|
+
Defaults to trust-assertion.
|
|
1479
1587
|
|
|
1480
1588
|
#### Inherited from
|
|
1481
1589
|
|
|
1482
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1590
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineEnvironmentVariables.md#trustverificationmethodid)
|
|
1483
1591
|
|
|
1484
1592
|
***
|
|
1485
1593
|
|
|
1486
|
-
###
|
|
1594
|
+
### trustJwtTtlSeconds? {#trustjwtttlseconds}
|
|
1487
1595
|
|
|
1488
|
-
> `optional` **
|
|
1596
|
+
> `optional` **trustJwtTtlSeconds?**: `string`
|
|
1489
1597
|
|
|
1490
|
-
|
|
1598
|
+
The trust time to live for generating JWTs.
|
|
1599
|
+
Defaults to undefined for never expiring.
|
|
1491
1600
|
|
|
1492
1601
|
#### Inherited from
|
|
1493
1602
|
|
|
1494
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1603
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustJwtTtlSeconds`](IEngineEnvironmentVariables.md#trustjwtttlseconds)
|
|
1495
1604
|
|
|
1496
1605
|
***
|
|
1497
1606
|
|
|
1498
|
-
###
|
|
1607
|
+
### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
|
|
1499
1608
|
|
|
1500
|
-
> `optional` **
|
|
1609
|
+
> `optional` **rightsManagementCallbackPath?**: `string`
|
|
1501
1610
|
|
|
1502
|
-
|
|
1503
|
-
|
|
1611
|
+
Path under which the rights management service is mounted (single source
|
|
1612
|
+
of truth). The same value drives:
|
|
1613
|
+
- the server route mount (via engine config)
|
|
1614
|
+
- the PNP service's callback URL builder (`buildCallbackUrl`)
|
|
1615
|
+
- the PNP rest-client's pathPrefix (consumer side)
|
|
1616
|
+
Defaults to `rights-management`. Set when deploying behind a reverse proxy
|
|
1617
|
+
with path rewriting, K8s ingress with path-based routing, or any custom
|
|
1618
|
+
mount point.
|
|
1504
1619
|
|
|
1505
1620
|
#### Inherited from
|
|
1506
1621
|
|
|
1507
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1622
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementCallbackPath`](IEngineEnvironmentVariables.md#rightsmanagementcallbackpath)
|
|
1508
1623
|
|
|
1509
1624
|
***
|
|
1510
1625
|
|
|
1511
|
-
###
|
|
1626
|
+
### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
|
|
1512
1627
|
|
|
1513
|
-
> `optional` **
|
|
1628
|
+
> `optional` **rightsManagementPolicyInformationSources?**: `string`
|
|
1514
1629
|
|
|
1515
|
-
The rights management
|
|
1516
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1630
|
+
The rights management policy information sources to add to the factory.
|
|
1517
1631
|
|
|
1518
1632
|
#### Inherited from
|
|
1519
1633
|
|
|
1520
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1634
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
|
|
1521
1635
|
|
|
1522
1636
|
***
|
|
1523
1637
|
|
|
1524
|
-
###
|
|
1638
|
+
### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
|
|
1525
1639
|
|
|
1526
|
-
> `optional` **
|
|
1640
|
+
> `optional` **rightsManagementPolicyNegotiators?**: `string`
|
|
1527
1641
|
|
|
1528
|
-
The rights management
|
|
1529
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1642
|
+
The rights management policy negotiators sources to add to the factory.
|
|
1530
1643
|
|
|
1531
1644
|
#### Inherited from
|
|
1532
1645
|
|
|
1533
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1646
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineEnvironmentVariables.md#rightsmanagementpolicynegotiators)
|
|
1534
1647
|
|
|
1535
1648
|
***
|
|
1536
1649
|
|
|
1537
|
-
###
|
|
1650
|
+
### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
|
|
1538
1651
|
|
|
1539
|
-
> `optional` **
|
|
1652
|
+
> `optional` **rightsManagementPolicyRequesters?**: `string`
|
|
1540
1653
|
|
|
1541
|
-
The rights management
|
|
1542
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1654
|
+
The rights management policy requesters to add to the factory.
|
|
1543
1655
|
|
|
1544
1656
|
#### Inherited from
|
|
1545
1657
|
|
|
1546
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1658
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyrequesters)
|
|
1547
1659
|
|
|
1548
1660
|
***
|
|
1549
1661
|
|
|
1550
|
-
###
|
|
1662
|
+
### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
|
|
1551
1663
|
|
|
1552
|
-
> `optional` **
|
|
1664
|
+
> `optional` **rightsManagementPolicyExecutionActions?**: `string`
|
|
1553
1665
|
|
|
1554
|
-
The rights management
|
|
1555
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1666
|
+
The rights management policy execution actions to add to the factory.
|
|
1556
1667
|
|
|
1557
1668
|
#### Inherited from
|
|
1558
1669
|
|
|
1559
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1670
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
|
|
1560
1671
|
|
|
1561
1672
|
***
|
|
1562
1673
|
|
|
1563
|
-
###
|
|
1674
|
+
### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
|
|
1564
1675
|
|
|
1565
|
-
> `optional` **
|
|
1676
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
|
|
1566
1677
|
|
|
1567
|
-
The rights management
|
|
1568
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1678
|
+
The rights management policy enforcement processors to add to the factory.
|
|
1569
1679
|
|
|
1570
1680
|
#### Inherited from
|
|
1571
1681
|
|
|
1572
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1682
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
|
|
1573
1683
|
|
|
1574
1684
|
***
|
|
1575
1685
|
|
|
1576
|
-
###
|
|
1686
|
+
### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
|
|
1577
1687
|
|
|
1578
|
-
> `optional` **
|
|
1688
|
+
> `optional` **rightsManagementPolicyArbiters?**: `string`
|
|
1579
1689
|
|
|
1580
|
-
The rights management
|
|
1581
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1690
|
+
The rights management policy arbiters to add to the factory.
|
|
1582
1691
|
|
|
1583
1692
|
#### Inherited from
|
|
1584
1693
|
|
|
1585
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1694
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyarbiters)
|
|
1586
1695
|
|
|
1587
1696
|
***
|
|
1588
1697
|
|
|
1589
|
-
###
|
|
1698
|
+
### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
|
|
1590
1699
|
|
|
1591
|
-
> `optional` **
|
|
1700
|
+
> `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
|
|
1592
1701
|
|
|
1593
|
-
|
|
1702
|
+
The rights management policy obligation enforcers to add to the factory.
|
|
1594
1703
|
|
|
1595
1704
|
#### Inherited from
|
|
1596
1705
|
|
|
1597
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1706
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyObligationEnforcers`](IEngineEnvironmentVariables.md#rightsmanagementpolicyobligationenforcers)
|
|
1598
1707
|
|
|
1599
1708
|
***
|
|
1600
1709
|
|
|
1601
|
-
###
|
|
1710
|
+
### dataspaceEnabled? {#dataspaceenabled}
|
|
1602
1711
|
|
|
1603
|
-
> `optional` **
|
|
1712
|
+
> `optional` **dataspaceEnabled?**: `string`
|
|
1604
1713
|
|
|
1605
|
-
Is the
|
|
1714
|
+
Is the dataspace enabled, defaults to false.
|
|
1606
1715
|
|
|
1607
1716
|
#### Inherited from
|
|
1608
1717
|
|
|
1609
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1718
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceEnabled`](IEngineEnvironmentVariables.md#dataspaceenabled)
|
|
1610
1719
|
|
|
1611
1720
|
***
|
|
1612
1721
|
|
|
1613
|
-
###
|
|
1722
|
+
### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
|
|
1614
1723
|
|
|
1615
|
-
> `optional` **
|
|
1724
|
+
> `optional` **dataspaceRetainActivityLogsFor?**: `string`
|
|
1616
1725
|
|
|
1617
1726
|
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1618
1727
|
|
|
@@ -1624,13 +1733,13 @@ The length of time to retain the activity logs for in minutes, set to -1 to keep
|
|
|
1624
1733
|
|
|
1625
1734
|
#### Inherited from
|
|
1626
1735
|
|
|
1627
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1736
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceRetainActivityLogsFor`](IEngineEnvironmentVariables.md#dataspaceretainactivitylogsfor)
|
|
1628
1737
|
|
|
1629
1738
|
***
|
|
1630
1739
|
|
|
1631
|
-
###
|
|
1740
|
+
### dataspaceActivityLogsCleanUpInterval? {#dataspaceactivitylogscleanupinterval}
|
|
1632
1741
|
|
|
1633
|
-
> `optional` **
|
|
1742
|
+
> `optional` **dataspaceActivityLogsCleanUpInterval?**: `string`
|
|
1634
1743
|
|
|
1635
1744
|
The interval for cleaning up the activity logs.
|
|
1636
1745
|
|
|
@@ -1642,38 +1751,90 @@ The interval for cleaning up the activity logs.
|
|
|
1642
1751
|
|
|
1643
1752
|
#### Inherited from
|
|
1644
1753
|
|
|
1645
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1754
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceActivityLogsCleanUpInterval`](IEngineEnvironmentVariables.md#dataspaceactivitylogscleanupinterval)
|
|
1646
1755
|
|
|
1647
1756
|
***
|
|
1648
1757
|
|
|
1649
|
-
###
|
|
1758
|
+
### dataspaceDataPlanePath? {#dataspacedataplanepath}
|
|
1650
1759
|
|
|
1651
|
-
> `optional` **
|
|
1760
|
+
> `optional` **dataspaceDataPlanePath?**: `string`
|
|
1652
1761
|
|
|
1653
|
-
|
|
1762
|
+
The data plane path for PULL transfers (path only, not full URL).
|
|
1763
|
+
Will be combined with public origin from hosting component.
|
|
1764
|
+
Required if PULL transfers should be supported.
|
|
1765
|
+
Example: "dataspace/entities"
|
|
1654
1766
|
|
|
1655
1767
|
#### Inherited from
|
|
1656
1768
|
|
|
1657
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1769
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataspaceDataPlanePath`](IEngineEnvironmentVariables.md#dataspacedataplanepath)
|
|
1658
1770
|
|
|
1659
1771
|
***
|
|
1660
1772
|
|
|
1661
|
-
###
|
|
1773
|
+
### healthEnabled? {#healthenabled}
|
|
1662
1774
|
|
|
1663
|
-
> `optional` **
|
|
1775
|
+
> `optional` **healthEnabled?**: `string`
|
|
1664
1776
|
|
|
1665
|
-
|
|
1666
|
-
Defaults to node-authentication-assertion.
|
|
1777
|
+
Are the health components enabled, defaults to false.
|
|
1667
1778
|
|
|
1668
1779
|
#### Inherited from
|
|
1669
1780
|
|
|
1670
|
-
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`
|
|
1781
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthEnabled`](IEngineEnvironmentVariables.md#healthenabled)
|
|
1671
1782
|
|
|
1672
1783
|
***
|
|
1673
1784
|
|
|
1674
|
-
###
|
|
1785
|
+
### healthIntervalSeconds? {#healthintervalseconds}
|
|
1786
|
+
|
|
1787
|
+
> `optional` **healthIntervalSeconds?**: `string`
|
|
1788
|
+
|
|
1789
|
+
The interval in seconds for performing health checks, defaults to 60.
|
|
1790
|
+
|
|
1791
|
+
#### Inherited from
|
|
1675
1792
|
|
|
1676
|
-
|
|
1793
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthIntervalSeconds`](IEngineEnvironmentVariables.md#healthintervalseconds)
|
|
1794
|
+
|
|
1795
|
+
***
|
|
1796
|
+
|
|
1797
|
+
### healthStartupIntervalSeconds? {#healthstartupintervalseconds}
|
|
1798
|
+
|
|
1799
|
+
> `optional` **healthStartupIntervalSeconds?**: `string`
|
|
1800
|
+
|
|
1801
|
+
The interval in seconds for performing health checks at startup, defaults to 2.
|
|
1802
|
+
This allows components that take a long time to initialize to be healthy before the first health check is performed.
|
|
1803
|
+
|
|
1804
|
+
#### Inherited from
|
|
1805
|
+
|
|
1806
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthStartupIntervalSeconds`](IEngineEnvironmentVariables.md#healthstartupintervalseconds)
|
|
1807
|
+
|
|
1808
|
+
***
|
|
1809
|
+
|
|
1810
|
+
### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
|
|
1811
|
+
|
|
1812
|
+
> `optional` **urlTransformerEncryptionKeyId?**: `string`
|
|
1813
|
+
|
|
1814
|
+
The id of the key in the vault to use for encrypting parameters in url transformer.
|
|
1815
|
+
|
|
1816
|
+
#### Inherited from
|
|
1817
|
+
|
|
1818
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`urlTransformerEncryptionKeyId`](IEngineEnvironmentVariables.md#urltransformerencryptionkeyid)
|
|
1819
|
+
|
|
1820
|
+
***
|
|
1821
|
+
|
|
1822
|
+
### automationActionTypes? {#automationactiontypes}
|
|
1823
|
+
|
|
1824
|
+
> `optional` **automationActionTypes?**: `string`
|
|
1825
|
+
|
|
1826
|
+
The type of the automation action to create, comma separate for more than one connector.
|
|
1827
|
+
values: fetch
|
|
1828
|
+
|
|
1829
|
+
#### Inherited from
|
|
1830
|
+
|
|
1831
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`automationActionTypes`](IEngineEnvironmentVariables.md#automationactiontypes)
|
|
1832
|
+
|
|
1833
|
+
***
|
|
1834
|
+
|
|
1835
|
+
### extensions? {#extensions}
|
|
1836
|
+
|
|
1837
|
+
> `optional` **extensions?**: `string`
|
|
1677
1838
|
|
|
1678
1839
|
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|
|
1679
1840
|
|
|
@@ -1683,104 +1844,120 @@ A comma separated list of additional node extensions to load, the initialiseExte
|
|
|
1683
1844
|
|
|
1684
1845
|
***
|
|
1685
1846
|
|
|
1686
|
-
### port?
|
|
1847
|
+
### port? {#port}
|
|
1687
1848
|
|
|
1688
|
-
> `optional` **port
|
|
1849
|
+
> `optional` **port?**: `string`
|
|
1689
1850
|
|
|
1690
1851
|
The port to serve the API from.
|
|
1691
1852
|
|
|
1692
1853
|
***
|
|
1693
1854
|
|
|
1694
|
-
### host?
|
|
1855
|
+
### host? {#host}
|
|
1695
1856
|
|
|
1696
|
-
> `optional` **host
|
|
1857
|
+
> `optional` **host?**: `string`
|
|
1697
1858
|
|
|
1698
1859
|
The host to serve the API from.
|
|
1699
1860
|
|
|
1700
1861
|
***
|
|
1701
1862
|
|
|
1702
|
-
### corsOrigins?
|
|
1863
|
+
### corsOrigins? {#corsorigins}
|
|
1703
1864
|
|
|
1704
|
-
> `optional` **corsOrigins
|
|
1865
|
+
> `optional` **corsOrigins?**: `string`
|
|
1705
1866
|
|
|
1706
1867
|
The CORS origins to allow, defaults to *.
|
|
1707
1868
|
|
|
1708
1869
|
***
|
|
1709
1870
|
|
|
1710
|
-
### httpMethods?
|
|
1871
|
+
### httpMethods? {#httpmethods}
|
|
1711
1872
|
|
|
1712
|
-
> `optional` **httpMethods
|
|
1873
|
+
> `optional` **httpMethods?**: `string`
|
|
1713
1874
|
|
|
1714
1875
|
The CORS methods to allow, defaults to GET, POST, PUT, DELETE, OPTIONS.
|
|
1715
1876
|
|
|
1716
1877
|
***
|
|
1717
1878
|
|
|
1718
|
-
### httpAllowedHeaders?
|
|
1879
|
+
### httpAllowedHeaders? {#httpallowedheaders}
|
|
1719
1880
|
|
|
1720
|
-
> `optional` **httpAllowedHeaders
|
|
1881
|
+
> `optional` **httpAllowedHeaders?**: `string`
|
|
1721
1882
|
|
|
1722
1883
|
The CORS headers to allow.
|
|
1723
1884
|
|
|
1724
1885
|
***
|
|
1725
1886
|
|
|
1726
|
-
### httpExposedHeaders?
|
|
1887
|
+
### httpExposedHeaders? {#httpexposedheaders}
|
|
1727
1888
|
|
|
1728
|
-
> `optional` **httpExposedHeaders
|
|
1889
|
+
> `optional` **httpExposedHeaders?**: `string`
|
|
1729
1890
|
|
|
1730
1891
|
The CORS headers to expose.
|
|
1731
1892
|
|
|
1732
1893
|
***
|
|
1733
1894
|
|
|
1734
|
-
###
|
|
1895
|
+
### publicOrigin? {#publicorigin}
|
|
1896
|
+
|
|
1897
|
+
> `optional` **publicOrigin?**: `string`
|
|
1735
1898
|
|
|
1736
|
-
|
|
1899
|
+
The public origin URL for the API e.g. https://api.example.com:1234
|
|
1900
|
+
|
|
1901
|
+
***
|
|
1902
|
+
|
|
1903
|
+
### authAdminProcessorType? {#authadminprocessortype}
|
|
1904
|
+
|
|
1905
|
+
> `optional` **authAdminProcessorType?**: `string`
|
|
1737
1906
|
|
|
1738
1907
|
The type of auth admin processor to use on the API: entity-storage.
|
|
1739
1908
|
|
|
1740
1909
|
***
|
|
1741
1910
|
|
|
1742
|
-
### authProcessorType?
|
|
1911
|
+
### authProcessorType? {#authprocessortype}
|
|
1743
1912
|
|
|
1744
|
-
> `optional` **authProcessorType
|
|
1913
|
+
> `optional` **authProcessorType?**: `string`
|
|
1745
1914
|
|
|
1746
1915
|
The type of auth processor to use on the API: entity-storage.
|
|
1747
1916
|
|
|
1748
1917
|
***
|
|
1749
1918
|
|
|
1750
|
-
### authSigningKeyId?
|
|
1919
|
+
### authSigningKeyId? {#authsigningkeyid}
|
|
1751
1920
|
|
|
1752
|
-
> `optional` **authSigningKeyId
|
|
1921
|
+
> `optional` **authSigningKeyId?**: `string`
|
|
1753
1922
|
|
|
1754
1923
|
The id of the key in the vault to use for signing in auth operations.
|
|
1755
1924
|
|
|
1756
1925
|
***
|
|
1757
1926
|
|
|
1758
|
-
###
|
|
1927
|
+
### hostingParamEncryptionKeyId? {#hostingparamencryptionkeyid}
|
|
1928
|
+
|
|
1929
|
+
> `optional` **hostingParamEncryptionKeyId?**: `string`
|
|
1930
|
+
|
|
1931
|
+
The id of the key in the vault to use for encrypting hosting parameters in auth operations.
|
|
1932
|
+
|
|
1933
|
+
***
|
|
1934
|
+
|
|
1935
|
+
### mimeTypeProcessors? {#mimetypeprocessors}
|
|
1759
1936
|
|
|
1760
|
-
> `optional` **mimeTypeProcessors
|
|
1937
|
+
> `optional` **mimeTypeProcessors?**: `string`
|
|
1761
1938
|
|
|
1762
1939
|
Additional MIME type processors to include, comma separated.
|
|
1763
1940
|
|
|
1764
1941
|
***
|
|
1765
1942
|
|
|
1766
|
-
### routeLoggingIncludeBody?
|
|
1943
|
+
### routeLoggingIncludeBody? {#routeloggingincludebody}
|
|
1767
1944
|
|
|
1768
|
-
> `optional` **routeLoggingIncludeBody
|
|
1945
|
+
> `optional` **routeLoggingIncludeBody?**: `string`
|
|
1769
1946
|
|
|
1770
1947
|
Include the body in the REST logging output, useful for debugging.
|
|
1771
1948
|
|
|
1772
1949
|
***
|
|
1773
1950
|
|
|
1774
|
-
### routeLoggingFullBase64?
|
|
1951
|
+
### routeLoggingFullBase64? {#routeloggingfullbase64}
|
|
1775
1952
|
|
|
1776
|
-
> `optional` **routeLoggingFullBase64
|
|
1953
|
+
> `optional` **routeLoggingFullBase64?**: `string`
|
|
1777
1954
|
|
|
1778
1955
|
Include the full base 64 output in the REST logging output, useful for debugging.
|
|
1779
1956
|
|
|
1780
1957
|
***
|
|
1781
1958
|
|
|
1782
|
-
### routeLoggingObfuscateProperties?
|
|
1959
|
+
### routeLoggingObfuscateProperties? {#routeloggingobfuscateproperties}
|
|
1783
1960
|
|
|
1784
|
-
> `optional` **routeLoggingObfuscateProperties
|
|
1961
|
+
> `optional` **routeLoggingObfuscateProperties?**: `string`
|
|
1785
1962
|
|
|
1786
1963
|
List of properties to obfuscate in the REST logging output, comma separated.
|